X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fcomplex%2Fcsqrt.c;h=af119b546a8ca95ab3f48a149081b4256b2c73f4;hb=e081ed1387e0c27dc689c8e32fdda06039544107;hp=6ac90b13fd80269bd27f7b62d3d343d201647cfa;hpb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec;p=pdclib diff --git a/functions/complex/csqrt.c b/functions/complex/csqrt.c index 6ac90b1..af119b5 100644 --- a/functions/complex/csqrt.c +++ b/functions/complex/csqrt.c @@ -5,16 +5,6 @@ // 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 */ };