mirror of
https://github.com/reactos/reactos.git
synced 2025-05-01 11:39:58 +00:00
11 lines
114 B
C
11 lines
114 B
C
![]() |
#include <precomp.h>
|
||
|
|
||
|
/*
|
||
|
* @implemented
|
||
|
*/
|
||
|
double CDECL _CIpow(void)
|
||
|
{
|
||
|
FPU_DOUBLES(x, y);
|
||
|
return pow(x, y);
|
||
|
}
|