diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-12-21 15:09:01 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-12-21 15:09:01 +0000 |
commit | 336daa76faa6255cf487100a9741c740802bb32f (patch) | |
tree | 3d1f4936fe57c743e879907dbf4e87aa226b97bd | |
parent | 467b12acab5be2b394093d25d8972f0bf971b110 (diff) | |
download | coreboot-336daa76faa6255cf487100a9741c740802bb32f.tar.xz |
make strcmp happy by including string.h (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4988 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | util/cbfstool/cbfstool.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/cbfstool/cbfstool.c b/util/cbfstool/cbfstool.c index 3c6db6f231..183a614491 100644 --- a/util/cbfstool/cbfstool.c +++ b/util/cbfstool/cbfstool.c @@ -20,6 +20,7 @@ #include <stdio.h> #include <stdint.h> +#include <string.h> #include "common.h" #include "cbfs.h" |