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