diff options
Diffstat (limited to 'math/w_remainder.c')
-rw-r--r-- | math/w_remainder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/w_remainder.c b/math/w_remainder.c index 9be4dfd50b..a6da1921dc 100644 --- a/math/w_remainder.c +++ b/math/w_remainder.c @@ -25,7 +25,7 @@ double __remainder (double x, double y) { if (((__builtin_expect (y == 0.0, 0) && ! isnan (x)) - || (__builtin_expect (__isinf_ns (x), 0) && ! isnan (y))) + || (__builtin_expect (isinf (x), 0) && ! isnan (y))) && _LIB_VERSION != _IEEE_) return __kernel_standard (x, y, 28); /* remainder domain */ |