aboutsummaryrefslogtreecommitdiff
path: root/backends/wince/portdefs.h
blob: 240880fc2470e7c675ad412c653b563769d579cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#if _WIN32_WCE < 300

void *calloc(size_t n, size_t s);
int isdigit(int c);
char *strrchr(const char *s, int c);
char *strdup(const char *s);
int _stricmp( const char *string1, const char *string2 );
int stricmp( const char *string1, const char *string2 );
void assert( void* expression );
void assert( int expression );
long int strtol(const char *nptr, char **endptr, int base);
char *strdup( const char *s);
#endif