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