mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[CRT/x64] Correctly implement fabs for GCC
Note that MSVC does not recognize 'fabs' as a valid label name. Seefee844b6ff
and2f7cf157d8
This commit is contained in:
parent
349e0ddde8
commit
bbf7b5b72a
1 changed files with 6 additions and 0 deletions
|
@ -13,8 +13,14 @@
|
|||
/* CODE **********************************************************************/
|
||||
.code64
|
||||
|
||||
#ifdef _USE_ML
|
||||
/* fabs is now allowed as label name, so create _fabs instead and alias fabs to it */
|
||||
PUBLIC _fabs
|
||||
_fabs:
|
||||
#else
|
||||
PUBLIC fabs
|
||||
fabs:
|
||||
#endif
|
||||
UNIMPLEMENTED fabs
|
||||
ret
|
||||
|
||||
|
|
Loading…
Reference in a new issue