X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fcosl.c;h=20786c147eaabaa766c019a5fba7bf5549518a52;hb=f29c8b2585098d92e0bd02af745774673ec25ec7;hp=1c208ad10d172b48a5427b9f425209855d8f9b1e;hpb=932b68847804db93ae058c71d6236d2dc4c905b7;p=gnulib.git diff --git a/lib/cosl.c b/lib/cosl.c index 1c208ad10..20786c147 100644 --- a/lib/cosl.c +++ b/lib/cosl.c @@ -13,6 +13,11 @@ * ==================================================== */ +#include + +/* Specification. */ +#include + /* sinl(x) * Return sine function of x. * @@ -44,10 +49,6 @@ * TRIG(x) returns trig(x) nearly rounded */ -#include - -#include "mathl.h" - #include "trigl.h" #ifdef HAVE_SINL #include "trigl.c" @@ -59,13 +60,17 @@ long double cosl(long double x) long double y[2],z=0.0L; int n; + /* cosl(NaN) is NaN */ + if (isnanl (x)) + return x; + /* |x| ~< pi/4 */ if(x >= -0.7853981633974483096156608458198757210492 && x <= 0.7853981633974483096156608458198757210492) return kernel_cosl(x, z); - /* sinl(Inf or NaN) is NaN, sinl(0) is 0 */ - else if ((x + x == x && x != 0.0) || x != x) + /* cosl(Inf) is NaN, cosl(0) is 1 */ + else if (x + x == x && x != 0.0) return x-x; /* NaN */ /* argument reduction needed */