Home | History | Annotate | Line # | Download | only in common
report.h revision 1.3.2.1
      1 /*	$NetBSD: report.h,v 1.3.2.1 2000/10/19 17:05:04 he 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