]> pd.if.org Git - pdclib/blobdiff - functions/math/sqrt.c
Introducing personalities. Removing C++ function decs / defs.
[pdclib] / functions / math / sqrt.c
index 9143170b1a85d882a0e1b4e71258f7ae9c759d0a..7dd60203519089a8e5adc7e16a521813e14610ce 100644 (file)
@@ -5,15 +5,6 @@
 // This code is Public Domain. Use, modify, and redistribute at will.
 // ----------------------------------------------------------------------------
 
-// ----------------------------------------------------------------------------
-// C++
-
-float sqrt( float x ) { /* TODO */ };
-long double sqrt( long double x ) { /* TODO */ };
-
-// ----------------------------------------------------------------------------
-// Standard C
-
 double sqrt( double x ) { /* TODO */ };
 
 /* Therx code