1 #include <precomp.h> 2 3 /* 4 * @implemented 5 */ 6 double CDECL _CIpow(void) 7 { 8 FPU_DOUBLES(x, y); 9 return pow(x, y); 10 } 11