diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-03-19 22:07:43 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-03-19 22:07:43 -0400 |
commit | 97721a5508415a2f10eb068e022093811c9ff8be (patch) | |
tree | 88e9ce153895ad949576fa7ce1eeee4b02286479 /src/math/sinl.c | |
parent | fix exp asm (diff) | |
parent | code cleanup of named constants (diff) | |
download | grovel-97721a5508415a2f10eb068e022093811c9ff8be.tar.gz grovel-97721a5508415a2f10eb068e022093811c9ff8be.tar.xz |
Merge remote branch 'nsz/master'
Diffstat (limited to 'src/math/sinl.c')
-rw-r--r-- | src/math/sinl.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/math/sinl.c b/src/math/sinl.c index 0b1aeb75..7e0b44f4 100644 --- a/src/math/sinl.c +++ b/src/math/sinl.c @@ -34,8 +34,6 @@ long double sinl(long double x) return sin(x); } #elif (LDBL_MANT_DIG == 64 || LDBL_MANT_DIG == 113) && LDBL_MAX_EXP == 16384 -#include "__rem_pio2l.h" - long double sinl(long double x) { union IEEEl2bits z; |