mirror of
https://github.com/corda/corda.git
synced 2025-02-01 00:45:59 +00:00
6662022bf8
Signed-off-by: Li, Xun <xun.li@email.com>
15 lines
212 B
C
15 lines
212 B
C
/*
|
|
* 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);
|
|
}
|