diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2010-01-27 16:16:56 (GMT) |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-01-27 19:10:01 (GMT) |
commit | 249d4dec69e8d41ca58fe6cb3c56ea6f0480ef16 (patch) | |
tree | 436a6aa4d693fc2b7399b195ea67e8d3dc4f9e73 /tools | |
parent | 797312a15edc9dfb433e6903a75189030e7aaaaa (diff) | |
download | u-boot-249d4dec69e8d41ca58fe6cb3c56ea6f0480ef16.tar.xz |
Fix compiler warning in imximage.c due to getline prototype
imximage.c: In function 'imximage_parse_cfg_file':
imximage.c:142: warning: implicit declaration of function 'getline'
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/imximage.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/imximage.c b/tools/imximage.c index c1fdafb..59923ff 100644 --- a/tools/imximage.c +++ b/tools/imximage.c @@ -25,6 +25,9 @@ * MA 02111-1307 USA */ +/* Required to obtain the getline prototype from stdio.h */ +#define _GNU_SOURCE + #include "mkimage.h" #include <image.h> #include "imximage.h" |