1 2 3 4 5 6 7 8 9 10 11
#ifndef PALLOC_H #define PALLOC_H #include "types.h" void palloc_init(); uint32_t palloc(); void pfree(uint32_t addr); #endif