1 2 3 4 5 6 7 8 9
#ifndef MEM_H #include <kernel/alloc.h> #include <kernel/paging.h> #include <stddef.h> void* kmalloc(size_t sz); #endif