1994-09-30 05:45:07 +00:00
|
|
|
/* report.h */
|
2000-11-26 10:21:54 +00:00
|
|
|
/* $FreeBSD$ */
|
1994-09-30 05:45:07 +00:00
|
|
|
|
|
|
|
#ifdef __STDC__
|
|
|
|
#define P(args) args
|
|
|
|
#else
|
|
|
|
#define P(args) ()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern void report_init P((int nolog));
|
2000-11-26 10:21:54 +00:00
|
|
|
extern void report P((int, const char *, ...));
|
|
|
|
extern const char *get_errmsg P((void));
|
1994-09-30 05:45:07 +00:00
|
|
|
|
|
|
|
#undef P
|