aboutsummaryrefslogtreecommitdiff
path: root/include/08.heap/heap09.c
diff options
context:
space:
mode:
Diffstat (limited to 'include/08.heap/heap09.c')
-rw-r--r--include/08.heap/heap09.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/08.heap/heap09.c b/include/08.heap/heap09.c
deleted file mode 100644
index 6874578..0000000
--- a/include/08.heap/heap09.c
+++ /dev/null
@@ -1,9 +0,0 @@
-void *kmalloc(uint32_t size)
-{
- return k_heapBMAlloc(&kheap,size);
-
-}
-void kfree(void *ptr)
-{
- k_heapBMFree(&kheap,ptr);
-}