From d02cfc3692917a1519b3251e739b4a04f056a232 Mon Sep 17 00:00:00 2001 From: das 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 --- lib/libc/i386/arith.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lib/libc/i386/arith.h (limited to 'lib/libc/i386/arith.h') diff --git a/lib/libc/i386/arith.h b/lib/libc/i386/arith.h new file mode 100644 index 0000000..d1bcfb6 --- /dev/null +++ b/lib/libc/i386/arith.h @@ -0,0 +1,8 @@ +/* + * MD header for contrib/gdtoa + * + * $FreeBSD$ + */ + +#define IEEE_8087 +#define Arith_Kind_ASL 1 -- cgit v1.1