#ifndef __MEM_MALLOC_H #define __MEM_MALLOC_H #include void mem_malloc_init(void *start, void *end); void *sbrk_no_zero(ptrdiff_t increment); #endif