]> pd.if.org Git - pdclib/blobdiff - functions/complex/cpow.c
Re-import from Subversion.
[pdclib] / functions / complex / cpow.c
index 54089dfcfe2fefe0f241a033676a59ceb5f6eed2..3f6313aecf70c17e64a9bda6c441b741d00465f1 100644 (file)
@@ -1,19 +1,9 @@
-// ----------------------------------------------------------------------------
-// $Id$
-// ----------------------------------------------------------------------------
-// Public Domain C Library - http://pdclib.sourceforge.net
-// This code is Public Domain. Use, modify, and redistribute at will.
-// ----------------------------------------------------------------------------
-
-// ----------------------------------------------------------------------------
-// C++
-
-double _Complex pow( double _Complex x, double _Complex y ) { /* TODO */ };
-float _Complex pow( float _Complex x, float _Complex y ) { /* TODO */ };
-long double _Complex pow( long double _Complex x, long double _Complex y ) { /* TODO */ };
-
-// ----------------------------------------------------------------------------
-// Standard C
+/* ----------------------------------------------------------------------------
+ * $Id$
+ * ----------------------------------------------------------------------------
+ * Public Domain C Library - http://pdclib.sourceforge.net
+ * This code is Public Domain. Use, modify, and redistribute at will.
+ * --------------------------------------------------------------------------*/
 
 double _Complex cpow( double _Complex x, double _Complex y ) { /* TODO */ };
 float _Complex cpowf( float _Complex x, float _Complex y ) { /* TODO */ };