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.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/kernel/syscall/actions/sys_malloc.c b/src/kernel/syscall/actions/sys_malloc.c
new file mode 100644
index 0000000..8adc362
--- /dev/null
+++ b/src/kernel/syscall/actions/sys_malloc.c
@@ -0,0 +1,7 @@
+#include <stdint.h>
+#include <kernel/memory/alloc.h>
+
+uint32_t sys_malloc(uint32_t count)
+{
+ return (uint32_t)umalloc(count);
+} \ No newline at end of file