mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
10 lines
107 B
C
10 lines
107 B
C
#include <precomp.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
double CDECL _CIsin(void)
|
|
{
|
|
FPU_DOUBLE(x);
|
|
return sin(x);
|
|
}
|