1 2 3 4 5 6 7 8 9 10 11
#ifndef MEM_H_ #define MEM_H_ #include <stddef.h> #define PAGE_SIZE 4096 void * alloc_code(size_t *size); #endif //MEM_H_