summaryrefslogtreecommitdiff
path: root/src/include/heap.h
diff options
context:
space:
mode:
authorAleksa Vučković <aleksav013@gmail.com>2021-10-25 22:41:21 +0200
committerAleksa Vučković <aleksav013@gmail.com>2021-10-25 22:41:21 +0200
commit39822cdb0acdd1eec66c2e18e0711fd3cd6f033d (patch)
tree313eb08002f6e6e1c6564f2d411287745079da22 /src/include/heap.h
parent20dd72e40dc2728d3c5335d860e4b8ab8da14fcc (diff)
Adding first 32 IRQs; PIT finally working
Diffstat (limited to 'src/include/heap.h')
-rw-r--r--src/include/heap.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/heap.h b/src/include/heap.h
index 2f66501..4eebd04 100644
--- a/src/include/heap.h
+++ b/src/include/heap.h
@@ -1,3 +1,6 @@
+#ifndef HEAP_H
+#define HEAP_H
+
#include"types.h"
typedef struct _KHEAPBLOCKBM {
@@ -21,3 +24,5 @@ extern KHEAPBM kheap;
#define kmalloc k_heapBMAlloc
#define kfree k_heapBMFree
+
+#endif