From fea2240d10b31df0708048e117338954d65683f2 Mon Sep 17 00:00:00 2001 From: das Date: Thu, 31 Jul 2008 22:41:26 +0000 Subject: Add implementations of acosl(), asinl(), atanl(), atan2l(), and cargl(). Reviewed by: bde sparc64 testing resources from: remko --- lib/msun/src/math.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/msun/src/math.h') 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); -- cgit v1.1