1 2 3 4 5 6 7 8
#include <stdint.h> #include <kernel/memory/alloc.h> uint32_t sys_free(uint32_t ptr) { kfree((void *) ptr); return 0; }