aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/gdtoa
Commit message (Collapse)AuthorAgeFilesLines
* /strtopx/ s/result/&result/David Schultz2003-04-092-2/+2
| | | | | | | This is the version I *meant* to commit last week. Notes: svn path=/head/; revision=113278
* Add __ldtoa(), a wrapper around gdtoa() to make it look like dtoa().David Schultz2003-04-052-1/+98
| | | | | | | | | | In support of this, add some MD macros to assist in converting long doubles to the format expected by gdtoa(). Reviewed by: silence on standards@ Notes: svn path=/head/; revision=113145
* Clean up the way gdtoa sources are found.David E. O'Brien2003-03-131-1/+6
| | | | | | | OK'ed by: das Notes: svn path=/head/; revision=112202
* Replace our ancient dtoa/strtod implementation with the gdtoaDavid Schultz2003-03-125-0/+159
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 Notes: svn path=/head/; revision=112163