From edefaa2ef7acf59d3a062fff4ef3b9703103878c Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Mon, 22 Apr 2013 22:20:04 +0900 Subject: [PATCH] include strings.h for strcasecmp while this is not the only place strcasecmp is used without an explicit inclusion of the header, it's the only place gcc complains on my environment. for other places, probably the header is included indirectly via other headers, i guess. Signed-off-by: YAMAMOTO Takashi Signed-off-by: Ben Pfaff --- lib/smap.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/smap.c b/lib/smap.c index 54b339f0e..0d7573305 100644 --- a/lib/smap.c +++ b/lib/smap.c @@ -15,6 +15,8 @@ #include #include "smap.h" +#include + #include "hash.h" #include "json.h" -- 2.47.0