Update.
[glibc.git] / sysdeps / libm-ieee754 / s_clogf.c
blob4eafc82bf0259a08dc7cc35dde527afad9790281
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__ float
28 __clogf (__complex__ float x)
30 __complex__ float 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 = __copysignf (__imag__ result, -1.0);
37 /* Yes, the following line raises an exception. */
38 __real__ result = -1.0 / fabsf (__real__ x);
40 else if (!__isnanf (__real__ x) && !__isnanf (__imag__ x))
42 __real__ result = __ieee754_logf (__ieee754_hypotf (__real__ x,
43 __imag__ x));
44 __imag__ result = __ieee754_atan2f (__imag__ x, __real__ x);
46 else
48 __imag__ result = __nanf ("");
49 if (__isinff (__real__ x) || __isinff (__imag__ x))
50 __real__ result = HUGE_VALF;
51 else
52 __real__ result = __nanf ("");
55 return result;
57 weak_alias (__clogf, clogf)