
5 Jan
2012
5 Jan
'12
7:44 p.m.
compiler.h and u-boot/crc.h need to be included from U-Boot's headers.
stdlib.h was missing.
Signed-off-by: David Wagner david.wagner@free-electrons.com --- tools/mkenvimage.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/tools/mkenvimage.c b/tools/mkenvimage.c index 7d33143..bc18736 100644 --- a/tools/mkenvimage.c +++ b/tools/mkenvimage.c @@ -31,14 +31,15 @@ #include <errno.h> #include <fcntl.h> #include <stdio.h> +#include <stdlib.h> #include <stdint.h> #include <string.h> #include <unistd.h> -#include <compiler.h> +#include "compiler.h" #include <sys/types.h> #include <sys/stat.h>
-#include <u-boot/crc.h> +#include "u-boot/crc.h" #include <version.h>
#define CRC_SIZE sizeof(uint32_t)
--
1.7.5.4