Windows NT 4.0 source code leak
 
 
 
 
 
 

23 lines
415 B

/***
*fsqrt.c - square root helper
*
* Copyright (c) 1991-1991, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Square root helper routine to be used with the i386
*
*Revision History:
* 10-20-91 GDP written
*
*******************************************************************************/
double _fsqrt(double x)
{
double result;
_asm{
fld x
fsqrt
fstp result
}
return result;
}