1/* 2 * COPYRIGHT: See COPYING in the top level directory 3 * PROJECT: ReactOS system libraries 4 * PURPOSE: Implementation of fabs 5 * FILE: lib/sdk/crt/math/amd64/fabs.S 6 * PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org) 7 */ 8 9/* INCLUDES ******************************************************************/ 10 11#include <asm.inc> 12 13/* CODE **********************************************************************/ 14.code64 15 16PUBLIC _fabs 17_fabs: 18 UNIMPLEMENTED fabs 19 ret 20 21#ifdef _USE_ML 22ALIAS <fabs> = <_fabs> 23#endif 24 25END 26