From 0c2c504819b8788075115f848343bd45a3bb6605 Mon Sep 17 00:00:00 2001 From: Jeremy Huddleston Date: Fri, 11 Nov 2011 10:37:49 -0800 Subject: Include strings.h for strcasecmp Our minimum requirement for X11 is currently Unix98. Unix98 provides strcasecmp in . This commit fixes implicit declarations of this function on systems that closely adhere to the standard. Signed-off-by: Jeremy Huddleston --- src/XKBfileInt.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/XKBfileInt.h b/src/XKBfileInt.h index d0e842f..e810e61 100644 --- a/src/XKBfileInt.h +++ b/src/XKBfileInt.h @@ -75,6 +75,7 @@ char *_XkbDupString(const char *s) extern int _XkbStrCaseCmp(char *s1, char *s2); #else #define _XkbStrCaseCmp strcasecmp +#include #endif _XFUNCPROTOEND -- cgit v1.2.1