Add stubs for __stoi64 and __stou64

svn path=/trunk/; revision=67710
This commit is contained in:
Timo Kreuzer 2015-05-14 10:20:08 +00:00
parent c167f82226
commit a4c81347b4
2 changed files with 48 additions and 0 deletions

View 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 */

View 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 */