mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
22 lines
524 B
ArmAsm
22 lines
524 B
ArmAsm
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* PURPOSE: Implementation of fmodf
|
|
* FILE: lib/sdk/crt/math/amd64/fmodf.S
|
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include <asm.inc>
|
|
|
|
/* CODE **********************************************************************/
|
|
.code64
|
|
|
|
PUBLIC fmodf
|
|
fmodf:
|
|
UNIMPLEMENTED fmodf
|
|
ret
|
|
|
|
END
|