Merge pull request #175 from takuyanakaoka/fix-sincosl
Fix reversed outputs of sincosl
This commit is contained in:
+2
-2
@@ -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 );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user