xref: /reactos/sdk/lib/crt/math/amd64/fmod.S (revision dc0433f0)
1/*
2 * COPYRIGHT:         See COPYING in the top level directory
3 * PROJECT:           ReactOS system libraries
4 * PURPOSE:           Implementation of fmod
5 * FILE:              lib/sdk/crt/math/amd64/fmod.S
6 * PROGRAMMER:        Timo Kreuzer (timo.kreuzer@reactos.org)
7 */
8
9/* INCLUDES ******************************************************************/
10
11#include <asm.inc>
12
13/* CODE **********************************************************************/
14.code64
15
16PUBLIC fmod
17fmod:
18    UNIMPLEMENTED fmod
19    ret
20
21END
22