Added declaration for panic() function

This commit is contained in:
2021-04-14 03:39:07 -05:00
parent 507b0fa53e
commit 48c042ca5f

View File

@@ -14,3 +14,5 @@ extern struct kernel_t kernel;
int do_syscall(struct kernel_t *kernel, size_t id, size_t arg1, size_t arg2, size_t arg3);
int load_module(struct kernel_t *kernel, struct module_t *module);
void panic(const char *message) __attribute__ ((noreturn));