diff options
Diffstat (limited to 'src/lib9/werrstr.c')
-rw-r--r-- | src/lib9/werrstr.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/lib9/werrstr.c b/src/lib9/werrstr.c deleted file mode 100644 index 7fa1f2ea..00000000 --- a/src/lib9/werrstr.c +++ /dev/null @@ -1,13 +0,0 @@ -#include <lib9.h> - -void -werrstr(char *fmt, ...) -{ - va_list arg; - char buf[ERRMAX]; - - va_start(arg, fmt); - vseprint(buf, buf+ERRMAX, fmt, arg); - va_end(arg); - errstr(buf, ERRMAX); -} |