1 2 3 4 5 6 7
#include <stdint.h> #include <kernel/memory/alloc.h> uint32_t sys_malloc(uint32_t count) { return (uint32_t)umalloc(count); }