X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Fgamma.c;h=a9dab9d47065b9c26b0f30aeccd1381fcd2c01c6;hb=c8f799d852e3698468a78954d82588e841cc0b70;hp=1f032db90d7abba7f3b413d1fa0b9245ef94cb75;hpb=dcc8a8e99f69e090a03b7b868443addbc0817820;p=pdclib.old diff --git a/functions/math/gamma.c b/functions/math/gamma.c index 1f032db..a9dab9d 100644 --- a/functions/math/gamma.c +++ b/functions/math/gamma.c @@ -1,21 +1,9 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- - -// ---------------------------------------------------------------------------- -// C++ - -float lgamma( float x ) { /* TODO */ }; -long double lgamma( long double x ) { /* TODO */ }; - -float tgamma( float x ) { /* TODO */ }; -long double tgamma( long double x ) { /* TODO */ }; - -// ---------------------------------------------------------------------------- -// Standard C +/* ---------------------------------------------------------------------------- + * $Id$ + * ---------------------------------------------------------------------------- + * Public Domain C Library - http://pdclib.sourceforge.net + * This code is Public Domain. Use, modify, and redistribute at will. + * --------------------------------------------------------------------------*/ double lgamma( double x ) { /* TODO */ }; float lgammaf( float x ) { /* TODO */ };