Initial import from FreeBSD RELENG_4:
[dragonfly.git] / libexec / bootpd / report.h
1 /* report.h */
2 /* $FreeBSD: src/libexec/bootpd/report.h,v 1.1.1.1.14.2 2003/02/15 05:36:01 kris Exp $ */
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 *, ...)) __printflike(2, 3);
12 extern const char *get_errmsg P((void));
13
14 #undef P