summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.org>2024-03-28 21:30:12 -0500
committerDanny Holman <dholman@gymli.org>2024-03-28 21:30:12 -0500
commitcbe2690cd5d1b290633c466ebb4df7b64b09b037 (patch)
tree99f77ef19f303c42c028be11cbb4210245b8a583 /include
parent891f1010bbdc1351bda8d2a6139094a14bdfd5e1 (diff)
arch: i386: kernel: add mostly finished PFA and paging system
Add the mostly finished physical memory allocator and expose its functions to the paging system. Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'include')
-rw-r--r--include/kernel/mem.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/kernel/mem.h b/include/kernel/mem.h
deleted file mode 100644
index aae3091..0000000
--- a/include/kernel/mem.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#ifndef KERNEL_MEM_H
-
-#include <stddef.h>
-
-int init_kmalloc(void);
-void* kmalloc(size_t sz);
-
-#endif