9
0
Fork 0
barebox/include/mem_malloc.h

10 lines
168 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
#endif