diff options
Diffstat (limited to 'Python/strtod.c')
-rw-r--r-- | Python/strtod.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Python/strtod.c b/Python/strtod.c index 0673fcade2..c6a1dbdeb7 100644 --- a/Python/strtod.c +++ b/Python/strtod.c @@ -52,17 +52,15 @@ static int MDMAXEXPT = { 309}; static char MDMAXFRAC[] = "17976931348623157"; static double HUGE = 1.7976931348623157e308; -extern double atof(); /* Only called when result known to be ok */ +extern double atof(const char *); /* Only called when result known to be ok */ #ifndef DONT_HAVE_ERRNO_H #include <errno.h> #endif extern int errno; -double strtod(str, ptr) - char *str; - char **ptr; - { +double strtod(char *str, char **ptr) +{ int sign, scale, dotseen; int esign, expt; char *save; @@ -155,4 +153,4 @@ double strtod(str, ptr) (void) sprintf(dp, "E%d", expt); errno = 0; return atof(buffer)*sign; - } +} |