mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2025-04-04 09:37:13 +02:00
Fix reversed outputs of sincosl
This commit is contained in:
parent
c99ab08afe
commit
d134c84e91
1 changed files with 2 additions and 2 deletions
|
@ -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 );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue