aboutsummaryrefslogtreecommitdiff
path: root/sys/base/error/vpanicf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/base/error/vpanicf.c')
-rw-r--r--sys/base/error/vpanicf.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/sys/base/error/vpanicf.c b/sys/base/error/vpanicf.c
deleted file mode 100644
index bea97ac..0000000
--- a/sys/base/error/vpanicf.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "internal.h"
-
-void
-vpanicf(byte* fmt, va_list args)
-{
- printf("panic: ");
- vprintf(fmt, args);
- printf("\n");
-
- exit(1);
-}