From: Masaki Muranaka <monaka@monami-ya.jp>
To: barebox@lists.infradead.org
Subject: [PATCH 3/3] Use stdlib.h instead of malloc.h
Date: Tue, 4 Jun 2013 21:38:32 +0900 [thread overview]
Message-ID: <1370349512-75630-3-git-send-email-monaka@monami-ya.jp> (raw)
In-Reply-To: <1370349512-75630-1-git-send-email-monaka@monami-ya.jp>
From: Masaki Muranaka <monaka@monami-ya.com>
Signed-off-by: Masaki Muranaka <monaka@monami-ya.jp>
---
commands/digest.c | 2 +-
commands/loadb.c | 2 +-
commands/mem.c | 2 +-
commands/of_property.c | 2 +-
common/command.c | 2 +-
common/digest.c | 2 +-
common/env.c | 2 +-
common/environment.c | 2 +-
common/hush.c | 2 +-
common/password.c | 3 +--
common/startup.c | 2 +-
common/uimage.c | 2 +-
12 files changed, 12 insertions(+), 13 deletions(-)
diff --git a/commands/digest.c b/commands/digest.c
index c9bb132..6470a2e 100644
--- a/commands/digest.c
+++ b/commands/digest.c
@@ -23,7 +23,7 @@
#include <fcntl.h>
#include <errno.h>
#include <xfuncs.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <digest.h>
static int do_digest(char *algorithm, int argc, char *argv[])
diff --git a/commands/loadb.c b/commands/loadb.c
index a2f3315..d7895c9 100644
--- a/commands/loadb.c
+++ b/commands/loadb.c
@@ -38,7 +38,7 @@
#include <getopt.h>
#include <fs.h>
#include <fcntl.h>
-#include <malloc.h>
+#include <stdlib.h>
#define XON_CHAR 17
#define XOFF_CHAR 19
diff --git a/commands/mem.c b/commands/mem.c
index 568050d..1caa92c 100644
--- a/commands/mem.c
+++ b/commands/mem.c
@@ -25,7 +25,7 @@
#include <command.h>
#include <init.h>
#include <driver.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <errno.h>
#include <fs.h>
#include <fcntl.h>
diff --git a/commands/of_property.c b/commands/of_property.c
index 44bb388..1919b3d 100644
--- a/commands/of_property.c
+++ b/commands/of_property.c
@@ -23,7 +23,7 @@
#include <of.h>
#include <command.h>
#include <fs.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <linux/ctype.h>
#include <asm/byteorder.h>
#include <errno.h>
diff --git a/common/command.c b/common/command.c
index 7f2b777..b3804b8 100644
--- a/common/command.c
+++ b/common/command.c
@@ -24,7 +24,7 @@
#include <common.h>
#include <command.h>
#include <xfuncs.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <environment.h>
#include <linux/list.h>
#include <init.h>
diff --git a/common/digest.c b/common/digest.c
index ae414ba..80e8502 100644
--- a/common/digest.c
+++ b/common/digest.c
@@ -18,7 +18,7 @@
#include <common.h>
#include <digest.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <fs.h>
#include <fcntl.h>
#include <linux/stat.h>
diff --git a/common/env.c b/common/env.c
index 33a871f..e8a57f4 100644
--- a/common/env.c
+++ b/common/env.c
@@ -24,7 +24,7 @@
#include <common.h>
#include <driver.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <xfuncs.h>
#include <errno.h>
#include <init.h>
diff --git a/common/environment.c b/common/environment.c
index 78cd45c..c0bd629 100644
--- a/common/environment.c
+++ b/common/environment.c
@@ -27,7 +27,7 @@
#ifdef __BAREBOX__
#include <common.h>
#include <command.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <errno.h>
#include <fs.h>
#include <fcntl.h>
diff --git a/common/hush.c b/common/hush.c
index a3235ba..a7e4571 100644
--- a/common/hush.c
+++ b/common/hush.c
@@ -106,7 +106,7 @@
* General Public License for more details.
*
*/
-#include <malloc.h> /* malloc, free, realloc*/
+#include <stdlib.h> /* malloc, free, realloc*/
#include <xfuncs.h>
#include <linux/ctype.h> /* isalpha, isdigit */
#include <common.h> /* readline */
diff --git a/common/password.c b/common/password.c
index d157a11..830f724 100644
--- a/common/password.c
+++ b/common/password.c
@@ -22,8 +22,7 @@
#include <fs.h>
#include <fcntl.h>
#include <digest.h>
-#include <malloc.h>
-#include <xfuncs.h>
+#include <stdlib.h>
#include <clock.h>
#if defined(CONFIG_PASSWD_SUM_MD5)
diff --git a/common/startup.c b/common/startup.c
index ff00ca7..d709089 100644
--- a/common/startup.c
+++ b/common/startup.c
@@ -28,7 +28,7 @@
#include <common.h>
#include <init.h>
#include <command.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <debug_ll.h>
#include <fs.h>
#include <linux/stat.h>
diff --git a/common/uimage.c b/common/uimage.c
index 06f97f0..c9ae311 100644
--- a/common/uimage.c
+++ b/common/uimage.c
@@ -19,7 +19,7 @@
*/
#include <common.h>
#include <image.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <errno.h>
#include <libbb.h>
#include <uncompress.h>
--
1.8.3
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2013-06-04 12:39 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-04 12:38 [PATCH 1/3] Remove unnesessory malloc.h inclusions Masaki Muranaka
2013-06-04 12:38 ` [PATCH 2/3] Refactor malloc.h Masaki Muranaka
2013-06-05 6:38 ` Sascha Hauer
2013-06-04 12:38 ` Masaki Muranaka [this message]
2013-06-05 6:34 ` [PATCH 1/3] Remove unnesessory malloc.h inclusions Sascha Hauer
-- strict thread matches above, loose matches on Subject: below --
2013-06-02 14:53 Masaki Muranaka
2013-06-02 14:53 ` [PATCH 3/3] Use stdlib.h instead of malloc.h Masaki Muranaka
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1370349512-75630-3-git-send-email-monaka@monami-ya.jp \
--to=monaka@monami-ya.jp \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox