Author: ros-arm-bringup Date: Sun Jun 29 21:10:41 2008 New Revision: 34199
URL: http://svn.reactos.org/svn/reactos?rev=34199&view=rev Log: atoi64 is available without MSVCRT, through ntdll or ntos
Modified: trunk/reactos/include/crt/stdlib.h
Modified: trunk/reactos/include/crt/stdlib.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/stdlib.h?rev=34... ============================================================================== --- trunk/reactos/include/crt/stdlib.h [iso-8859-1] (original) +++ trunk/reactos/include/crt/stdlib.h [iso-8859-1] Sun Jun 29 21:10:41 2008 @@ -420,8 +420,9 @@ _CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _ltow (long, wchar_t*, int); _CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _ultow (unsigned long, wchar_t*, int);
+_CRTIMP __int64 __cdecl __MINGW_NOTHROW _atoi64(const char *); + #ifdef __MSVCRT__ -_CRTIMP __int64 __cdecl __MINGW_NOTHROW _atoi64(const char *); _CRTIMP char* __cdecl __MINGW_NOTHROW _i64toa(__int64, char *, int); _CRTIMP char* __cdecl __MINGW_NOTHROW _ui64toa(unsigned __int64, char *, int); _CRTIMP __int64 __cdecl __MINGW_NOTHROW _wtoi64(const wchar_t *);