Implement shift+<key> support, and ...
[lunaix-os.git] / lunaix-os / kernel / mm / kalloc.c
index 6f04e2edebcabe6a2497e00b5288e4e1509af0bb..e9f05648c6caf00ade4abb92f3fcbe56fac5ad36 100644 (file)
@@ -14,7 +14,7 @@
 #include <lunaix/mm/kalloc.h>
 #include <lunaix/mm/dmm.h>
 
-#include <lunaix/constants.h>
+#include <lunaix/common.h>
 #include <lunaix/spike.h>
 
 #include <klibc/string.h>
@@ -23,7 +23,7 @@
 
 extern uint8_t __kernel_heap_start;
 
-heap_context_t __kalloc_kheap;
+static heap_context_t __kalloc_kheap;
 
 void*
 lx_malloc_internal(heap_context_t* heap, size_t size);