Skip to content

Commit d134c84

Browse files
committed
Fix reversed outputs of sincosl
1 parent c99ab08 commit d134c84

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/s_sincosl.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
OLM_DLLEXPORT void
2727
sincosl( long double x, long double * s, long double * c )
2828
{
29-
*s = cosl( x );
30-
*c = sinl( x );
29+
*s = sinl( x );
30+
*c = cosl( x );
3131
}

0 commit comments

Comments
 (0)