mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
22 lines
519 B
ArmAsm
22 lines
519 B
ArmAsm
![]() |
/*
|
||
|
* COPYRIGHT: See COPYING in the top level directory
|
||
|
* PROJECT: ReactOS system libraries
|
||
|
* PURPOSE: Implementation of acos
|
||
|
* FILE: lib/sdk/crt/math/amd64/acos.S
|
||
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
||
|
*/
|
||
|
|
||
|
/* INCLUDES ******************************************************************/
|
||
|
|
||
|
#include <asm.inc>
|
||
|
|
||
|
/* CODE **********************************************************************/
|
||
|
.code64
|
||
|
|
||
|
PUBLIC acos
|
||
|
acos:
|
||
|
UNIMPLEMENTED acos
|
||
|
ret
|
||
|
|
||
|
END
|