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