about summary refs log tree commit diff
path: root/math/s_ldexpl.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/s_ldexpl.c')
-rw-r--r--math/s_ldexpl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/s_ldexpl.c b/math/s_ldexpl.c
index 1bcc7680b4..7c7809f272 100644
--- a/math/s_ldexpl.c
+++ b/math/s_ldexpl.c
@@ -24,9 +24,9 @@ static char rcsid[] = "$NetBSD: $";
 
 long double __ldexpl(long double value, int exp)
 {
-	if(!__finitel(value)||value==0.0) return value;
+	if(!isfinite(value)||value==0.0) return value;
 	value = __scalbnl(value,exp);
-	if(!__finitel(value)||value==0.0) __set_errno (ERANGE);
+	if(!isfinite(value)||value==0.0) __set_errno (ERANGE);
 	return value;
 }
 weak_alias (__ldexpl, ldexpl)