summaryrefslogtreecommitdiff
path: root/kernel/palloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/palloc.h')
-rw-r--r--kernel/palloc.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/kernel/palloc.h b/kernel/palloc.h
new file mode 100644
index 0000000..f846a96
--- /dev/null
+++ b/kernel/palloc.h
@@ -0,0 +1,11 @@
+#ifndef PALLOC_H
+#define PALLOC_H
+
+#include "types.h"
+
+void palloc_init();
+
+uint32_t palloc();
+void pfree(uint32_t addr);
+
+#endif