]> pd.if.org Git - pdclib/blob - functions/math/gamma.c
Added template implementation files.
[pdclib] / functions / math / gamma.c
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7
8 // ----------------------------------------------------------------------------
9 // C++
10
11 float lgamma( float x ) { /* TODO */ };
12 long double lgamma( long double x ) { /* TODO */ };
13
14 float tgamma( float x ) { /* TODO */ };
15 long double tgamma( long double x ) { /* TODO */ };
16
17 // ----------------------------------------------------------------------------
18 // Standard C
19
20 double lgamma( double x ) { /* TODO */ };
21 float lgammaf( float x ) { /* TODO */ };
22 long double lgammal( long double x ) { /* TODO */ };
23
24 double tgamma( double x ) { /* TODO */ };
25 float tgammaf( float x ) { /* TODO */ };
26 long double tgammal( long double x ) { /* TODO */ };