X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fcomplex%2Fcpow.c;h=59753671363c14071db79549604c599ac3b340f4;hb=b2b5e5de72c2979464ac211460210ccf77a25d51;hp=54089dfcfe2fefe0f241a033676a59ceb5f6eed2;hpb=d7cc1957de74235bd2a84c1ef26ecab2368f57e4;p=pdclib.old diff --git a/functions/complex/cpow.c b/functions/complex/cpow.c index 54089df..5975367 100644 --- a/functions/complex/cpow.c +++ b/functions/complex/cpow.c @@ -5,16 +5,6 @@ // 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 - double _Complex cpow( double _Complex x, double _Complex y ) { /* TODO */ }; float _Complex cpowf( float _Complex x, float _Complex y ) { /* TODO */ }; long double _Complex cpowl( long double _Complex x, long double _Complex y ) { /* TODO */ };