1 2 3 4 5 6 7 8 9
#ifndef MALLOC_H #define MALLOC_H #include "../sys/sizes.h" void * malloc(u64 size); void free(void * ptr); #endif