diff options
| author | Peter Robinson <[email protected]> | 2015-12-09 07:15:33 +0000 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2015-12-13 20:22:00 -0500 |
| commit | 69bf2d2fafe64349be3c3ef1256e3c68f812bb25 (patch) | |
| tree | 02559cee8122744172cace201fd9c04102766d47 /tools | |
| parent | 6463fd8f952df9e4bb448f0aff5d16873f8dfdb2 (diff) | |
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 <[email protected]>
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/env/fw_env.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c index ba11f7727b8..39f733376ed 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> |
