xref: /reactos/sdk/lib/crt/math/amd64/fabs.S (revision ea6e7740)
1/*
2 * COPYRIGHT:         See COPYING in the top level directory
3 * PROJECT:           ReactOS system libraries
4 * PURPOSE:           Implementation of fabs
5 * FILE:              lib/sdk/crt/math/amd64/fabs.S
6 * PROGRAMMER:        Timo Kreuzer (timo.kreuzer@reactos.org)
7 */
8
9/* INCLUDES ******************************************************************/
10
11#include <asm.inc>
12
13/* CODE **********************************************************************/
14.code64
15
16#ifdef _USE_ML
17/* fabs is now allowed as label name, so create _fabs instead and alias fabs to it */
18PUBLIC _fabs
19_fabs:
20#else
21PUBLIC fabs
22fabs:
23#endif
24    UNIMPLEMENTED fabs
25    ret
26
27#ifdef _USE_ML
28ALIAS <fabs> = <_fabs>
29#endif
30
31END
32