mirror of
https://github.com/corda/corda.git
synced 2025-01-23 21:08:48 +00:00
15 lines
213 B
C
15 lines
213 B
C
|
/*
|
||
|
* dremf() wrapper for remainderf().
|
||
|
*
|
||
|
* Written by J.T. Conklin, <jtc@wimsey.com>
|
||
|
* Placed into the Public Domain, 1994.
|
||
|
*/
|
||
|
|
||
|
#include "math.h"
|
||
|
|
||
|
float
|
||
|
dremf(float x, float y)
|
||
|
{
|
||
|
return remainderf(x, y);
|
||
|
}
|