X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Flog.c;fp=functions%2Fmath%2Flog.c;h=0000000000000000000000000000000000000000;hb=a1f747e81dad0bb9897cb11c652403bb7bbf084c;hp=34712a5cb8fde3b43c4a9387482461b894f52edd;hpb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;p=pdclib diff --git a/functions/math/log.c b/functions/math/log.c deleted file mode 100644 index 34712a5..0000000 --- a/functions/math/log.c +++ /dev/null @@ -1,30 +0,0 @@ -/* ---------------------------------------------------------------------------- - * $Id$ - * ---------------------------------------------------------------------------- - * Public Domain C Library - http://pdclib.sourceforge.net - * This code is Public Domain. Use, modify, and redistribute at will. - * --------------------------------------------------------------------------*/ - -double log( double x ) { /* TODO */ }; -float logf( float x ) { /* TODO */ }; -long double logl( long double x ) { /* TODO */ }; - -double log10( double x ) { /* TODO */ }; -float log10f( float x ) { /* TODO */ }; -long double log10l( long double x ) { /* TODO */ }; - -double log2( double x ) { /* TODO */ }; -float log2f( float x ) { /* TODO */ }; -long double log2l( long double x ) { /* TODO */ }; - -double logb( double x ) { /* TODO */ }; -float logbf( float x ) { /* TODO */ }; -long double logbl( long double x ) { /* TODO */ }; - -int ilogb( double x ) { /* TODO */ }; -int ilogbf( float x ) { /* TODO */ }; -int ilogbl( long double x ) { /* TODO */ }; - -double log1p( double x ) { /* TODO */ }; -float log1pf( float x ) { /* TODO */ }; -long double log1pl( long double x ) { /* TODO */ };