aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/syscall/actions/sys_alloc.c')
-rw-r--r--src/kernel/syscall/actions/sys_alloc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/kernel/syscall/actions/sys_alloc.c b/src/kernel/syscall/actions/sys_alloc.c
index 6579e0e..24abe4d 100644
--- a/src/kernel/syscall/actions/sys_alloc.c
+++ b/src/kernel/syscall/actions/sys_alloc.c
@@ -1,7 +1,6 @@
#include <stdint.h>
-#include <kernel/lib/stdlib/liballoc.h>
uint32_t sys_alloc(uint32_t count)
{
- return (uint32_t) umalloc(count);
+ return 0; // (uint32_t) umalloc(count);
} \ No newline at end of file