summaryrefslogtreecommitdiff
path: root/src/user/include/knob/heap.h
blob: 32dc44c8fa7f791dd9172870c7684d1077c20a95 (plain) (blame)
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