diff options
Diffstat (limited to 'lib/msun/src/e_fmod.c')
| -rw-r--r-- | lib/msun/src/e_fmod.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/msun/src/e_fmod.c b/lib/msun/src/e_fmod.c index f16863072963..48a2e95efcf2 100644 --- a/lib/msun/src/e_fmod.c +++ b/lib/msun/src/e_fmod.c @@ -23,18 +23,10 @@ static char rcsid[] = "$FreeBSD$"; #include "math.h" #include "math_private.h" -#ifdef __STDC__ static const double one = 1.0, Zero[] = {0.0, -0.0,}; -#else -static double one = 1.0, Zero[] = {0.0, -0.0,}; -#endif -#ifdef __STDC__ - double __generic___ieee754_fmod(double x, double y) -#else - double __generic___ieee754_fmod(x,y) - double x,y ; -#endif +double +__generic___ieee754_fmod(double x, double y) { int32_t n,hx,hy,hz,ix,iy,sx,i; u_int32_t lx,ly,lz; |
