1 // ----------------------------------------------------------------------------
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
8 double fmax( double x, double y ) { /* TODO */ };
12 return ( x > y ) ? x : y;
16 float fmaxf( float x, float y ) { /* TODO */ };
17 long double fmaxl( long double x, long double y ) { /* TODO */ };