From 009bcda6f9b8d82fc94ebc976c94485a77296bf7 Mon Sep 17 00:00:00 2001 From: Danny Smith Date: Sun, 8 Dec 2002 01:46:42 +0000 Subject: * 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. --- winsup/mingw/include/math.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'winsup/mingw/include/math.h') diff --git a/winsup/mingw/include/math.h b/winsup/mingw/include/math.h index 15766cd27..4d3295eab 100644 --- a/winsup/mingw/include/math.h +++ b/winsup/mingw/include/math.h @@ -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 */ -- cgit v1.2.3