diff options
Diffstat (limited to 'math/s_casinl.c')
-rw-r--r-- | math/s_casinl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/s_casinl.c b/math/s_casinl.c index 2263a26b42..f7d85fc274 100644 --- a/math/s_casinl.c +++ b/math/s_casinl.c @@ -33,7 +33,7 @@ __casinl (__complex__ long double x) { res = x; } - else if (__isinf_nsl (__real__ x) || __isinf_nsl (__imag__ x)) + else if (isinf (__real__ x) || isinf (__imag__ x)) { __real__ res = __nanl (""); __imag__ res = __copysignl (HUGE_VALL, __imag__ x); |