From 9695ea005d4af93dcd60f74f10fd3c54499a182f Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Thu, 11 Nov 2021 16:31:58 -0800 Subject: chore: split up base library into individual files for smaller binaries --- sys/base/error/panicf.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create 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 new file mode 100644 index 0000000..d698576 --- /dev/null +++ b/sys/base/error/panicf.c @@ -0,0 +1,16 @@ +#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