1 2 3 4 5 6 7
#include <stdint.h> #include <kernel/lib/stdlib/liballoc.h> uint32_t sys_alloc(uint32_t count) { return (uint32_t) umalloc(count); }