]> pd.if.org Git - pdclib/blob - functions/math/remainder.c
08f167adf71ae072abf89002ca9f0c5a6a3e3bd4
[pdclib] / functions / math / remainder.c
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7
8 double remainder( double x, double y ) { /* TODO */ };
9
10 /* Therx code
11 {
12     return fmod( x, y );
13 }
14 */
15
16 float remainderf( float x, float y ) { /* TODO */ };
17 long double remainderl( long double x, long double y ) { /* TODO */ };