summaryrefslogtreecommitdiff
path: root/kernel/libc/exit
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-06-26 21:17:06 +0200
committerAnton Kling <anton@kling.gg>2024-06-26 21:20:47 +0200
commitedf86881446717b633dbb2aaac7b25dbc4630c3f (patch)
tree5270af1ffcbd83ee4cd3809fd6cf525780d1f431 /kernel/libc/exit
parent58423a4cf62ee848fac5ee6755fa459c7db5acb2 (diff)
Kernel: Code cleanup
Diffstat (limited to 'kernel/libc/exit')
-rw-r--r--kernel/libc/exit/assert.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/libc/exit/assert.c b/kernel/libc/exit/assert.c
index 89aa863..fd5f086 100644
--- a/kernel/libc/exit/assert.c
+++ b/kernel/libc/exit/assert.c
@@ -1,7 +1,7 @@
#include <assert.h>
+#include <cpu/arch_inst.h>
#include <log.h>
#include <stdio.h>
-#include <cpu/arch_inst.h>
__attribute__((__noreturn__)) void aFailed(char *f, int l) {
kprintf("Assert failed\n");