diff options
Diffstat (limited to 'include/stdlib.h')
-rw-r--r-- | include/stdlib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 047300af2..f3c00ab31 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -68,6 +68,9 @@ 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 |