]> pd.if.org Git - pdclib/blobdiff - functions/math/log.c
Introducing personalities. Removing C++ function decs / defs.
[pdclib] / functions / math / log.c
index 47c25ce4c721083386451922218e82db98395b41..fce90a73f0c7736b6f5dd716a74d2b74a93a1610 100644 (file)
@@ -5,30 +5,6 @@
 // This code is Public Domain. Use, modify, and redistribute at will.
 // ----------------------------------------------------------------------------
 
-// ----------------------------------------------------------------------------
-// C++
-
-float log( float x ) { /* TODO */ };
-long double log( long double x ) { /* TODO */ };
-
-float log10( float x ) { /* TODO */ };
-long double log10( long double x ) { /* TODO */ };
-
-float log2( float x ) { /* TODO */ };
-long double log2( long double x ) { /* TODO */ };
-
-float logb( float x ) { /* TODO */ };
-long double logb( long double x ) { /* TODO */ };
-
-int ilogb( float x ) { /* TODO */ };
-int ilogb( long double x ) { /* TODO */ };
-
-float log1p( float x ) { /* TODO */ };
-long double log1p( long double x ) { /* TODO */ };
-
-// ----------------------------------------------------------------------------
-// Standard C
-
 double log( double x ) { /* TODO */ };
 float logf( float x ) { /* TODO */ };
 long double logl( long double x ) { /* TODO */ };