diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2002-12-08 01:46:42 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2002-12-08 01:46:42 +0000 |
commit | 009bcda6f9b8d82fc94ebc976c94485a77296bf7 (patch) | |
tree | 2a0b5d9ce51801f6f290fd784ee735afaf8ed329 /winsup/mingw/include/math.h | |
parent | 4c49b9a2a5bf6ca7173aaf047ae2c14cc425ee46 (diff) | |
download | cygnal-009bcda6f9b8d82fc94ebc976c94485a77296bf7.tar.gz cygnal-009bcda6f9b8d82fc94ebc976c94485a77296bf7.tar.bz2 cygnal-009bcda6f9b8d82fc94ebc976c94485a77296bf7.zip |
* 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.
Diffstat (limited to 'winsup/mingw/include/math.h')
-rw-r--r-- | winsup/mingw/include/math.h | 12 |
1 files changed, 11 insertions, 1 deletions
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 */ |