9
0
Fork 0
barebox/include/mem_malloc.h

13 lines
227 B
C
Raw Normal View History

2007-07-05 16:01:29 +00:00
#ifndef __MEM_MALLOC_H
#define __MEM_MALLOC_H
2007-07-05 16:01:45 +00:00
#include <linux/types.h>
2007-07-05 16:02:02 +00:00
void mem_malloc_init(void *start, void *end);
void *sbrk_no_zero(ptrdiff_t increment);
2007-07-05 16:01:29 +00:00
2007-09-26 13:24:51 +00:00
ulong mem_malloc_start(void);
ulong mem_malloc_end(void);
2007-07-05 16:01:29 +00:00
#endif