git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22000
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// missing C RTL functions
// ----------------------------------------------------------------------------
// missing C RTL functions
// ----------------------------------------------------------------------------
-#if defined( __MWERKS__ ) && !defined(__MACH__)
-#if __MSL__ < 0x00008000
+#if (defined(__MWERKS__) && !defined(__MACH__) && (__MSL__ < 0x00008000)) || \
+ defined(__WXWINCE__)
char *strdup(const char *s)
{
char *dest = (char*) malloc( strlen( s ) + 1 ) ;
char *strdup(const char *s)
{
char *dest = (char*) malloc( strlen( s ) + 1 ) ;
-int isascii( int c )
-{
- return ( c >= 0 && c < 128 ) ;
-}
-#endif // __MWERKS__
-#ifdef __WXWINCE__
-char* strdup(const char* s)
+#if (defined(__MWERKS__) && !defined(__MACH__)) || defined(__WXWINCE__)
+int isascii( int c )
- char *dest = (char*) malloc( strlen( s ) + 1 ) ;
- if ( dest )
- strcpy( dest , s ) ;
- return dest ;
+ return ( c >= 0 && c < 128 );
+#if defined(__WXWINCE__)
void *calloc( size_t num, size_t size )
{
void** ptr = (void **)malloc(num * size);
void *calloc( size_t num, size_t size )
{
void** ptr = (void **)malloc(num * size);
-
-int isascii( int c )
-{
- return ( c >= 0 && c < 128 ) ;
-}