]> pd.if.org Git - pdclib/blob - math/remainder.c
Cosmetic comment fixes.
[pdclib] / 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 // ----------------------------------------------------------------------------
9 // C++
10
11 float remainder( float x, float y ) { /* TODO */ };
12 long double remainder( long double x, long double y ) { /* TODO */ };
13
14 // ----------------------------------------------------------------------------
15 // Standard C
16
17 double remainder( double x, double y ) { /* TODO */ };
18
19 /* Therx code
20 {
21     return fmod( x, y );
22 }
23 */
24
25 float remainderf( float x, float y ) { /* TODO */ };
26 long double remainderl( long double x, long double y ) { /* TODO */ };