mirror of
https://github.com/corda/corda.git
synced 2025-02-02 17:21:06 +00:00
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);
|
||
|
}
|