Added #define to resolve strcasecmp/stricmp issue under OS/2

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7250 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Neis
2000-04-23 16:35:06 +00:00
parent 2c1bc3a7fa
commit 2dce793e22

View File

@@ -116,8 +116,10 @@
#include <stdio.h>
/* --- Systemspezifische Definitionen */
#ifdef VMS
#if defined(VMS)
#define strcasecmp(s1, s2) strcmp(s1, s2)
#elif defined(__EMX__)
#define strcasecmp stricmp
#endif
/* --- sonstiger Quark */