From bcd797a5ba4631c031919dad832d670e564212e9 Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Tue, 3 Sep 2013 15:02:10 +0000 Subject: math: long double inverse trigonometric cleanup (acosl, asinl, atanl, atan2l) * added ld128 support from freebsd fdlibm (untested) * using new ldshape union instead of IEEEl2bits * inexact status flag is not supported --- src/math/__invtrigl.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/math/__invtrigl.h') diff --git a/src/math/__invtrigl.h b/src/math/__invtrigl.h index cac465c2..91a8a3b6 100644 --- a/src/math/__invtrigl.h +++ b/src/math/__invtrigl.h @@ -1,10 +1,6 @@ -#include - -#if LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384 /* shared by acosl, asinl and atan2l */ #define pio2_hi __pio2_hi #define pio2_lo __pio2_lo extern const long double pio2_hi, pio2_lo; long double __invtrigl_R(long double z); -#endif -- cgit v1.2.1