X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fmath%2Fgamma.c;h=a9dab9d47065b9c26b0f30aeccd1381fcd2c01c6;hp=1f032db90d7abba7f3b413d1fa0b9245ef94cb75;hb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;hpb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec 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 */ };