X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fcomplex%2Fcpow.c;h=3f6313aecf70c17e64a9bda6c441b741d00465f1;hp=54089dfcfe2fefe0f241a033676a59ceb5f6eed2;hb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;hpb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec diff --git a/functions/complex/cpow.c b/functions/complex/cpow.c index 54089df..3f6313a 100644 --- a/functions/complex/cpow.c +++ b/functions/complex/cpow.c @@ -1,19 +1,9 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- - -// ---------------------------------------------------------------------------- -// C++ - -double _Complex pow( double _Complex x, double _Complex y ) { /* TODO */ }; -float _Complex pow( float _Complex x, float _Complex y ) { /* TODO */ }; -long double _Complex pow( long double _Complex x, long double _Complex y ) { /* TODO */ }; - -// ---------------------------------------------------------------------------- -// Standard C +/* ---------------------------------------------------------------------------- + * $Id$ + * ---------------------------------------------------------------------------- + * Public Domain C Library - http://pdclib.sourceforge.net + * This code is Public Domain. Use, modify, and redistribute at will. + * --------------------------------------------------------------------------*/ double _Complex cpow( double _Complex x, double _Complex y ) { /* TODO */ }; float _Complex cpowf( float _Complex x, float _Complex y ) { /* TODO */ };