#include "libm.h"
-static const double one = 1.0, Zero[] = {0.0, -0.0,};
+static const double Zero[] = {0.0, -0.0,};
double fmod(double x, double y)
{
lx = hx>>(n-32); hx = sx;
}
INSERT_WORDS(x, hx|sx, lx);
- x *= one; /* create necessary signal */
}
return x; /* exact output */
}
#include "libm.h"
-static const float one = 1.0, Zero[] = {0.0, -0.0,};
+static const float Zero[] = {0.0, -0.0,};
float fmodf(float x, float y)
{
n = -126 - iy;
hx >>= n;
SET_FLOAT_WORD(x, hx|sx);
- x *= one; /* create necessary signal */
}
return x; /* exact output */
}
#define MANL_SHIFT (LDBL_MANL_SIZE - 1)
-static const long double one = 1.0, Zero[] = {0.0, -0.0,};
+static const long double Zero[] = {0.0, -0.0,};
/*
* fmodl(x,y)
} else {
ux.bits.exp = iy + BIAS;
}
- x = ux.e * one; /* create necessary signal */
- return x; /* exact output */
+ return ux.e; /* exact output */
}
#endif