2000-10-12 00:23:46 +04:00
|
|
|
/* $NetBSD: report.h,v 1.4 2000/10/11 20:23:49 is Exp $ */
|
1998-01-09 11:03:16 +03:00
|
|
|
|
1994-06-28 01:25:48 +04:00
|
|
|
/* report.h */
|
|
|
|
|
|
|
|
#ifdef __STDC__
|
|
|
|
#define P(args) args
|
|
|
|
#else
|
|
|
|
#define P(args) ()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern void report_init P((int nolog));
|
2000-10-12 00:23:46 +04:00
|
|
|
extern void report P((int, const char *, ...))
|
|
|
|
__attribute__((__format__(__printf__, 2, 3)));
|
1998-07-26 19:23:39 +04:00
|
|
|
extern const char *get_errmsg P((void));
|
1994-06-28 01:25:48 +04:00
|
|
|
|
|
|
|
#undef P
|