aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/ieee754/ldbl-opt
diff options
context:
space:
mode:
authorWilco Dijkstra <wdijkstr@arm.com>2015-06-03 16:35:44 +0100
committerWilco Dijkstra <wdijkstr@arm.com>2015-06-03 16:35:44 +0100
commitcbf377edd318a6f35e5b54573f902299c6da9ed5 (patch)
treedf17452638183eedc8ad1a579f62a443a751f7a5 /sysdeps/ieee754/ldbl-opt
parentd81f90ccd0109de9ed78aeeb8d86e2c6d4600690 (diff)
downloadglibc-cbf377edd318a6f35e5b54573f902299c6da9ed5.tar
glibc-cbf377edd318a6f35e5b54573f902299c6da9ed5.tar.gz
glibc-cbf377edd318a6f35e5b54573f902299c6da9ed5.tar.bz2
glibc-cbf377edd318a6f35e5b54573f902299c6da9ed5.zip
Replace finite with isfinite.
Diffstat (limited to 'sysdeps/ieee754/ldbl-opt')
-rw-r--r--sysdeps/ieee754/ldbl-opt/nldbl-finite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-finite.c b/sysdeps/ieee754/ldbl-opt/nldbl-finite.c
index af962386c1..fc51508f16 100644
--- a/sysdeps/ieee754/ldbl-opt/nldbl-finite.c
+++ b/sysdeps/ieee754/ldbl-opt/nldbl-finite.c
@@ -4,7 +4,7 @@ int
attribute_hidden
__finitel (double x)
{
- return finite (x);
+ return isfinite (x);
}
extern __typeof (__finitel) finitel attribute_hidden;
weak_alias (__finitel, finitel)