Skip to content

Commit b7b3b4b

Browse files
authored
Merge pull request #175 from takuyanakaoka/fix-sincosl
Fix reversed outputs of sincosl
2 parents c99ab08 + d134c84 commit b7b3b4b

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)