about summary refs log tree commit diff
path: root/math/w_fmodl.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_fmodl.c')
-rw-r--r--math/w_fmodl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/w_fmodl.c b/math/w_fmodl.c
index c95e23293b..ffc77adf09 100644
--- a/math/w_fmodl.c
+++ b/math/w_fmodl.c
@@ -39,9 +39,9 @@ static char rcsid[] = "$NetBSD: $";
 	long double z;
 	z = __ieee754_fmodl(x,y);
 	if(_LIB_VERSION == _IEEE_ ||__isnanl(y)||__isnanl(x)) return z;
-	if(__isinfl(x)||y==0.0) {
+	if(__isinf_nsl(x)||y==0.0) {
 		/* fmodl(+-Inf,y) or fmodl(x,0) */
-	        return __kernel_standard(x,y,227);
+		return __kernel_standard(x,y,227);
 	} else
 	    return z;
 #endif