* mingwex/math/s_erf.c: New file.

* mingwex/math/sf_erf.c: New file.
	* mingwex/Makefile.in (MATH_DISTFILES): Add new files.
	(MATH_OBJS): Add new objects.
	* include/math.h (erf[f]): Add prototypes.
	(erfc[f]): Add prototypes.
This commit is contained in:
Danny Smith
2002-12-08 01:46:42 +00:00
parent 4c49b9a2a5
commit 009bcda6f9
5 changed files with 629 additions and 9 deletions

View File

@ -518,9 +518,19 @@ extern long double powl (long double, long double);
extern float sqrtf (float);
extern long double sqrtl (long double);
/* TODO */
/* 7.12.8.1 The erf functions */
extern double erf (double);
extern float erff (float);
/* TODO
extern long double erfl (long double);
*/
/* 7.12.8.2 The erfc functions */
extern double erfc (double);
extern float erfcf (float);
/* TODO
extern long double erfcl (long double);
*/
/* 7.12.8.3 The lgamma functions */