1 2 3 4 5 6 7 8 9
#pragma once #define PAGE_SIZE 4096 void kalloc_init(); void* kalloc(); void* kzalloc(); void kfree(void*);