9
0
Fork 0
barebox/include/mem_malloc.h

10 lines
162 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>
void mem_malloc_init (void *start, void *end);
2007-07-05 16:01:29 +00:00
void *sbrk (ptrdiff_t increment);
#endif