kernel: implement panic()

This commit is contained in:
2023-04-09 16:35:15 +01:00
parent 9b75ca8b8c
commit da415c7f6d
5 changed files with 184 additions and 4 deletions

8
include/socks/panic.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef SOCKS_PANIC_H_
#define SOCKS_PANIC_H_
#include <socks/compiler.h>
extern void __noreturn panic(const char *fmt, ...);
#endif