diff options
Diffstat (limited to 'include/stdlib.h')
-rw-r--r-- | include/stdlib.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index f3c00ab31..daff04b07 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -68,9 +68,7 @@ extern char * gcvt __P ((float number, size_t ndigit, char * buf)); #define atof(x) strtod((x),(char**)0) #define atoi(x) (int)strtol((x),(char**)0,10) #define atol(x) strtol((x),(char**)0,10) -#ifdef __LIBC__ char* itoa(int i); -#endif /* Returned by `div'. */ typedef struct |