aboutsummaryrefslogtreecommitdiff
path: root/include/10.libc/heap.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/10.libc/heap.h')
-rw-r--r--include/10.libc/heap.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/10.libc/heap.h b/include/10.libc/heap.h
deleted file mode 100644
index fa32f26..0000000
--- a/include/10.libc/heap.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#ifndef HEAP_H
-#define HEAP_H
-
-#include<types.h>
-
-void kheapinit();
-int kheapaddblock(uintptr_t addr,uint32_t size,uint32_t bsize);
-void *kmalloc(uint32_t size);
-void kfree(void *ptr);
-
-#endif