diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | stdio-common/printf_fp.c | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index dc84119138..982c98c7db 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-03-15 Thomas Schwinge <thomas@codesourcery.com> + + * stdio-common/printf_fp.c (__isinfl_internal, __isnanl_internal): + Remove declarations. + 2013-03-15 Siddhesh Poyarekar <siddhesh@redhat.com> * sysdeps/ieee754/dbl-64/mpa-arch.h: Remove. diff --git a/stdio-common/printf_fp.c b/stdio-common/printf_fp.c index a72744d59e..ad60f43eac 100644 --- a/stdio-common/printf_fp.c +++ b/stdio-common/printf_fp.c @@ -133,9 +133,6 @@ #define MPN_GE(u,v) \ (u##size > v##size || (u##size == v##size && __mpn_cmp (u, v, u##size) >= 0)) -extern int __isinfl_internal (long double) attribute_hidden; -extern int __isnanl_internal (long double) attribute_hidden; - extern mp_size_t __mpn_extract_double (mp_ptr res_ptr, mp_size_t size, int *expt, int *is_neg, double value); |