(svn r3442) - Fix: Only windows has stricmp. So define strcasecmp to stricmp when using MSVC

This commit is contained in:
Darkvater
2006-01-26 17:32:49 +00:00
parent 070edf2f73
commit c8a2c7ae94
3 changed files with 2 additions and 8 deletions

View File

@@ -604,13 +604,6 @@ static void Win32InitializeExceptions(void)
}
#endif
#ifndef __MINGW32__
static inline int strcasecmp(const char* s1, const char* s2)
{
return stricmp(s1, s2);
}
#endif
static char *_fios_path;
static char *_fios_save_path;
static char *_fios_scn_path;