]> pd.if.org Git - pdclib/blobdiff - functions/math/remainder.c
Merged PDPCLIB and Therx code.
[pdclib] / functions / math / remainder.c
index a12aaa970651842fd807bedf589fea6a6f92ece3..8772a8caae8e96bc558b8b8c8b72a8317473a675 100644 (file)
@@ -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 */ };