]> pd.if.org Git - pdclib.old/blobdiff - functions/math/scalbn.c
Introducing personalities. Removing C++ function decs / defs.
[pdclib.old] / functions / math / scalbn.c
index 835be8ec1986176d5101cefbe2a5395c37da3f1e..88d882bb9ac5aa676e02271a1fcb9fb352b5b2c4 100644 (file)
@@ -5,18 +5,6 @@
 // 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
-
 double scalbn( double x, int ex ) { /* TODO */ };
 float scalbnf( float x, int ex ) { /* TODO */ };
 long double scalbnl( long double x, int ex ) { /* TODO */ };