]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/utilscmn.cpp
No real change.
[wxWidgets.git] / src / common / utilscmn.cpp
index 2ba6e858302520c7d1b6df3e7fc196880bb4fc2c..ae8c7e79dc1349becec4e1f21bc2bde72cae63db 100644 (file)
@@ -801,13 +801,11 @@ wxFont wxGetFontFromUser(wxWindow *parent, const wxFont& fontInit)
 // missing C RTL functions (FIXME shouldn't be here at all)
 // ----------------------------------------------------------------------------
 
-#ifdef __MWERKS__
-#if __MSL__ < 0x7000
+#if defined( __MWERKS__ ) && !defined(__MACH__)
 char *strdup(const char *s)
 {
         return strcpy( (char*) malloc( strlen( s ) + 1 ) , s ) ;
 }
-#endif
 int isascii( int c )
 {
         return ( c >= 0 && c < 128 ) ;