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