Author: tkreuzer
Date: Mon Jun 27 10:50:09 2011
New Revision: 52481
URL:
http://svn.reactos.org/svn/reactos?rev=52481&view=rev
Log:
[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
Modified:
trunk/reactos/lib/sdk/crt/math/amd64/fabs.S
Modified: trunk/reactos/lib/sdk/crt/math/amd64/fabs.S
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/math/amd64/fab…
==============================================================================
--- trunk/reactos/lib/sdk/crt/math/amd64/fabs.S [iso-8859-1] (original)
+++ trunk/reactos/lib/sdk/crt/math/amd64/fabs.S [iso-8859-1] Mon Jun 27 10:50:09 2011
@@ -18,4 +18,8 @@
UNIMPLEMENTED fabs
ret
+#ifdef _USE_ML
+ALIAS <fabs> = <_fabs>
+#endif
+
END