#ifndef KNOB_HEAP_H #define KNOB_HEAP_H #include void *get_block(uint32_t bytes) __attribute__ ((malloc)); void free_block(void *block); #endif