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