// ---------------------------------------------------------------------------- // $Id$ // ---------------------------------------------------------------------------- // Public Domain C Library - http://pdclib.sourceforge.net // This code is Public Domain. Use, modify, and redistribute at will. // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- // C++ float remainder( float x, float y ) { /* TODO */ }; 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 */ };