From a94f22f08f280905926219e568568964cb9eeb9d Mon Sep 17 00:00:00 2001 From: Andy Fleming Date: Wed, 11 Jun 2008 18:10:20 -0500 Subject: Fix build issue with string.h and linux/string.h This commit: commit 338cc038461a6c7709c5b86fd9a240209338a1ae Author: Wolfgang Denk Date: Fri Jun 6 14:28:14 2008 +0200 tools/mkimage: fix compiler warnings on some systems. Broke building on some systems, because the host's string.h was interfering with u-boot's linux/string.h. It doesn't look like we need the u-boot one if we're building for the host, so now we only include when building inside u-boot. Signed-off-by: Andy Fleming --- lib_generic/md5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib_generic/md5.c') diff --git a/lib_generic/md5.c b/lib_generic/md5.c index a9aae4682..9150510bb 100644 --- a/lib_generic/md5.c +++ b/lib_generic/md5.c @@ -27,12 +27,12 @@ #ifndef USE_HOSTCC #include +#include #else #include #endif /* USE_HOSTCC */ #include #include -#include #include static void -- cgit v1.2.3