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