Fix yellow and red.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30425 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e2186479d5
commit
bd9c172b9e
1 changed files with 8 additions and 0 deletions
|
@ -18,10 +18,15 @@
|
||||||
#define qsort(a,b,c,d) rb->qsort(a,b,c,d)
|
#define qsort(a,b,c,d) rb->qsort(a,b,c,d)
|
||||||
#define atoi(a) rb->atoi(a)
|
#define atoi(a) rb->atoi(a)
|
||||||
|
|
||||||
|
#undef strlen
|
||||||
#define strlen(a) rb->strlen(a)
|
#define strlen(a) rb->strlen(a)
|
||||||
|
#undef strcpy
|
||||||
#define strcpy(a,b) rb->strcpy(a,b)
|
#define strcpy(a,b) rb->strcpy(a,b)
|
||||||
|
#undef strcat
|
||||||
#define strcat(a,b) rb->strcat(a,b)
|
#define strcat(a,b) rb->strcat(a,b)
|
||||||
|
#undef strncmp
|
||||||
#define strncmp(a,b,c) rb->strncmp(a,b,c)
|
#define strncmp(a,b,c) rb->strncmp(a,b,c)
|
||||||
|
#undef strcasecmp
|
||||||
#define strcasecmp(a,b) rb->strcasecmp(a,b)
|
#define strcasecmp(a,b) rb->strcasecmp(a,b)
|
||||||
|
|
||||||
#undef open
|
#undef open
|
||||||
|
@ -43,8 +48,11 @@
|
||||||
#define realloc(x,y) tlsf_realloc(x,y)
|
#define realloc(x,y) tlsf_realloc(x,y)
|
||||||
#define calloc(x,y) tlsf_calloc(x,y)
|
#define calloc(x,y) tlsf_calloc(x,y)
|
||||||
|
|
||||||
|
#undef strncat
|
||||||
#define strncat mmsupp_strncat
|
#define strncat mmsupp_strncat
|
||||||
|
#undef printf
|
||||||
#define printf mmsupp_printf
|
#define printf mmsupp_printf
|
||||||
|
#undef sprintf
|
||||||
#define sprintf mmsupp_sprintf
|
#define sprintf mmsupp_sprintf
|
||||||
|
|
||||||
#define fprintf(...)
|
#define fprintf(...)
|
||||||
|
|
Loading…
Reference in a new issue