diff options
Diffstat (limited to 'math/w_fmodl.c')
-rw-r--r-- | math/w_fmodl.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/math/w_fmodl.c b/math/w_fmodl.c index 7b9a297cfd..c39b2852f6 100644 --- a/math/w_fmodl.c +++ b/math/w_fmodl.c @@ -39,8 +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(y==0.0) { - return __kernel_standard(x,y,227); /* fmod(x,0) */ + if(__isinfl(x)||y==0.0) { + /* fmodl(+-Inf,y) or fmodl(x,0) */ + return __kernel_standard(x,y,227); } else return z; #endif |