X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Fscalbn.c;h=88d882bb9ac5aa676e02271a1fcb9fb352b5b2c4;hb=b2b5e5de72c2979464ac211460210ccf77a25d51;hp=835be8ec1986176d5101cefbe2a5395c37da3f1e;hpb=d7cc1957de74235bd2a84c1ef26ecab2368f57e4;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 */ };