X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Fremainder.c;h=8772a8caae8e96bc558b8b8c8b72a8317473a675;hb=e5456e3c2697c4e17fc9aa3439f2e305517b4d96;hp=a12aaa970651842fd807bedf589fea6a6f92ece3;hpb=dcc8a8e99f69e090a03b7b868443addbc0817820;p=pdclib.old diff --git a/functions/math/remainder.c b/functions/math/remainder.c index a12aaa9..8772a8c 100644 --- a/functions/math/remainder.c +++ b/functions/math/remainder.c @@ -15,5 +15,12 @@ long double remainder( long double x, long double y ) { /* TODO */ }; // Standard C double remainder( double x, double y ) { /* TODO */ }; + +/* Therx code +{ + return fmod( x, y ); +} +*/ + float remainderf( float x, float y ) { /* TODO */ }; long double remainderl( long double x, long double y ) { /* TODO */ };