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