Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2005-01-07 02:31:56 +0300
committerJeff Johnston <jjohnstn@redhat.com>2005-01-07 02:31:56 +0300
commit8fa6cb9a5d5c6e380985cb12b1a799ed3acc8f25 (patch)
treea9fdbccd90a418b7db29c7952343ad0c011f87b3 /newlib/Makefile.am
parent69008322efa3e4b0b844cb552719801bef3be583 (diff)
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.am1
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) \