summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2011-04-07 17:25:07 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2011-04-11 15:57:51 +0200
commit2a3762495056381e1ef1809b482b670fcd45b6d5 (patch)
treef5ea3bf85ed5bf81baae0c0f79514195bea9010e /include
parent4bfc4b44582670182c1519f931cbe0b0efec616e (diff)
downloadbarebox-2a3762495056381e1ef1809b482b670fcd45b6d5.tar.gz
barebox-2a3762495056381e1ef1809b482b670fcd45b6d5.tar.xz
malloc: put common memory functions to seperate file
These functions are needed independently of the specific malloc implementation, so move them out. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/malloc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/malloc.h b/include/malloc.h
index 4b0567ed1d..7b9b062ada 100644
--- a/include/malloc.h
+++ b/include/malloc.h
@@ -18,6 +18,7 @@ size_t malloc_usable_size(void*);
void malloc_stats(void);
int mallopt(int, int);
struct mallinfo mallinfo(void);
+void *sbrk(ptrdiff_t increment);
#endif