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

« back to all changes in this revision

Viewing changes to math/w_fmod.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_fmod.c 5.1 93/09/24 */
2
 
/*
3
 
 * ====================================================
4
 
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5
 
 *
6
 
 * Developed at SunPro, a Sun Microsystems, Inc. business.
7
 
 * Permission to use, copy, modify, and distribute this
8
 
 * software is freely granted, provided that this notice
9
 
 * is preserved.
10
 
 * ====================================================
11
 
 */
12
 
 
13
 
#if defined(LIBM_SCCS) && !defined(lint)
14
 
static char rcsid[] = "$NetBSD: w_fmod.c,v 1.6 1995/05/10 20:48:55 jtc Exp $";
15
 
#endif
16
 
 
17
 
/*
18
 
 * wrapper fmod(x,y)
19
 
 */
 
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
#include <math.h>
22
 
#include "math_private.h"
23
 
 
24
 
 
25
 
#ifdef __STDC__
26
 
        double __fmod(double x, double y)       /* wrapper fmod */
27
 
#else
28
 
        double __fmod(x,y)              /* wrapper fmod */
29
 
        double x,y;
30
 
#endif
 
21
#include <math_private.h>
 
22
 
 
23
/* wrapper fmod */
 
24
double
 
25
__fmod (double x, double y)
31
26
{
32
 
#ifdef _IEEE_LIBM
33
 
        return __ieee754_fmod(x,y);
34
 
#else
35
 
        double z;
36
 
        z = __ieee754_fmod(x,y);
37
 
        if(_LIB_VERSION == _IEEE_ ||__isnan(y)||__isnan(x)) return z;
38
 
        if(__isinf(x)||y==0.0) {
39
 
                /* fmod(+-Inf,y) or fmod(x,0) */
40
 
                return __kernel_standard(x,y,27);
41
 
        } else
42
 
            return z;
43
 
#endif
 
27
  if (__builtin_expect (__isinf_ns (x) || y == 0.0, 0)
 
28
      && _LIB_VERSION != _IEEE_ && !__isnan (y) && !__isnan (x))
 
29
    /* fmod(+-Inf,y) or fmod(x,0) */
 
30
    return __kernel_standard (x, y, 27);
 
31
 
 
32
  return __ieee754_fmod (x, y);
44
33
}
45
34
weak_alias (__fmod, fmod)
46
35
#ifdef NO_LONG_DOUBLE