mirror of
https://github.com/reactos/reactos.git
synced 2025-06-20 07:36:05 +00:00
19 lines
538 B
ArmAsm
19 lines
538 B
ArmAsm
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* PURPOSE: Implementation of sqrt
|
|
* FILE: lib/sdk/crt/math/amd64/sqrt.S
|
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include <reactos/asm.h>
|
|
#include <ndk/amd64/asm.h>
|
|
|
|
/* DATA *********************************************************************/
|
|
|
|
PUBLIC sqrt
|
|
sqrt:
|
|
UNIMPLEMENTED sqrt
|
|
ret
|