]> pd.if.org Git - pdclib/blob - functions/math/erf.c
Re-import from Subversion.
[pdclib] / functions / math / erf.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 double erf( double x ) { /* TODO */ };
9 float erff( float x ) { /* TODO */ };
10 long double erfl( long double x ) { /* TODO */ };
11
12 double erfc( double x ) { /* TODO */ };
13 float erfcf( float x ) { /* TODO */ };
14 long double erfcl( long double x ) { /* TODO */ };