From 6a66acb565dde6d5b0ee52eef2a631fbb09df153 Mon Sep 17 00:00:00 2001 From: David Schultz Date: Wed, 12 Mar 2003 20:30:00 +0000 Subject: 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 --- include/stdlib.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/stdlib.h b/include/stdlib.h index f7fd3a761dc5..b5537442d26d 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 *); -- cgit v1.3