X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/07c5641a9353fe18f680ef1a432d53743ad6065d..3d05544e4e71e7ff10984dae5a9b8a07d92f42a6:/include/wx/string.h diff --git a/include/wx/string.h b/include/wx/string.h index c54084e268..81c856c9e3 100644 --- a/include/wx/string.h +++ b/include/wx/string.h @@ -90,6 +90,8 @@ inline int WXDLLEXPORT Stricmp(const char *psz1, const char *psz2) { #if defined(_MSC_VER) return _stricmp(psz1, psz2); +#elif defined(__SC__) + return _stricmp(psz1, psz2); #elif defined(__BORLANDC__) return stricmp(psz1, psz2); #elif defined(__WATCOMC__)