NetBSD/usr.sbin/bootp/common/report.h

17 lines
336 B
C
Raw Normal View History

/* $NetBSD: report.h,v 1.4 2000/10/11 20:23:49 is Exp $ */
1998-01-09 11:03:16 +03:00
/* report.h */
#ifdef __STDC__
#define P(args) args
#else
#define P(args) ()
#endif
extern void report_init P((int nolog));
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));
#undef P