corda/sdk/tlibc/math/w_drem.c

15 lines
212 B
C
Raw Normal View History

/*
* drem() wrapper for remainder().
*
* Written by J.T. Conklin, <jtc@wimsey.com>
* Placed into the Public Domain, 1994.
*/
#include <math.h>
double
drem(double x, double y)
{
return remainder(x, y);
}