Skip to content
Snippets Groups Projects
Unverified Commit b7b3b4bc authored by Simon Byrne's avatar Simon Byrne Committed by GitHub
Browse files

Merge pull request #175 from takuyanakaoka/fix-sincosl

Fix reversed outputs of sincosl
parents c99ab08a d134c84e
No related branches found
No related tags found
No related merge requests found
...@@ -26,6 +26,6 @@ ...@@ -26,6 +26,6 @@
OLM_DLLEXPORT void OLM_DLLEXPORT void
sincosl( long double x, long double * s, long double * c ) sincosl( long double x, long double * s, long double * c )
{ {
*s = cosl( x ); *s = sinl( x );
*c = sinl( x ); *c = cosl( x );
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment