mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
[CRT]
Add stubs for __stoi64 and __stou64 svn path=/trunk/; revision=67710
This commit is contained in:
parent
c167f82226
commit
a4c81347b4
2 changed files with 48 additions and 0 deletions
24
reactos/lib/sdk/crt/math/arm/__stoi64.s
Normal file
24
reactos/lib/sdk/crt/math/arm/__stoi64.s
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
/*
|
||||||
|
* COPYRIGHT: BSD - See COPYING.ARM in the top level directory
|
||||||
|
* PROJECT: ReactOS CRT library
|
||||||
|
* PURPOSE: Implementation of __stoi64
|
||||||
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
|
#include <kxarm.h>
|
||||||
|
|
||||||
|
/* CODE **********************************************************************/
|
||||||
|
|
||||||
|
TEXTAREA
|
||||||
|
|
||||||
|
LEAF_ENTRY __stoi64
|
||||||
|
|
||||||
|
__assertfail
|
||||||
|
bx lr
|
||||||
|
|
||||||
|
LEAF_END __stoi64
|
||||||
|
|
||||||
|
END
|
||||||
|
/* EOF */
|
24
reactos/lib/sdk/crt/math/arm/__stou64.s
Normal file
24
reactos/lib/sdk/crt/math/arm/__stou64.s
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
/*
|
||||||
|
* COPYRIGHT: BSD - See COPYING.ARM in the top level directory
|
||||||
|
* PROJECT: ReactOS CRT library
|
||||||
|
* PURPOSE: Implementation of __stou64
|
||||||
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
|
#include <kxarm.h>
|
||||||
|
|
||||||
|
/* CODE **********************************************************************/
|
||||||
|
|
||||||
|
TEXTAREA
|
||||||
|
|
||||||
|
LEAF_ENTRY __stou64
|
||||||
|
|
||||||
|
__assertfail
|
||||||
|
bx lr
|
||||||
|
|
||||||
|
LEAF_END __stou64
|
||||||
|
|
||||||
|
END
|
||||||
|
/* EOF */
|
Loading…
Reference in a new issue