// ---------------------------------------------------------------------------- // $Id$ // ---------------------------------------------------------------------------- // Public Domain C Library - http://pdclib.sourceforge.net // This code is Public Domain. Use, modify, and redistribute at will. // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- // C++ float nearbyint( float x ) { /* TODO */ }; long double nearbyint( long double x ) { /* TODO */ }; // ---------------------------------------------------------------------------- // Standard C double nearbyint( double x ) { /* TODO */ }; /* Therx code { return round( x ); } */ float nearbyintf( float x ) { /* TODO */ }; long double nearbyintl( long double x ) { /* TODO */ };