Fix reversed outputs of sincosl

This commit is contained in:
Takuya Nakaoka 2018-01-26 15:33:30 +09:00
parent c99ab08afe
commit d134c84e91

View file

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