aboutsummaryrefslogtreecommitdiff
path: root/kernel/include/kmalloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/include/kmalloc.h')
-rw-r--r--kernel/include/kmalloc.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/kernel/include/kmalloc.h b/kernel/include/kmalloc.h
deleted file mode 100644
index a409865..0000000
--- a/kernel/include/kmalloc.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#pragma once
-
-#include <stdint.h>
-#include <stddef.h>
-
-// Kernel memory allocator : one slab allocator for shared memory
-// Thread-safe.
-
-void kmalloc_setup();
-
-void* kmalloc(size_t sz);
-void kfree(void* ptr);
-
-/* vim: set ts=4 sw=4 tw=0 noet :*/