tools/mkimage: fix compiler warnings on some systems.
authorWolfgang Denk <wd@denx.de>
Fri, 6 Jun 2008 12:28:14 +0000 (14:28 +0200)
committerWolfgang Denk <wd@denx.de>
Fri, 6 Jun 2008 14:21:12 +0000 (16:21 +0200)
Signed-off-by: Wolfgang Denk <wd@denx.de>
lib_generic/md5.c
lib_generic/sha1.c

index 78ef475..a9aae46 100644 (file)
@@ -27,6 +27,8 @@
 
 #ifndef USE_HOSTCC
 #include <common.h>
+#else
+#include <string.h>
 #endif /* USE_HOSTCC */
 #include <watchdog.h>
 #include <linux/types.h>
index c8ef4d2..a192e5f 100644 (file)
@@ -31,6 +31,8 @@
 
 #ifndef USE_HOSTCC
 #include <common.h>
+#else
+#include <string.h>
 #endif /* USE_HOSTCC */
 #include <watchdog.h>
 #include <linux/string.h>