summaryrefslogtreecommitdiff
path: root/kernel/mem.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/mem.h')
-rw-r--r--kernel/mem.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/kernel/mem.h b/kernel/mem.h
index efc3ebe..521bc4a 100644
--- a/kernel/mem.h
+++ b/kernel/mem.h
@@ -1,6 +1,4 @@
-
-#include <stdint.h>
-void* pmmngr_alloc_block ();
-//void* pmmngr_alloc_blocks (uint32_t size);
-void pmmngr_free_block (void* p);
-void mem_init(uint16_t *memmap,uint16_t entries);
+#include "types.h"
+physical_address* pmmngr_alloc_block ();
+void pmmngr_free_block (physical_address* p);
+void mem_init(physical_address *memmap,int entries);