mirror of
https://github.com/reactos/reactos.git
synced 2025-06-26 23:29:46 +00:00

incude asm.inc instead of reactos/asm.h Fix a bug that smeaked into _chkstk svn path=/branches/cmake-bringup/; revision=49591
21 lines
534 B
ArmAsm
21 lines
534 B
ArmAsm
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* PURPOSE: Implementation of tan
|
|
* FILE: lib/sdk/crt/math/amd64/sqrtf.S
|
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include <asm.inc>
|
|
#include <ksamd64.inc>
|
|
|
|
/* DATA *********************************************************************/
|
|
|
|
PUBLIC sqrtf
|
|
sqrtf:
|
|
sqrtss xmm0, xmm0
|
|
ret
|
|
|
|
END
|