1 /* $NetBSD: report.h,v 1.3 1998/07/26 15:33:34 mycroft 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, char *, ...)); 13 extern const char *get_errmsg P((void)); 14 15 #undef P 16