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