10 lines
197 B
C
10 lines
197 B
C
#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);
|
|
extern void osp_heap_free(char *p);
|
|
|
|
#endif
|
|
|