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

« back to all changes in this revision

Viewing changes to ports/sysdeps/m68k/m680x0/fpu/e_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
 
/* Copyright (C) 1996, 1997, 1999 Free Software Foundation, Inc.
 
1
/* Copyright (C) 1996, 1997, 1999, 2011 Free Software Foundation, Inc.
2
2
   This file is part of the GNU C Library.
3
3
 
4
4
   The GNU C Library is free software; you can redistribute it and/or
21
21
#include "mathimpl.h"
22
22
 
23
23
#ifndef FUNC
24
 
#define FUNC __ieee754_fmod
 
24
# define FUNC __ieee754_fmod
 
25
# define FUNC_FINITE __fmod_finite
25
26
#endif
26
27
#ifndef float_type
27
 
#define float_type double
 
28
# define float_type double
28
29
#endif
29
30
 
30
31
float_type
34
35
{
35
36
  return __m81_u(FUNC)(x, y);
36
37
}
 
38
#ifdef FUNC_FINITE
 
39
strong_alias (FUNC, FUNC_FINITE)
 
40
#endif