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