don't define strcasecmp to strcmp, use _stricmp, and define strcasecmp to _strnicmp.

svn path=/trunk/; revision=38284
This commit is contained in:
Timo Kreuzer 2008-12-22 23:35:35 +00:00
parent da70a17936
commit 1be3ebb61b

View file

@ -6,8 +6,8 @@
#define getwd getcwd
#define strcasecmp strcmp
#define strncasecmp strnicmp
#define strcasecmp _stricmp
#define strncasecmp _strnicmp
struct timezone {
int tz_minuteswest; /* minutes W of Greenwich */