xref: /freebsd/libexec/bootpd/report.h (revision 41466b50c1d5bfd1cf6adaae547a579a75d7c04e)
1 /* report.h */
2 /* $FreeBSD$ */
3 
4 #ifdef	__STDC__
5 #define P(args) args
6 #else
7 #define P(args) ()
8 #endif
9 
10 extern void report_init P((int nolog));
11 extern void report P((int, const char *, ...));
12 extern const char *get_errmsg P((void));
13 
14 #undef P
15