From: Thomas Schwinge Date: Thu, 21 Feb 2013 18:44:29 +0000 (+0100) Subject: Remove unused declarations. X-Git-Tag: glibc-2.18~525 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a57da9551698153f0e5261b419388004b039820f;p=thirdparty%2Fglibc.git Remove unused declarations. Added in commit f83af095b6fc49de3914f4426202171341783277, and forgotten to be removed in commit 76f2646f3dbe45d3ed53a0c73fa52f1595306b35. --- diff --git a/ChangeLog b/ChangeLog index dc84119138e..982c98c7db2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-03-15 Thomas Schwinge + + * stdio-common/printf_fp.c (__isinfl_internal, __isnanl_internal): + Remove declarations. + 2013-03-15 Siddhesh Poyarekar * sysdeps/ieee754/dbl-64/mpa-arch.h: Remove. diff --git a/stdio-common/printf_fp.c b/stdio-common/printf_fp.c index a72744d59e3..ad60f43eac3 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);