]> pd.if.org Git - pdclib/blobdiff - functions/math/cbrt.c
Re-import from Subversion.
[pdclib] / functions / math / cbrt.c
index 86ef6906314ebf8cdac7f38ad747e2e1a90db5ce..12fc59e3c4493cf93e2f8db44636ed06817d95a1 100644 (file)
@@ -1,18 +1,9 @@
-// ----------------------------------------------------------------------------
-// $Id$
-// ----------------------------------------------------------------------------
-// Public Domain C Library - http://pdclib.sourceforge.net
-// 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
+/* ----------------------------------------------------------------------------
+ * $Id$
+ * ----------------------------------------------------------------------------
+ * Public Domain C Library - http://pdclib.sourceforge.net
+ * This code is Public Domain. Use, modify, and redistribute at will.
+ * --------------------------------------------------------------------------*/
 
 double cbrt( double x ) { /* TODO */ };