diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2005-01-06 23:31:56 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2005-01-06 23:31:56 +0000 |
commit | 8fa6cb9a5d5c6e380985cb12b1a799ed3acc8f25 (patch) | |
tree | a9fdbccd90a418b7db29c7952343ad0c011f87b3 /newlib/Makefile.am | |
parent | 69008322efa3e4b0b844cb552719801bef3be583 (diff) | |
download | cygnal-8fa6cb9a5d5c6e380985cb12b1a799ed3acc8f25.tar.gz cygnal-8fa6cb9a5d5c6e380985cb12b1a799ed3acc8f25.tar.bz2 cygnal-8fa6cb9a5d5c6e380985cb12b1a799ed3acc8f25.zip |
2005-01-06 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdlib/strtod.c (_strtod_r): Add NaN support.
* (strtof): Ditto.
* libc/stdio/vfscanf.c (__svfscanf_r): Ditto.
* Makefile.am (MATHOBJS_IN_LIBC): Add s_nan and sf_nan
functions for use by strtod and strtof.
* Makefile.in: Regenerated.
Diffstat (limited to 'newlib/Makefile.am')
-rw-r--r-- | newlib/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/newlib/Makefile.am b/newlib/Makefile.am index 07172e947..9ed53679d 100644 --- a/newlib/Makefile.am +++ b/newlib/Makefile.am @@ -89,6 +89,7 @@ toollib_DATA = $(CRT0) $(CRT1) MATHOBJS_IN_LIBC = \ s_isinf.$(oext) sf_isinf.$(oext) \ s_isnan.$(oext) sf_isnan.$(oext) \ + s_nan.$(oext) sf_nan.$(oext) \ s_ldexp.$(oext) sf_ldexp.$(oext) \ s_frexp.$(oext) sf_frexp.$(oext) \ s_modf.$(oext) \ |