Author: tkreuzer Date: Thu May 14 10:20:08 2015 New Revision: 67710
URL: http://svn.reactos.org/svn/reactos?rev=67710&view=rev Log: [CRT] Add stubs for __stoi64 and __stou64
Added: trunk/reactos/lib/sdk/crt/math/arm/__stoi64.s (with props) trunk/reactos/lib/sdk/crt/math/arm/__stou64.s (with props)
Added: trunk/reactos/lib/sdk/crt/math/arm/__stoi64.s URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/math/arm/__stoi... ============================================================================== --- trunk/reactos/lib/sdk/crt/math/arm/__stoi64.s (added) +++ trunk/reactos/lib/sdk/crt/math/arm/__stoi64.s [iso-8859-1] Thu May 14 10:20:08 2015 @@ -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 */
Propchange: trunk/reactos/lib/sdk/crt/math/arm/__stoi64.s ------------------------------------------------------------------------------ svn:eol-style = native
Added: trunk/reactos/lib/sdk/crt/math/arm/__stou64.s URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/math/arm/__stou... ============================================================================== --- trunk/reactos/lib/sdk/crt/math/arm/__stou64.s (added) +++ trunk/reactos/lib/sdk/crt/math/arm/__stou64.s [iso-8859-1] Thu May 14 10:20:08 2015 @@ -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 */
Propchange: trunk/reactos/lib/sdk/crt/math/arm/__stou64.s ------------------------------------------------------------------------------ svn:eol-style = native