blob: 0bf63d60fbb12f86e13bd2a1fc3073706cc30d5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* report.h */
#ifdef __STDC__
#define P(args) args
#else
#define P(args) ()
#endif
extern void report_init P((int nolog));
extern void report P((int, char *, ...));
extern char *get_errmsg P((void));
#undef P
|