From 2f7cf157d8e7031d1f91d083e775febe2eb9dc94 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Mon, 27 Jun 2011 10:50:09 +0000 Subject: [PATCH] [CRT] On amd64 builds, where we don't have underscored symbols, create an alias fabs for the function _fabs, since we cannot create fabs as a label directly svn path=/trunk/; revision=52481 --- reactos/lib/sdk/crt/math/amd64/fabs.S | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/reactos/lib/sdk/crt/math/amd64/fabs.S b/reactos/lib/sdk/crt/math/amd64/fabs.S index 84452dc1942..0900acceed9 100644 --- a/reactos/lib/sdk/crt/math/amd64/fabs.S +++ b/reactos/lib/sdk/crt/math/amd64/fabs.S @@ -18,4 +18,8 @@ _fabs: UNIMPLEMENTED fabs ret +#ifdef _USE_ML +ALIAS = <_fabs> +#endif + END