mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
21 lines
524 B
ArmAsm
21 lines
524 B
ArmAsm
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* PURPOSE: Implementation of ldexp
|
|
* FILE: lib/sdk/crt/math/amd64/ldexp.S
|
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include <asm.inc>
|
|
|
|
/* CODE **********************************************************************/
|
|
.code64
|
|
|
|
PUBLIC ldexp
|
|
ldexp:
|
|
UNIMPLEMENTED ldexp
|
|
ret
|
|
|
|
END
|