Felix Held has uploaded this change for review. ( https://review.coreboot.org/27632
Change subject: cbfstool: fix implicit declaration of strcasecmp ......................................................................
cbfstool: fix implicit declaration of strcasecmp
Change-Id: Iefeb47bca3676a1f807b7a66b74a07491e351362 Signed-off-by: Felix Held felix-coreboot@felixheld.de --- M util/cbfstool/cbfscomptool.c 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/32/27632/1
diff --git a/util/cbfstool/cbfscomptool.c b/util/cbfstool/cbfscomptool.c index c32be64..028893c 100644 --- a/util/cbfstool/cbfscomptool.c +++ b/util/cbfstool/cbfscomptool.c @@ -16,6 +16,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <strings.h> #include <time.h>
#include "common.h"