From a67c6273255c0357bf1e14ea35005b47c9a94e6c Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 6 Jul 2000 00:20:50 +0000 Subject: Lots and lots of cleanups. -Erik --- include/stdlib.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/stdlib.h') 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 -- cgit v1.2.3