From 007c03f84f5c4666d7260a53d67249ce4bccc140 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 2 Jul 2012 20:25:28 -0400 Subject: fix missing prototype and simplify sincosl on ld64 archs --- src/math/sincosl.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/math/sincosl.c b/src/math/sincosl.c index e14129a2..d632fe6f 100644 --- a/src/math/sincosl.c +++ b/src/math/sincosl.c @@ -1,12 +1,10 @@ +#define _GNU_SOURCE #include "libm.h" #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024 void sincosl(long double x, long double *sin, long double *cos) { - double s, c; - sincos(x, &s, &c); - *sin = s; - *cos = c; + sincos(x, (double *)sin, (double *)cos); } #elif (LDBL_MANT_DIG == 64 || LDBL_MANT_DIG == 113) && LDBL_MAX_EXP == 16384 void sincosl(long double x, long double *sin, long double *cos) -- cgit v1.2.1