aboutsummaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorMarvin Borner2020-08-30 21:49:52 +0200
committerMarvin Borner2020-08-30 21:49:52 +0200
commit00adfffc296476f3fe247ce3f341c9f5addd190d (patch)
tree605115d21a62179314b037f31b8e67038c15ef3b /libc
parent30932492e9f8a98e1f98461c9d28547f23d82e7e (diff)
Even mooore tests or sth
Diffstat (limited to 'libc')
-rw-r--r--libc/inc/mem.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/libc/inc/mem.h b/libc/inc/mem.h
index 9aeeee9..8977a48 100644
--- a/libc/inc/mem.h
+++ b/libc/inc/mem.h
@@ -12,8 +12,6 @@
void heap_init(u32 start);
void *malloc(u32 size);
void free(void *ptr);
-/* #define malloc(n) (void *)((HEAP += n) - n) // TODO: Implement real/better malloc/free */
-/* #define free(ptr) */
#elif defined(userspace)
#include <sys.h>
#define malloc(n) (void *)sys1(SYS_MALLOC, n)