blob: d405e06e2699ebb9efde6e983919fe2be6408cd7 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef ourerr_INC
#define ourerr_INC
void err_ret ( const char *fmt, ... );
void err_sys ( const char *fmt, ... );
void err_dump ( const char *fmt, ... );
void err_msg ( const char *fmt, ... );
void err_quit ( const char *fmt, ... );
#endif /* ----- #ifndef ourerr_INC ----- */
|