9
0
Fork 0
barebox/include/mem_malloc.h

11 lines
185 B
C

#ifndef __MEM_MALLOC_H
#define __MEM_MALLOC_H
#include <linux/types.h>
void mem_malloc_init(void *start, void *end);
ulong mem_malloc_start(void);
ulong mem_malloc_end(void);
#endif