1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-06-10 20:34:59 +00:00
reactos/sdk/lib/crt/math/i386/cisqrt.c

10 lines
109 B
C

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