9
0
Fork 0
barebox/include/memory.h

11 lines
185 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);
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