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