summary refs log tree commit diff
path: root/math/s_cproj.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/s_cproj.c')
-rw-r--r--math/s_cproj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/s_cproj.c b/math/s_cproj.c
index bf2cfc472d..42bf076334 100644
--- a/math/s_cproj.c
+++ b/math/s_cproj.c
@@ -25,7 +25,7 @@
 __complex__ double
 __cproj (__complex__ double x)
 {
-  if (__isinf_ns (__real__ x) || __isinf_ns (__imag__ x))
+  if (isinf (__real__ x) || isinf (__imag__ x))
     {
       __complex__ double res;