ack/lang/cem/libcc.ansi/math/fmod.c

35 lines
627 B
C
Raw Normal View History

1993-08-31 10:54:08 +00:00
/* fmod function */
/* Author Robert R. Hall (hall@crach.cts.com) */
1994-06-24 14:02:31 +00:00
/* $Id$ */
1993-08-31 10:54:08 +00:00
#include <math.h>
#include <errno.h>
double
1993-08-31 10:54:08 +00:00
(fmod)(double x, double y)
{ /* compute fmod(x, y) */
double t;
int n, neg;
int ychar, xchar;
1993-08-31 10:54:08 +00:00
if (y == 0.0) {
errno = EDOM;
1993-08-31 10:54:08 +00:00
return 0.0;
}
/* fmod(finite, finite) */
if (y < 0.0) y = -y;
if (x < 0.0) x = -x, neg = 1;
else neg = 0;
t = frexp(y, &ychar);
/* substract |y| until |x| < |y| */
1993-08-31 10:54:08 +00:00
t = frexp(x, &xchar);
for (n = xchar - ychar; 0 <= n; --n) {
/* try to substract |y|*2^n */
t = ldexp(y, n);
if (t <= x) x -= t;
}
1993-08-31 10:54:08 +00:00
return (neg ? -x : x);
}