summaryrefslogtreecommitdiff
path: root/kernel/kmalloc.h
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-08-17 21:41:21 +0200
committerMiguel <m.i@gmx.at>2018-08-17 21:41:21 +0200
commitc15925a24efe14f437d8a2699500241a58fdc8f9 (patch)
treec0db3a7d2a4f857324735df35e9cc1f0539c5f24 /kernel/kmalloc.h
parent6fd78c2ff950310d8372ec0353553cc4a5a43e72 (diff)
cleanup and working on fifo pipes
Diffstat (limited to 'kernel/kmalloc.h')
-rw-r--r--kernel/kmalloc.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/kernel/kmalloc.h b/kernel/kmalloc.h
index 2faecb8..6e7157a 100644
--- a/kernel/kmalloc.h
+++ b/kernel/kmalloc.h
@@ -1,14 +1,12 @@
-#include <stdint.h>
-
/*
* Kernel Block Memory Allocation
*
* The kernel reserves some memory for internal operation, since malloc
* is not available.
- *
- * Last Revision: 17 AUG 2018
*/
+#include <stdint.h>
+
// Allocate size*4096 bytes and returns a 32-bit pointer
uint32_t kballoc (uint32_t size);