summaryrefslogtreecommitdiff
path: root/tools/env
diff options
context:
space:
mode:
authorPeter Robinson <pbrobinson@gmail.com>2015-12-09 07:15:33 (GMT)
committerTom Rini <trini@konsulko.com>2015-12-14 01:22:00 (GMT)
commit69bf2d2fafe64349be3c3ef1256e3c68f812bb25 (patch)
tree02559cee8122744172cace201fd9c04102766d47 /tools/env
parent6463fd8f952df9e4bb448f0aff5d16873f8dfdb2 (diff)
downloadu-boot-fsl-qoriq-69bf2d2fafe64349be3c3ef1256e3c68f812bb25.tar.xz
tools: env: include compiler.h
With gcc 5.2 and later we get a bunch of "error: unknown type name" for 'uint8_t', 'uint32_t' and friends. Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
Diffstat (limited to 'tools/env')
-rw-r--r--tools/env/fw_env.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c
index ba11f77..39f7333 100644
--- a/tools/env/fw_env.c
+++ b/tools/env/fw_env.c
@@ -10,6 +10,7 @@
#define _GNU_SOURCE
+#include <compiler.h>
#include <errno.h>
#include <env_flags.h>
#include <fcntl.h>