mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
10 lines
114 B
C
10 lines
114 B
C
#include <precomp.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
double CDECL _CIpow(void)
|
|
{
|
|
FPU_DOUBLES(x, y);
|
|
return pow(x, y);
|
|
}
|