#pragma once #define PAGE_SIZE 4096 void kalloc_init(); void* kalloc(); void* kzalloc(); void kfree(void*);