// ---------------------------------------------------------------------------- // $Id$ // ---------------------------------------------------------------------------- // Public Domain C Library - http://pdclib.sourceforge.net // This code is Public Domain. Use, modify, and redistribute at will. // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- // C++ float fmax( float x, float y ) { /* TODO */ }; long double fmax( long double x, long double y ) { /* TODO */ }; // ---------------------------------------------------------------------------- // Standard C double fmax( double x, double y ) { /* TODO */ }; /* Therx code { return ( x > y ) ? x : y; } */ float fmaxf( float x, float y ) { /* TODO */ }; long double fmaxl( long double x, long double y ) { /* TODO */ };