mirror of
https://github.com/reactos/reactos.git
synced 2025-07-10 09:54:14 +00:00

- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup - In the future, DO NOT under any circumstances branch another branch. This leads to merge problems! svn path=/branches/usb-bringup-trunk/; revision=55018
25 lines
567 B
ArmAsm
25 lines
567 B
ArmAsm
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* PURPOSE: Implementation of fabs
|
|
* FILE: lib/sdk/crt/math/amd64/fabs.S
|
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include <asm.inc>
|
|
|
|
/* CODE **********************************************************************/
|
|
.code64
|
|
|
|
PUBLIC _fabs
|
|
_fabs:
|
|
UNIMPLEMENTED fabs
|
|
ret
|
|
|
|
#ifdef _USE_ML
|
|
ALIAS <fabs> = <_fabs>
|
|
#endif
|
|
|
|
END
|