summaryrefslogtreecommitdiffstats
path: root/include/memory.h
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2011-09-23 09:40:47 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2011-09-23 16:32:48 +0200
commit0fc7fb6b4f5c992893d7cb33b0aa40c0ea7acc23 (patch)
tree6d0e28248737ab460d60fee0ead07833c32b275d /include/memory.h
parent2024fa56ffa3ebe477b47ad124f35e1c19297b61 (diff)
downloadbarebox-0fc7fb6b4f5c992893d7cb33b0aa40c0ea7acc23.tar.gz
barebox-0fc7fb6b4f5c992893d7cb33b0aa40c0ea7acc23.tar.xz
rename include/mem_malloc.h to include/memory.h
Which is a better name and also better to collect other things. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include/memory.h')
-rw-r--r--include/memory.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/memory.h b/include/memory.h
new file mode 100644
index 0000000000..67b19d7ff1
--- /dev/null
+++ b/include/memory.h
@@ -0,0 +1,10 @@
+#ifndef __MEM_MALLOC_H
+#define __MEM_MALLOC_H
+
+#include <linux/types.h>
+
+void mem_malloc_init(void *start, void *end);
+ulong mem_malloc_start(void);
+ulong mem_malloc_end(void);
+
+#endif