]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/string.h
More SC++ fixes; HelpGen starting to compile with VC++; image sample now compiles...
[wxWidgets.git] / include / wx / string.h
index c54084e2687400e365137592121048ef752a7749..81c856c9e3ed252dea12945e5afa012512330a23 100644 (file)
@@ -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__)