summaryrefslogtreecommitdiff
path: root/libc/math/s_casinl.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/math/s_casinl.c')
-rw-r--r--libc/math/s_casinl.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/math/s_casinl.c b/libc/math/s_casinl.c
index f303c05ae..431e9a241 100644
--- a/libc/math/s_casinl.c
+++ b/libc/math/s_casinl.c
@@ -1,5 +1,5 @@
/* Return arc sine of complex long double value.
- Copyright (C) 1997 Free Software Foundation, Inc.
+ Copyright (C) 1997, 2011 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@@ -20,6 +20,7 @@
#include <complex.h>
#include <math.h>
+#include <math_private.h>
__complex__ long double
@@ -33,7 +34,7 @@ __casinl (__complex__ long double x)
{
res = x;
}
- else if (__isinfl (__real__ x) || __isinfl (__imag__ x))
+ else if (__isinf_nsl (__real__ x) || __isinf_nsl (__imag__ x))
{
__real__ res = __nanl ("");
__imag__ res = __copysignl (HUGE_VALL, __imag__ x);