about summary refs log tree commit diff
path: root/math/w_fmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_fmod.c')
-rw-r--r--math/w_fmod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/w_fmod.c b/math/w_fmod.c
index 69102de9c5..b93ff8935e 100644
--- a/math/w_fmod.c
+++ b/math/w_fmod.c
@@ -35,9 +35,9 @@ static char rcsid[] = "$NetBSD: w_fmod.c,v 1.6 1995/05/10 20:48:55 jtc Exp $";
 	double z;
 	z = __ieee754_fmod(x,y);
 	if(_LIB_VERSION == _IEEE_ ||__isnan(y)||__isnan(x)) return z;
-	if(__isinf(x)||y==0.0) {
+	if(__isinf_ns(x)||y==0.0) {
 		/* fmod(+-Inf,y) or fmod(x,0) */
-	        return __kernel_standard(x,y,27);
+		return __kernel_standard(x,y,27);
 	} else
 	    return z;
 #endif