X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Fscalbn.c;h=88d882bb9ac5aa676e02271a1fcb9fb352b5b2c4;hb=5f75278ec2ac5240da801193a7b0cf93cb02e461;hp=835be8ec1986176d5101cefbe2a5395c37da3f1e;hpb=dcc8a8e99f69e090a03b7b868443addbc0817820;p=pdclib.old diff --git a/functions/math/scalbn.c b/functions/math/scalbn.c index 835be8e..88d882b 100644 --- a/functions/math/scalbn.c +++ b/functions/math/scalbn.c @@ -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 */ };