Win32 fixes

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401514
This commit is contained in:
Sam Lantinga 2006-03-13 02:06:33 +00:00
parent dda2653f17
commit d99aa28246
7 changed files with 10 additions and 11 deletions

View file

@ -515,8 +515,8 @@ extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size
#if HAVE_STRCASECMP
#define SDL_strcasecmp strcasecmp
#elif HAVE_STRICMP
#define SDL_strcasecmp stricmp
#elif HAVE__STRICMP
#define SDL_strcasecmp _stricmp
#else
extern DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, const char *str2);
#endif