// ---------------------------------------------------------------------------- // $Id$ // ---------------------------------------------------------------------------- // Public Domain C Library - http://pdclib.sourceforge.net // This code is Public Domain. Use, modify, and redistribute at will. // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- // C++ bool isgreaterequal( float x, float y ) { /* TODO */ }; bool isgreaterequal( double x, double y ) { /* TODO */ }; bool isgreaterequal( long double x, long double y ) { /* TODO */ };