1 2 3 4 5 6 7 8
#ifndef KERNEL_MEM_H #include <stddef.h> int init_kmalloc(void); void* kmalloc(size_t sz); #endif