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