From d134c84e91a4168ecef30b01935fe098609c49a7 Mon Sep 17 00:00:00 2001 From: Takuya Nakaoka Date: Fri, 26 Jan 2018 15:33:30 +0900 Subject: [PATCH] Fix reversed outputs of sincosl --- src/s_sincosl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/s_sincosl.c b/src/s_sincosl.c index c587a1b..e2d3a34 100644 --- a/src/s_sincosl.c +++ b/src/s_sincosl.c @@ -26,6 +26,6 @@ OLM_DLLEXPORT void sincosl( long double x, long double * s, long double * c ) { - *s = cosl( x ); - *c = sinl( x ); + *s = sinl( x ); + *c = cosl( x ); }