freebsd-dev/libexec/bootpd/report.h

15 lines
260 B
C
Raw Normal View History

1994-09-30 05:45:07 +00:00
/* report.h */
2000-11-26 10:21:54 +00:00
/* $FreeBSD$ */
1994-09-30 05:45:07 +00:00
#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 *, ...)) __printflike(2, 3);
2000-11-26 10:21:54 +00:00
extern const char *get_errmsg P((void));
1994-09-30 05:45:07 +00:00
#undef P