10 lines
196 B
C
Raw Normal View History

2023-07-13 11:27:03 +08:00
#ifndef __OSP_HEAP__
#define __OSP_HEAP__
extern int8_t osp_heap_mem_init(uint32_t addr, uint32_t size);
extern char *osp_heap_malloc(uint32_t size);
2023-07-13 11:27:03 +08:00
extern void osp_heap_free(char *p);
#endif