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
commit b7b3b4bc31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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 );
}