diff options
Diffstat (limited to 'math/s_cprojl.c')
-rw-r--r-- | math/s_cprojl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/s_cprojl.c b/math/s_cprojl.c index 32292a4a6d..de8831817a 100644 --- a/math/s_cprojl.c +++ b/math/s_cprojl.c @@ -25,7 +25,7 @@ __complex__ long double __cprojl (__complex__ long double x) { - if (__isinf_nsl (__real__ x) || __isinf_nsl (__imag__ x)) + if (isinf (__real__ x) || isinf (__imag__ x)) { __complex__ long double res; |