diff options
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -9,9 +9,15 @@ #define MY_EMAIL "mvw@planets.elm.net, jack@suse.cz" +/* Name of current program for error reporting */ +extern char *progname; + /* Finish programs being */ void die(int, char *, ...); +/* Print an error */ +void errstr(char *, ...); + /* malloc() with error check */ void *smalloc(size_t); |