From: YAMAMOTO Takashi Date: Mon, 22 Apr 2013 13:20:04 +0000 (+0900) Subject: include strings.h for strcasecmp X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=edefaa2ef7acf59d3a062fff4ef3b9703103878c;p=sliver-openvswitch.git 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 --- 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"