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