mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
25 lines
501 B
ArmAsm
25 lines
501 B
ArmAsm
/*
|
|
* COPYRIGHT: BSD - See COPYING.ARM in the top level directory
|
|
* PROJECT: ReactOS CRT library
|
|
* PURPOSE: Implementation of exp
|
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include <kxarm.h>
|
|
|
|
/* CODE **********************************************************************/
|
|
|
|
TEXTAREA
|
|
|
|
LEAF_ENTRY exp
|
|
|
|
__assertfail
|
|
bx lr
|
|
|
|
LEAF_END exp
|
|
|
|
END
|
|
/* EOF */
|