X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fsincosl.c;h=1aaab5c1afbaa67946c4c92b71d4999486a02195;hb=ccd54782ae73477aa3f3987ab04db9e6fde025d6;hp=16c6b83e88e1752c01f48793a88822311456118e;hpb=267a39bafd249d7eb9c37df06dc6defcf41cb343;p=gnulib.git diff --git a/lib/sincosl.c b/lib/sincosl.c index 16c6b83e8..1aaab5c1a 100644 --- a/lib/sincosl.c +++ b/lib/sincosl.c @@ -1,5 +1,5 @@ /* Quad-precision floating point trigonometric functions on <-pi/4,pi/4>. - Copyright (C) 1999 Free Software Foundation, Inc. + Copyright (C) 1999, 2006, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek @@ -17,10 +17,12 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ +#include + +/* Specification. */ #include -#include -#include "mathl.h" +#include static const long double sin_c[] = { #define ONE sin_c[0] @@ -113,7 +115,7 @@ kernel_sinl (long double x, long double y, int iy) sign = -1; } - if (x < 0.148375L) /* |x| < 0.1484375 */ + if (x < 0.1484375L) /* |x| < 0.1484375 */ { /* Argument is small enough to approximate it by a Chebyshev polynomial of degree 17. */