git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13689
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// ----------------------------------------------------------------------------
#ifdef __MWERKS__
// ----------------------------------------------------------------------------
#ifdef __MWERKS__
char *strdup(const char *s)
{
return strcpy( (char*) malloc( strlen( s ) + 1 ) , s ) ;
}
char *strdup(const char *s)
{
return strcpy( (char*) malloc( strlen( s ) + 1 ) , s ) ;
}
int isascii( int c )
{
return ( c >= 0 && c < 128 ) ;
int isascii( int c )
{
return ( c >= 0 && c < 128 ) ;