We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c99ab08 + d134c84 commit b7b3b4bCopy full SHA for b7b3b4b
1 file changed
src/s_sincosl.c
@@ -26,6 +26,6 @@
26
OLM_DLLEXPORT void
27
sincosl( long double x, long double * s, long double * c )
28
{
29
- *s = cosl( x );
30
- *c = sinl( x );
+ *s = sinl( x );
+ *c = cosl( x );
31
}
0 commit comments