1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-27 21:18:15 +00:00
reactos/sdk/lib/crt/math/i386/cilog.c

10 lines
107 B
C

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