1 // ----------------------------------------------------------------------------
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
8 double scalbn( double x, int ex ) { /* TODO */ };
9 float scalbnf( float x, int ex ) { /* TODO */ };
10 long double scalbnl( long double x, int ex ) { /* TODO */ };
12 double scalbln( double x, long ex ) { /* TODO */ };
13 float scalblnf( float x, long ex ) { /* TODO */ };
14 long double scalblnl( long double x, long ex ) { /* TODO */ };