From 5f8b5ce7efb7738eaebad43f9648975788ae19ff Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 28 Apr 2020 20:59:57 +0200 Subject: Fixed userspace entering... Many other fixes too, but I won't mention them because I don't want to :) --- src/kernel/syscall/actions/sys_malloc.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/kernel/syscall/actions/sys_malloc.c (limited to 'src/kernel/syscall/actions/sys_malloc.c') 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 +#include + +uint32_t sys_malloc(uint32_t count) +{ + return (uint32_t)umalloc(count); +} \ No newline at end of file -- cgit v1.2.3