aboutsummaryrefslogtreecommitdiff
path: root/lib/inc/mem.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/inc/mem.h')
-rw-r--r--lib/inc/mem.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/inc/mem.h b/lib/inc/mem.h
index e700e42..e2d574f 100644
--- a/lib/inc/mem.h
+++ b/lib/inc/mem.h
@@ -5,12 +5,13 @@
#include <def.h>
-u32 HEAP;
-u32 HEAP_START;
-
#define malloc(n) ((void *)((HEAP += n) - n)) // TODO: Implement real/better malloc/free
#define free(x)
+// TODO: Use malloc as syscall
+u32 HEAP;
+u32 HEAP_START;
+
void *memcpy(void *dst, const void *src, u32 n);
void *memset(void *dst, int c, u32 n);
int memcmp(const void *s1, const void *s2, u32 n);