mirror of
https://github.com/yawut/SDL.git
synced 2026-09-12 02:56:34 -05:00
Fixed another infinite recursion accident in stdlib.
This commit is contained in:
@@ -923,7 +923,7 @@ SDL_strncmp(const char *str1, const char *str2, size_t maxlen)
|
||||
|
||||
#ifdef SDL_strcasecmp
|
||||
#undef SDL_strcasecmp
|
||||
int SDL_strcasecmp(const char *str1, const char *str2) { return SDL_strcasecmp(str1, str2); }
|
||||
int SDL_strcasecmp(const char *str1, const char *str2) { return SDL_strcasecmp_inline(str1, str2); }
|
||||
#else
|
||||
int
|
||||
SDL_strcasecmp(const char *str1, const char *str2)
|
||||
|
||||
Reference in New Issue
Block a user