1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-15 05:25:53 +01:00

Added wmessage() for printing a variable formatted message to stderr

with the program name prepended to it.
This commit is contained in:
dan
2000-11-06 23:13:14 +00:00
parent 77670119a1
commit debd7ef5e8
2 changed files with 36 additions and 8 deletions

View File

@@ -210,8 +210,9 @@ waborthandler* wsetabort(waborthandler*);
/* don't free the returned string */
char* wstrerror(int errnum);
void wfatal(const char *msg, ...);
void wmessage(const char *msg, ...);
void wwarning(const char *msg, ...);
void wfatal(const char *msg, ...);
void wsyserror(const char *msg, ...);
void wsyserrorwithcode(int error, const char *msg, ...);