diff options
author | das <das@FreeBSD.org> | 2003-03-12 20:30:00 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2003-03-12 20:30:00 +0000 |
commit | d02cfc3692917a1519b3251e739b4a04f056a232 (patch) | |
tree | 2227a906466b311329420d1e05832b3c4e9aef98 /include | |
parent | e89bff45972f418ac11fe0897158e917ac237bd0 (diff) | |
download | FreeBSD-src-d02cfc3692917a1519b3251e739b4a04f056a232.zip FreeBSD-src-d02cfc3692917a1519b3251e739b4a04f056a232.tar.gz |
Replace our ancient dtoa/strtod implementation with the gdtoa
package, a more recent, generalized set of routines. Among the
changes:
- Declare strtof() and strtold() in stdlib.h.
- Add glue to libc to support these routines for all kinds
of ``long double''.
- Update printf() to reflect the fact that dtoa works slightly
differently now.
As soon as I see that nothing has blown up, I will kill
src/lib/libc/stdlib/strtod.c. Soon printf() will be able
to use the new routines to output long doubles without loss
of precision, but numerous bugs in the existing code must
be addressed first.
Reviewed by: bde (briefly), mike (mentor), obrien
Diffstat (limited to 'include')
-rw-r--r-- | include/stdlib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index f7fd3a7..b553744 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -107,10 +107,10 @@ int rand(void); void *realloc(void *, size_t); void srand(unsigned); double strtod(const char * __restrict, char ** __restrict); -/* float strtof(const char * __restrict, char ** __restrict); */ +float strtof(const char * __restrict, char ** __restrict); long strtol(const char * __restrict, char ** __restrict, int); -/* long double - strtold(const char * __restrict, char ** __restrict); */ +long double + strtold(const char * __restrict, char ** __restrict); unsigned long strtoul(const char * __restrict, char ** __restrict, int); int system(const char *); |