X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Fexp.c;fp=functions%2Fmath%2Fexp.c;h=0000000000000000000000000000000000000000;hb=94cec7268060142c361c882c0a54d4b0052a591c;hp=37033d227e744a702fe46aa10afaaaebc023da5d;hpb=c8f799d852e3698468a78954d82588e841cc0b70;p=pdclib.old diff --git a/functions/math/exp.c b/functions/math/exp.c deleted file mode 100644 index 37033d2..0000000 --- a/functions/math/exp.c +++ /dev/null @@ -1,38 +0,0 @@ -/* ---------------------------------------------------------------------------- - * $Id$ - * ---------------------------------------------------------------------------- - * Public Domain C Library - http://pdclib.sourceforge.net - * This code is Public Domain. Use, modify, and redistribute at will. - * --------------------------------------------------------------------------*/ - -double exp( double x ) { /* TODO */ }; -float expf( float x ) { /* TODO */ }; -long double expl( long double x ) { /* TODO */ }; - -double exp2( double x ) { /* TODO */ }; - -/* Therx code -{ - double value = 1; - for( int i = 1; i <= x; i++ ) - { - value *= 2; - } - return value; -} -*/ - -float exp2f( float x ) { /* TODO */ }; -long double exp2l( long double x ) { /* TODO */ }; - -double expm1( double x ) { /* TODO */ }; -float expm1f( float x ) { /* TODO */ }; -long double expm1l( long double x ) { /* TODO */ }; - -double frexp( double x, int * exp ) { /* TODO */ }; -float frexpf( float x, int * exp ) { /* TODO */ }; -long double frexpl( long double x, int * exp ) { /* TODO */ }; - -double ldexp( double x, int exp ) { /* TODO */ }; -float ldexpf( float x, int exp ) { /* TODO */ }; -long double ldexpl( long double x, int exp ) { /* TODO */ };