mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
14 lines
241 B
C
14 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
|