diff options
author | das <das@FreeBSD.org> | 2008-07-31 22:41:26 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2008-07-31 22:41:26 +0000 |
commit | fea2240d10b31df0708048e117338954d65683f2 (patch) | |
tree | 9fb6bc383ad54766e5719d186bb7517c92a90c9f /lib/msun/src/math.h | |
parent | 9c7525b3ac9d147ed50fdd2bbd0728d63af7968a (diff) | |
download | FreeBSD-src-fea2240d10b31df0708048e117338954d65683f2.zip FreeBSD-src-fea2240d10b31df0708048e117338954d65683f2.tar.gz |
Add implementations of acosl(), asinl(), atanl(), atan2l(),
and cargl().
Reviewed by: bde
sparc64 testing resources from: remko
Diffstat (limited to 'lib/msun/src/math.h')
-rw-r--r-- | lib/msun/src/math.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/msun/src/math.h b/lib/msun/src/math.h index 97d1a58..374f95f 100644 --- a/lib/msun/src/math.h +++ b/lib/msun/src/math.h @@ -394,12 +394,18 @@ float significandf(float); #if __ISO_C_VISIBLE >= 1999 #if 0 long double acoshl(long double); +#endif long double acosl(long double); +#if 0 long double asinhl(long double); +#endif long double asinl(long double); long double atan2l(long double, long double); +#if 0 long double atanhl(long double); +#endif long double atanl(long double); +#if 0 long double cbrtl(long double); #endif long double ceill(long double); |