From a2931ebaf1cf536cdaf35d9c809a982ef7122541 Mon Sep 17 00:00:00 2001 From: ReactOS Portable Systems Group Date: Mon, 30 Jun 2008 02:10:41 +0000 Subject: [PATCH] atoi64 is available without MSVCRT, through ntdll or ntos svn path=/trunk/; revision=34199 --- reactos/include/crt/stdlib.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/include/crt/stdlib.h b/reactos/include/crt/stdlib.h index df8a487f0a1..73d141eb586 100644 --- a/reactos/include/crt/stdlib.h +++ b/reactos/include/crt/stdlib.h @@ -420,8 +420,9 @@ _CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _itow (int, wchar_t*, int); _CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _ltow (long, wchar_t*, int); _CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _ultow (unsigned long, wchar_t*, int); -#ifdef __MSVCRT__ _CRTIMP __int64 __cdecl __MINGW_NOTHROW _atoi64(const char *); + +#ifdef __MSVCRT__ _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 *);