1 2 3 4 5 6 7 8 9
#ifndef KNOB_HEAP_H #define KNOB_HEAP_H #include <stdint.h> void *get_block(uint32_t bytes) __attribute__ ((malloc)); void free_block(void *block); #endif