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