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