]> pd.if.org Git - pdclib/blobdiff - functions/math/scalbn.c
Re-import from Subversion.
[pdclib] / functions / math / scalbn.c
index 835be8ec1986176d5101cefbe2a5395c37da3f1e..cfcd5e2f30b0b23aec8d7b5d875a166195c8875b 100644 (file)
@@ -1,21 +1,9 @@
-// ----------------------------------------------------------------------------
-// $Id$
-// ----------------------------------------------------------------------------
-// Public Domain C Library - http://pdclib.sourceforge.net
-// This code is Public Domain. Use, modify, and redistribute at will.
-// ----------------------------------------------------------------------------
-
-// ----------------------------------------------------------------------------
-// C++
-
-float scalbn( float x, int ex ) { /* TODO */ };
-long double scalbn( long double x, int ex ) { /* TODO */ };
-
-float scalbln( float x, long ex ) { /* TODO */ };
-long double scalbln( long double x, long ex ) { /* TODO */ };
-
-// ----------------------------------------------------------------------------
-// Standard C
+/* ----------------------------------------------------------------------------
+ * $Id$
+ * ----------------------------------------------------------------------------
+ * Public Domain C Library - http://pdclib.sourceforge.net
+ * This code is Public Domain. Use, modify, and redistribute at will.
+ * --------------------------------------------------------------------------*/
 
 double scalbn( double x, int ex ) { /* TODO */ };
 float scalbnf( float x, int ex ) { /* TODO */ };