From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Wagner Date: Wed, 23 Nov 2011 21:28:12 +0100 Subject: [U-Boot] [PATCH 3/9] mkenvimage: Correct the includes and add a missing one In-Reply-To: <1322080098-3151-1-git-send-email-david.wagner@free-electrons.com> References: <1322080098-3151-1-git-send-email-david.wagner@free-electrons.com> Message-ID: <1322080098-3151-4-git-send-email-david.wagner@free-electrons.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 --- tools/mkenvimage.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/mkenvimage.c b/tools/mkenvimage.c index da54658..6af0d56 100644 --- a/tools/mkenvimage.c +++ b/tools/mkenvimage.c @@ -28,14 +28,15 @@ #include #include #include +#include #include #include #include -#include +#include "compiler.h" #include #include -#include +#include "u-boot/crc.h" #define CRC_SIZE sizeof(uint32_t) -- 1.7.7.3