summaryrefslogtreecommitdiff
path: root/kernel/panic.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/panic.h')
-rw-r--r--kernel/panic.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/kernel/panic.h b/kernel/panic.h
deleted file mode 100644
index 0cfd7c2..0000000
--- a/kernel/panic.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#pragma once
-
-#include <stdnoreturn.h>
-
-enum panic_reason
-{
- GENERAL_PANIC,
- UNHANDLED_FAULT,
- OUT_OF_MEMORY,
-};
-
-noreturn void panic(enum panic_reason reason);
-noreturn void halt(void);