mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
cc7d8003bf
Obtained from:NetBSD
13 lines
213 B
C
13 lines
213 B
C
/* report.h */
|
|
|
|
#ifdef __STDC__
|
|
#define P(args) args
|
|
#else
|
|
#define P(args) ()
|
|
#endif
|
|
|
|
extern void report_init P((int nolog));
|
|
extern void report P((int, char *, ...));
|
|
extern char *get_errmsg P((void));
|
|
|
|
#undef P
|