report.h revision 69200
1/* report.h */
2/* $FreeBSD: head/libexec/bootpd/report.h 69200 2000-11-26 10:21:54Z kris $ */
3
4#ifdef	__STDC__
5#define P(args) args
6#else
7#define P(args) ()
8#endif
9
10extern void report_init P((int nolog));
11extern void report P((int, const char *, ...));
12extern const char *get_errmsg P((void));
13
14#undef P
15