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