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