diff options
author | kargl <kargl@FreeBSD.org> | 2014-07-13 17:05:03 +0000 |
---|---|---|
committer | kargl <kargl@FreeBSD.org> | 2014-07-13 17:05:03 +0000 |
commit | ff0ae31edc6589f375df7ded486f97d06caaa8e9 (patch) | |
tree | b7d8901b7e598886d5c7e802684110b98652231e /lib/msun/src/math.h | |
parent | 1c51afe84c8e7ee057d192f3ac03b0de8decf044 (diff) | |
download | FreeBSD-src-ff0ae31edc6589f375df7ded486f97d06caaa8e9.zip FreeBSD-src-ff0ae31edc6589f375df7ded486f97d06caaa8e9.tar.gz |
* Makefile:
. Add s_erfl.c to building libm.
. Add MLINKS for erfl.3 and erfcl.3.
* Symbol.map:
. Move erfl and erfcl to their proper location.
* ld128/s_erfl.c:
. Implementations of erfl and erfcl in the IEEE 754 128-bit format.
* ld80/s_erfl.c:
. Implementations of erfl and erfcl in the Intel 80-bit format.
* man/erf.3:
. Document the new functions.
. While here, remove an incomplete sentence.
* src/imprecise.c:
. Remove the stupidity of mapping erfl and erfcl to erf and erfc.
* src/math.h:
. Move the declarations of erfl and erfcl to their proper place.
* src/s_erf.c:
. For architectures where double and long double are the same
floating point format, use weak references to map erfl to
erf and ercl to erfc.
Reviewed by: bde (many earlier versions)
Diffstat (limited to 'lib/msun/src/math.h')
-rw-r--r-- | lib/msun/src/math.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/msun/src/math.h b/lib/msun/src/math.h index 0c6b704..32d01da 100644 --- a/lib/msun/src/math.h +++ b/lib/msun/src/math.h @@ -449,6 +449,8 @@ long double ceill(long double); long double copysignl(long double, long double) __pure2; long double coshl(long double); long double cosl(long double); +long double erfcl(long double); +long double erfl(long double); long double exp2l(long double); long double expl(long double); long double expm1l(long double); @@ -509,8 +511,6 @@ __END_DECLS */ __BEGIN_DECLS -long double erfcl(long double); -long double erfl(long double); long double lgammal(long double); long double powl(long double, long double); long double tgammal(long double); |