From: Tony Kelman Date: Fri, 19 Dec 2014 19:57:43 +0000 (-0800) Subject: fix error: conflicting types for '_strnicmp' with MinGW X-Git-Tag: TRAVIS_CI_BUILD_EXPERIMENTAL~127^2~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=35a79dd2aef3d2b673bde1d32243344075decda4;p=graphviz fix error: conflicting types for '_strnicmp' with MinGW --- 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