2011-08-12 21:01:25 +02:00
|
|
|
/*
|
|
|
|
* drem() wrapper for remainder().
|
|
|
|
*
|
|
|
|
* Written by J.T. Conklin, <jtc@wimsey.com>
|
|
|
|
* Placed into the Public Domain, 1994.
|
|
|
|
*/
|
|
|
|
|
2011-12-15 06:59:35 +01:00
|
|
|
#include <math.h>
|
2011-08-12 21:01:25 +02:00
|
|
|
|
|
|
|
double
|
|
|
|
drem(x, y)
|
|
|
|
double x, y;
|
|
|
|
{
|
|
|
|
return remainder(x, y);
|
|
|
|
}
|