]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/utilscmn.cpp
resource loader structure added for loading menu bar, apple menu will not get multipl...
[wxWidgets.git] / src / common / utilscmn.cpp
index a5e42a0eb1048b756a77ccd791b3b80cd32f924d..9962127b6ba2cbdcec62033906cf61f30e2c7f7a 100644 (file)
@@ -987,11 +987,12 @@ wxColour wxGetColourFromUser(wxWindow *parent, const wxColour& colInit)
 // ----------------------------------------------------------------------------
 
 #ifdef __MWERKS__
+#if __MSL__ < 0x7000
 char *strdup(const char *s)
 {
         return strcpy( (char*) malloc( strlen( s ) + 1 ) , s ) ;
 }
-
+#endif
 int isascii( int c )
 {
         return ( c >= 0 && c < 128 ) ;