1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00
freebsd/libexec/bootpd/report.h
Kris Kennaway a16f31237a Constify
2000-11-26 10:21:54 +00:00

15 lines
241 B
C

/* report.h */
/* $FreeBSD$ */
#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 *, ...));
extern const char *get_errmsg P((void));
#undef P