NTDLL__CIpow returns double, not LONG.

This commit is contained in:
Jon Griffiths 2000-11-25 02:11:26 +00:00 committed by Alexandre Julliard
parent cb2abbc2d3
commit d5c40bbe5f
1 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ LONG __cdecl NTDLL__ftol(double fl)
* _CIpow (NTDLL)
*/
#ifdef USING_REAL_FPU
LONG __cdecl NTDLL__CIpow(void)
double __cdecl NTDLL__CIpow(void)
{
double x,y;
POP_FPU(y);
@ -80,7 +80,7 @@ LONG __cdecl NTDLL__CIpow(void)
return pow(x,y);
}
#else
LONG __cdecl NTDLL__CIpow(double x,double y)
double __cdecl NTDLL__CIpow(double x,double y)
{
FIXME("should be register function\n");
return pow(x,y);