diff options
| author | Tor Egge <tegge@FreeBSD.org> | 2001-03-02 17:14:15 +0000 |
|---|---|---|
| committer | Tor Egge <tegge@FreeBSD.org> | 2001-03-02 17:14:15 +0000 |
| commit | 6d84726ecfe836bf1d8aacc456d7a04610d0518b (patch) | |
| tree | 2cdd23dd0e2888d1e99a63fb8b23448a4c0470c1 /lib/libc/stdlib | |
| parent | 4b6f9d6fe38811465c9a10d06b5377789d878480 (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdlib')
| -rw-r--r-- | lib/libc/stdlib/netbsd_strtod.c | 2 | ||||
| -rw-r--r-- | lib/libc/stdlib/strtod.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/netbsd_strtod.c b/lib/libc/stdlib/netbsd_strtod.c index b48f8279662c..7d80838a5c0d 100644 --- a/lib/libc/stdlib/netbsd_strtod.c +++ b/lib/libc/stdlib/netbsd_strtod.c @@ -370,7 +370,7 @@ extern double rnd_prod(double, double), rnd_quot(double, double); #ifdef __cplusplus extern "C" double strtod(const char *s00, char **se); extern "C" char *__dtoa(double d, int mode, int ndigits, - int *decpt, int *sign, char **rve); + int *decpt, int *sign, char **rve, char **resultp); #endif struct diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c index 361100c99cb6..677090483233 100644 --- a/lib/libc/stdlib/strtod.c +++ b/lib/libc/stdlib/strtod.c @@ -358,8 +358,8 @@ extern double rnd_prod(double, double), rnd_quot(double, double); #ifdef __cplusplus extern "C" double strtod(const char *s00, char **se); -extern "C" char *dtoa(double d, int mode, int ndigits, - int *decpt, int *sign, char **rve); +extern "C" char *__dtoa(double d, int mode, int ndigits, + int *decpt, int *sign, char **rve, char **resultp); #endif struct |
