From 7a1ea510a9fc43ccbc257601b149a90920332e13 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Fri, 15 Jul 2016 22:39:04 +0200 Subject: Add Lua source, not compiled yet as libc/libm functions remain unimplemented --- src/kernel/core/sys.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/kernel') diff --git a/src/kernel/core/sys.c b/src/kernel/core/sys.c index 8cc1407..725843e 100644 --- a/src/kernel/core/sys.c +++ b/src/kernel/core/sys.c @@ -30,12 +30,12 @@ static void panic_do(const char* type, const char *msg, const char* file, int li asm volatile("hlt"); } -void panic(const char* message, const char* file, int line) { +void sys_panic(const char* message, const char* file, int line) { panic_do("PANIC", message, file, line); while(true); } -void panic_assert(const char* assertion, const char* file, int line) { +void sys_panic_assert(const char* assertion, const char* file, int line) { panic_do("ASSERT FAILED", assertion, file, line); while(true); } -- cgit v1.2.3