aboutsummaryrefslogtreecommitdiff
path: root/lib/errors/warnx.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/errors/warnx.c')
-rw-r--r--lib/errors/warnx.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/errors/warnx.c b/lib/errors/warnx.c
deleted file mode 100644
index ea50299..0000000
--- a/lib/errors/warnx.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <stdarg.h>
-
-#include "errors.h"
-
-void
-warnx(const char *fmt, ...)
-{
- va_list ap;
- va_start(ap, fmt);
- vwarnx(fmt, ap);
- va_end(ap);
-}