From 6fa6a0e07644f20abf2596f78a60112713e11cbe Mon Sep 17 00:00:00 2001 From: Thomas Kuehne Date: Dec 11 2021 21:03:42 +0000 Subject: add strings.h import Fixes: xmlif/xmlif.l:162:13: warning: implicit declaration of function ‘strncasecmp’; did you mean ‘strncmp’? [-Wimplicit-function-declaration] 162 | if (strncasecmp(selections[i], attr, eqoffset) == 0) | ^~~~~~~~~~~ Signed-off-by: Thomas Kuehne --- diff --git a/xmlif/xmlif.l b/xmlif/xmlif.l index 7dd9dc0..294fbc7 100644 --- a/xmlif/xmlif.l +++ b/xmlif/xmlif.l @@ -37,6 +37,7 @@ */ #include #include +#include #define TRUE 1 #define FALSE 0