mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 20:43:41 +01:00
Merge pull request #175 from takuyanakaoka/fix-sincosl
Fix reversed outputs of sincosl
This commit is contained in:
commit
b7b3b4bc31
1 changed files with 2 additions and 2 deletions
|
@ -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 );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue