/* ---------------------------------------------------------------------------- * $Id$ * ---------------------------------------------------------------------------- * Public Domain C Library - http://pdclib.sourceforge.net * This code is Public Domain. Use, modify, and redistribute at will. * --------------------------------------------------------------------------*/ double fdim( double x, double y ) { /* TODO */ }; /* Therx code { return ( ( x - y ) < 1 ) ? 0 : x - y; } */ float fdimf( float x, float y ) { /* TODO */ }; long double fdiml( long double x, long double y ) { /* TODO */ };