浏览代码

tools/mkimage: fix compiler warnings on some systems.

Signed-off-by: Wolfgang Denk <wd@denx.de>
Wolfgang Denk 17 年之前
父节点
当前提交
338cc03846
共有 2 个文件被更改,包括 4 次插入0 次删除
  1. 2 0
      lib_generic/md5.c
  2. 2 0
      lib_generic/sha1.c

+ 2 - 0
lib_generic/md5.c

@@ -27,6 +27,8 @@
 
 #ifndef USE_HOSTCC
 #include <common.h>
+#else
+#include <string.h>
 #endif /* USE_HOSTCC */
 #include <watchdog.h>
 #include <linux/types.h>

+ 2 - 0
lib_generic/sha1.c

@@ -31,6 +31,8 @@
 
 #ifndef USE_HOSTCC
 #include <common.h>
+#else
+#include <string.h>
 #endif /* USE_HOSTCC */
 #include <watchdog.h>
 #include <linux/string.h>