From ff36e72422049bb9acdbc3c3d86a4cc8e10497b9 Mon Sep 17 00:00:00 2001 From: truelight Date: Sun, 20 Aug 2006 11:18:46 +0000 Subject: [PATCH] (svn r5969) -Fix r5968: windows doesn't know strncasecmp, but called it strnicmp (michi_cc) --- stdafx.h | 1 + 1 file changed, 1 insertion(+) diff --git a/stdafx.h b/stdafx.h index cb913dc597..790a77e328 100644 --- a/stdafx.h +++ b/stdafx.h @@ -155,6 +155,7 @@ # endif # define strcasecmp stricmp +# define strncasecmp strnicmp // suppress: warning C4005: 'offsetof' : macro redefinition (VC8) # include #endif /* defined(_MSC_VER) */