Update.
[glibc.git] / sysdeps / libm-ieee754 / s_clogl.c
bloba299a95c037b3e869cdd3d0c8e6bdb9741e024f7
1 /* Compute complex natural logarithm.
2 Copyright (C) 1997 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #include <complex.h>
22 #include <math.h>
24 #include "math_private.h"
27 __complex__ long double
28 __clogl (__complex__ long double x)
30 __complex__ long double result;
32 if (__real__ x == 0.0 && __imag__ x == 0.0)
34 __imag__ result = signbit (__real__ x) ? M_PI : 0.0;
35 if (signbit (__imag__ x))
36 __imag__ result = __copysignl (__imag__ result, -1.0);
37 /* Yes, the following line raises an exception. */
38 __real__ result = -1.0 / fabsl (__real__ x);
40 else if (!__isnanl (__real__ x) && !__isnanl (__imag__ x))
42 __real__ result = __ieee754_logl (__ieee754_hypotl (__real__ x,
43 __imag__ x));
44 __imag__ result = __ieee754_atan2l (__imag__ x, __real__ x);
46 else
48 __imag__ result = __nanl ("");
49 if (__isinfl (__real__ x) || __isinfl (__imag__ x))
50 __real__ result = HUGE_VALL;
51 else
52 __real__ result = __nanl ("");
55 return result;
57 weak_alias (__clogl, clogl)