diff options
Diffstat (limited to 'sysdeps/libm-ieee754/s_cacosl.c')
-rw-r--r-- | sysdeps/libm-ieee754/s_cacosl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/libm-ieee754/s_cacosl.c b/sysdeps/libm-ieee754/s_cacosl.c index 7a60de5a50..40ad812aa1 100644 --- a/sysdeps/libm-ieee754/s_cacosl.c +++ b/sysdeps/libm-ieee754/s_cacosl.c @@ -1,5 +1,5 @@ /* Return cosine of complex long double value. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -29,7 +29,7 @@ __cacosl (__complex__ long double x) y = __casinl (x); - __real__ res = M_PI_2 - __real__ y; + __real__ res = M_PI_2l - __real__ y; __imag__ res = -__imag__ y; return res; |