From 35a79dd2aef3d2b673bde1d32243344075decda4 Mon Sep 17 00:00:00 2001 From: Tony Kelman Date: Fri, 19 Dec 2014 11:57:43 -0800 Subject: [PATCH] fix error: conflicting types for '_strnicmp' with MinGW --- lib/common/colxlate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common/colxlate.c b/lib/common/colxlate.c index 6097c9f12..73d9ba105 100644 --- a/lib/common/colxlate.c +++ b/lib/common/colxlate.c @@ -31,7 +31,7 @@ static char* colorscheme; -#ifdef WIN32 +#ifdef _MSC_VER extern int strcasecmp(const char *s1, const char *s2); extern int strncasecmp(const char *s1, const char *s2, unsigned int n); #endif -- 2.50.1