9
0
Fork 0

svn_rev_342

This commit is contained in:
Sascha Hauer 2007-07-05 18:01:45 +02:00 committed by Sascha Hauer
parent a7456a60b8
commit 95bc68baed
1 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,9 @@
#ifndef __MEM_MALLOC_H
#define __MEM_MALLOC_H
void mem_malloc_init (ulong start, ulong end);
#include <linux/types.h>
void mem_malloc_init (void *start, void *end);
void *sbrk (ptrdiff_t increment);
#endif