1#ifndef early_kalloc_h 2#define early_kalloc_h 3 4#include <stdint.h> 5 6uint64_t early_kalloc(int size); 7 8#endif 9 10