Support binutils 2.20.
[glibc/nacl-glibc.git] / math / w_atan2l.c
blob9672e9615fdb70225de8e2a9a793ed2fe1636bfa
1 /* w_atan2l.c -- long double version of w_atan2.c.
2 * Conversion to long double by Ulrich Drepper,
3 * Cygnus Support, drepper@cygnus.com.
4 */
6 /*
7 * ====================================================
8 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
10 * Developed at SunPro, a Sun Microsystems, Inc. business.
11 * Permission to use, copy, modify, and distribute this
12 * software is freely granted, provided that this notice
13 * is preserved.
14 * ====================================================
17 #if defined(LIBM_SCCS) && !defined(lint)
18 static char rcsid[] = "$NetBSD: $";
19 #endif
22 * wrapper atan2l(y,x)
25 #include <math.h>
26 #include "math_private.h"
29 #ifdef __STDC__
30 long double __atan2l(long double y, long double x) /* wrapper atan2l */
31 #else
32 long double __atan2l(y,x) /* wrapper atan2l */
33 long double y,x;
34 #endif
36 #ifdef _IEEE_LIBM
37 return __ieee754_atan2l(y,x);
38 #else
39 long double z;
40 z = __ieee754_atan2l(y,x);
41 if(_LIB_VERSION != _SVID_||__isnanl(x)||__isnanl(y)) return z;
42 if(x==0.0&&y==0.0)
43 return __kernel_standard(y,x,203); /* atan2(+-0,+-0) */
44 return z;
45 #endif
47 weak_alias (__atan2l, atan2l)