From b905869a35f062a4e5072f10bec3a2ba3db0e365 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Wed, 30 Jul 2025 14:32:01 -0400 Subject: working userland with some invoke syscalls --- include/panic.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 include/panic.h (limited to 'include/panic.h') diff --git a/include/panic.h b/include/panic.h new file mode 100644 index 0000000..076a425 --- /dev/null +++ b/include/panic.h @@ -0,0 +1,9 @@ +#ifndef _JOVE_PANIC_H +#define _JOVE_PANIC_H 1 + +#include "jove.h" + +#define kpanic(...) _kpanic(__FILE__, __LINE__, __VA_ARGS__) +NORETURN void _kpanic(const char *file, int line, const char *fmt, ...); + +#endif -- cgit v1.2.1