summaryrefslogtreecommitdiff
path: root/math/s_cprojl.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/s_cprojl.c')
-rw-r--r--math/s_cprojl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/s_cprojl.c b/math/s_cprojl.c
index 32292a4a6d..213b73331a 100644
--- a/math/s_cprojl.c
+++ b/math/s_cprojl.c
@@ -1,5 +1,5 @@
/* Compute projection of complex long double value to Riemann sphere.
- Copyright (C) 1997-2015 Free Software Foundation, Inc.
+ Copyright (C) 1997-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@@ -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;