~ubuntu-branches/ubuntu/precise/eglibc/precise-201308281639

« back to all changes in this revision

Viewing changes to math/w_atan2l.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-02-08 01:58:09 UTC
  • mfrom: (1.5.3) (288.1.12 precise)
  • Revision ID: package-import@ubuntu.com-20120208015809-ulscst7uteq3e22z
Tags: 2.15~pre6-0ubuntu10
Merge from Debian (r5151, 2.13-26).

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
 */
5
 
 
6
 
/*
7
 
 * ====================================================
8
 
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
9
 
 *
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
 
 * ====================================================
15
 
 */
16
 
 
17
 
#if defined(LIBM_SCCS) && !defined(lint)
18
 
static char rcsid[] = "$NetBSD: $";
19
 
#endif
 
1
/* Copyright (C) 2011 Free Software Foundation, Inc.
 
2
   This file is part of the GNU C Library.
 
3
   Contributed by Ulrich Drepper <drepper@gmail.com>, 2011.
 
4
 
 
5
   The GNU C Library is free software; you can redistribute it and/or
 
6
   modify it under the terms of the GNU Lesser General Public
 
7
   License as published by the Free Software Foundation; either
 
8
   version 2.1 of the License, or (at your option) any later version.
 
9
 
 
10
   The GNU C Library is distributed in the hope that it will be useful,
 
11
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
   Lesser General Public License for more details.
 
14
 
 
15
   You should have received a copy of the GNU Lesser General Public
 
16
   License along with the GNU C Library; if not, write to the Free
 
17
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 
18
   02111-1307 USA.  */
20
19
 
21
20
/*
22
21
 * wrapper atan2l(y,x)
23
22
 */
24
23
 
25
24
#include <math.h>
26
 
#include "math_private.h"
27
 
 
28
 
 
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
 
25
#include <math_private.h>
 
26
 
 
27
 
 
28
long double
 
29
__atan2l (long double y, long double x)
35
30
{
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
 
31
  if (__builtin_expect (x == 0.0L && y == 0.0L, 0) && _LIB_VERSION == _SVID_)
 
32
    return __kernel_standard (y, x, 203); /* atan2(+-0,+-0) */
 
33
 
 
34
  return __ieee754_atan2l (y, x);
46
35
}
47
36
weak_alias (__atan2l, atan2l)