1 /* $NetBSD: report.h,v 1.4 2000/10/11 20:23:49 is Exp $ */ 2 3 /* report.h */ 4 5 #ifdef __STDC__ 6 #define P(args) args 7 #else 8 #define P(args) () 9 #endif 10 11 extern void report_init P((int nolog)); 12 extern void report P((int, const char *, ...)) 13 __attribute__((__format__(__printf__, 2, 3))); 14 extern const char *get_errmsg P((void)); 15 16 #undef P 17