#ifndef KMALLOC_H #define KMALLOC_H #include void* kmalloc(size_t size); void kfree(void* mem); #endif