12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef _MON_LIB_ERROR_H
- #define _MON_LIB_ERROR_H
- #include <sys/cdefs.h>
- extern char *__progname;
- extern int flag_debug;
- extern int flag_daemon;
- __BEGIN_DECLS
- __dead void fatal(char *, ...);
- void warning(char *, ...);
- void info(char *, ...);
- void debug(char *, ...);
- __END_DECLS
- #endif
|