aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_malloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/syscall/actions/sys_malloc.c')
-rw-r--r--src/kernel/syscall/actions/sys_malloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/syscall/actions/sys_malloc.c b/src/kernel/syscall/actions/sys_malloc.c
index 8adc362..da21a2d 100644
--- a/src/kernel/syscall/actions/sys_malloc.c
+++ b/src/kernel/syscall/actions/sys_malloc.c
@@ -1,7 +1,7 @@
#include <stdint.h>
-#include <kernel/memory/alloc.h>
+#include <memory/alloc.h>
-uint32_t sys_malloc(uint32_t count)
+u32 sys_malloc(u32 count)
{
- return (uint32_t)umalloc(count);
+ return (u32)umalloc(count);
} \ No newline at end of file