aboutsummaryrefslogtreecommitdiff
path: root/src/error.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/error.c')
-rw-r--r--src/error.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/error.c b/src/error.c
deleted file mode 100644
index b3f2eb0..0000000
--- a/src/error.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <u.h>
-
-void
-errorf(const byte* fmt, ...)
-{
- va_list args;
- va_start(args, fmt);
-
- printf("error: ");
- vprintf(fmt, args);
- printf("\n");
-
- va_end(args);
-}