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