mirror of
https://github.com/corda/corda.git
synced 2025-02-03 17:50:41 +00:00
6662022bf8
Signed-off-by: Li, Xun <xun.li@email.com>
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);
|
|
}
|