Merge pull request #175 from takuyanakaoka/fix-sincosl

Fix reversed outputs of sincosl
This commit is contained in:
Simon Byrne
2018-02-02 11:06:46 -08:00
committed by GitHub
+2 -2
View File
@@ -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 );
}