]> pd.if.org Git - pdclib/blob - functions/math/scalbn.c
88d882bb9ac5aa676e02271a1fcb9fb352b5b2c4
[pdclib] / functions / math / scalbn.c
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7
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 */ };
11
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 */ };