1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-16 15:50:24 +00:00
reactos/sdk/lib/crt/math/i386/cicos.c

10 lines
107 B
C

#include <precomp.h>
/*
* @implemented
*/
double CDECL _CIcos(void)
{
FPU_DOUBLE(x);
return cos(x);
}