xref: /reactos/sdk/lib/crt/math/i386/cipow.c (revision 1734f297)
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