aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/alloc.c
diff options
context:
space:
mode:
authorMarvin Borner2019-10-26 22:45:08 +0200
committerMarvin Borner2019-10-26 22:45:08 +0200
commit25f1eb375f05883bd499760f4496f4218b5011c9 (patch)
tree8dc7842ad9efec0ac5521c8e8e06a114b501af09 /src/kernel/lib/alloc.c
parent5d4180c67cea08bb76eebde6b41b8935e60fed98 (diff)
Using compiler-based include methods
Diffstat (limited to 'src/kernel/lib/alloc.c')
-rw-r--r--src/kernel/lib/alloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/lib/alloc.c b/src/kernel/lib/alloc.c
index 2545d28..85ae7db 100644
--- a/src/kernel/lib/alloc.c
+++ b/src/kernel/lib/alloc.c
@@ -1,7 +1,7 @@
#include <stddef.h>
#include <stdint.h>
-#include "alloc.h"
-#include "../paging/paging.h"
+#include <kernel/lib/alloc.h>
+#include <kernel/paging/paging.h>
int liballoc_lock() {
asm volatile ("cli");