summaryrefslogtreecommitdiff
path: root/math/s_cprojf.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/s_cprojf.c')
-rw-r--r--math/s_cprojf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/s_cprojf.c b/math/s_cprojf.c
index 531d10e14f..8a0d873fdc 100644
--- a/math/s_cprojf.c
+++ b/math/s_cprojf.c
@@ -1,5 +1,5 @@
/* Compute projection of complex float 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__ float
__cprojf (__complex__ float x)
{
- if (__isinf_nsf (__real__ x) || __isinf_nsf (__imag__ x))
+ if (isinf (__real__ x) || isinf (__imag__ x))
{
__complex__ float res;