aboutsummaryrefslogtreecommitdiff
path: root/lib/errors/vwarnx.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/errors/vwarnx.c')
-rw-r--r--lib/errors/vwarnx.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/errors/vwarnx.c b/lib/errors/vwarnx.c
deleted file mode 100644
index 58a7bc6..0000000
--- a/lib/errors/vwarnx.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <stdarg.h>
-#include <stdio.h>
-
-#include "errors.h"
-
-void
-vwarnx(const char *fmt, va_list ap)
-{
- fprintf(stderr, "%s: ", mlib_progname());
- vfprintf(stderr, fmt, ap);
- fputc('\n', stderr);
-}