diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2006-06-22 17:59:52 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2006-06-22 17:59:52 +0000 |
commit | f489b5943c8f8655b0a3caddd38114111576ab35 (patch) | |
tree | e5db470212203f6eb28752047e58cb287418bc1b /newlib/libc/stdlib/Makefile.am | |
parent | 09fd280ca40c0b1211d3e8b31c3a813150c57c6b (diff) | |
download | cygnal-f489b5943c8f8655b0a3caddd38114111576ab35.tar.gz cygnal-f489b5943c8f8655b0a3caddd38114111576ab35.tar.bz2 cygnal-f489b5943c8f8655b0a3caddd38114111576ab35.zip |
2006-06-22 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdlib/Makefile.am: Add new gdtoa routines.
* libc/stdlib/Makefile.in: Regenerated.
* libc/stdlib/gd_qnan.h: New file.
* libc/stdlib/gdtoa-gethex.c: Ditto.
* libc/stdlib/gdtoa-hexnan.c: Ditto.
* libc/stdlib/gdtoa.h: Ditto.
* libc/stdlib/mprec.c: Add new helper routines needed by
the new gdtoa code.
* libc/stdlib/mprec.h: Integrate some defines and prototypes
used by gdtoa routines here.
* libc/stdlib/strtod.c: Rebased on David M. Gay's gdtoa-strtod.c
which adds C99 support such as nan, inf, and hexadecimal input
format.
Diffstat (limited to 'newlib/libc/stdlib/Makefile.am')
-rw-r--r-- | newlib/libc/stdlib/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/newlib/libc/stdlib/Makefile.am b/newlib/libc/stdlib/Makefile.am index fdc52e04e..0874729c5 100644 --- a/newlib/libc/stdlib/Makefile.am +++ b/newlib/libc/stdlib/Makefile.am @@ -27,6 +27,8 @@ GENERAL_SOURCES = \ envlock.c \ eprintf.c \ exit.c \ + gdtoa-gethex.c \ + gdtoa-hexnan.c \ getenv.c \ getenv_r.c \ labs.c \ @@ -256,6 +258,8 @@ $(lpfx)mbtowc_r.$(oext): mbtowc_r.c mbctype.h $(lpfx)mprec.$(oext): mprec.c mprec.h $(lpfx)strtod.$(oext): strtod.c mprec.h +$(lpfx)gdtoa-gethex.$(oext): gdtoa-gethex.c mprec.h +$(lpfx)gdtoa-hexnan.$(oext): gdtoa-hexnan.c mprec.h $(lpfx)wctomb_r.$(oext): wctomb_r.c mbctype.h $(lpfx)drand48.$(oext): drand48.c rand48.h $(lpfx)erand48.$(oext): erand48.c rand48.h |