mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
20 lines
543 B
ArmAsm
20 lines
543 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 <reactos/asm.h>
|
||
|
#include <ndk/amd64/asm.h>
|
||
|
|
||
|
/* DATA *********************************************************************/
|
||
|
|
||
|
PUBLIC ldexp
|
||
|
ldexp:
|
||
|
UNIMPLEMENTED ldexp
|
||
|
ret
|