[CRT]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Mon, 27 Jun 2011 10:50:09 +0000 (10:50 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Mon, 27 Jun 2011 10:50:09 +0000 (10:50 +0000)
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

index 84452dc..0900acc 100644 (file)
@@ -18,4 +18,8 @@ _fabs:
     UNIMPLEMENTED fabs
     ret
 
+#ifdef _USE_ML
+ALIAS <fabs> = <_fabs>
+#endif
+
 END