Home | History | Annotate | Line # | Download | only in common
report.h revision 1.4
      1  1.4       is /*	$NetBSD: report.h,v 1.4 2000/10/11 20:23:49 is Exp $	*/
      2  1.2    perry 
      3  1.1      gwr /* report.h */
      4  1.1      gwr 
      5  1.1      gwr #ifdef	__STDC__
      6  1.1      gwr #define P(args) args
      7  1.1      gwr #else
      8  1.1      gwr #define P(args) ()
      9  1.1      gwr #endif
     10  1.1      gwr 
     11  1.1      gwr extern void report_init P((int nolog));
     12  1.4       is extern void report P((int, const char *, ...))
     13  1.4       is      __attribute__((__format__(__printf__, 2, 3)));
     14  1.3  mycroft extern const char *get_errmsg P((void));
     15  1.1      gwr 
     16  1.1      gwr #undef P
     17