Fix reversed outputs of sincosl

This commit is contained in:
Takuya Nakaoka 2018-01-26 15:33:30 +09:00
parent c99ab08afe
commit d134c84e91
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 );
}