summaryrefslogtreecommitdiffstats
path: root/common
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 /common
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 'common')
-rw-r--r--common/dlmalloc.c2
-rw-r--r--common/startup.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/common/dlmalloc.c b/common/dlmalloc.c
index f9e1828cbf..7ad368ee53 100644
--- a/common/dlmalloc.c
+++ b/common/dlmalloc.c
@@ -2,7 +2,7 @@
#include <config.h>
#include <malloc.h>
#include <string.h>
-#include <mem_malloc.h>
+#include <memory.h>
#include <stdio.h>
#include <module.h>
diff --git a/common/startup.c b/common/startup.c
index bf67aef152..7a1b6024f4 100644
--- a/common/startup.c
+++ b/common/startup.c
@@ -33,7 +33,7 @@
#include <init.h>
#include <command.h>
#include <malloc.h>
-#include <mem_malloc.h>
+#include <memory.h>
#include <debug_ll.h>
#include <fs.h>
#include <linux/stat.h>