From ce05175372a9ddca1a225db0765ace1127a39293 Mon Sep 17 00:00:00 2001 From: Nicholas Date: Fri, 12 Nov 2021 09:22:01 -0800 Subject: chore: simplified organizational structure --- sys/base/error/panicf.c | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 sys/base/error/panicf.c (limited to 'sys/base/error/panicf.c') diff --git a/sys/base/error/panicf.c b/sys/base/error/panicf.c deleted file mode 100644 index d698576..0000000 --- a/sys/base/error/panicf.c +++ /dev/null @@ -1,16 +0,0 @@ -#include "internal.h" - -void -panicf(byte* fmt, ...) -{ - va_list args; - va_start(args, fmt); - - printf("panic: "); - vprintf(fmt, args); - printf("\n"); - - va_end(args); - - exit(1); -} -- cgit v1.2.1