mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
atoi64 is available without MSVCRT, through ntdll or ntos
svn path=/trunk/; revision=34199
This commit is contained in:
parent
eb8611b79f
commit
a2931ebaf1
1 changed files with 2 additions and 1 deletions
|
@ -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 *);
|
||||
|
|
Loading…
Reference in a new issue