#ifndef __MALLOC_FREELIST_H_ #define __MALLOC_FREELIST_H_ #include #ifdef __cplusplus extern "C" { #endif //__cplusplus /** * Initialize malloc with a memory address and pool size */ void malloc_addblock(void* addr, size_t size); #ifdef __cplusplus } #endif //__cplusplus #endif //__MALLOC_FREELIST_H_