]> pd.if.org Git - pdclib/blobdiff - functions/complex/csqrt.c
Introducing personalities. Removing C++ function decs / defs.
[pdclib] / functions / complex / csqrt.c
index 6ac90b13fd80269bd27f7b62d3d343d201647cfa..af119b546a8ca95ab3f48a149081b4256b2c73f4 100644 (file)
@@ -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 */ };