mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +00:00
add _strtoi64 and _strtoui64 to stdlib.h
svn path=/trunk/; revision=38036
This commit is contained in:
parent
9bb14d43db
commit
4666ae75a3
1 changed files with 3 additions and 0 deletions
|
@ -503,6 +503,9 @@ __CRT_INLINE long long __cdecl __MINGW_NOTHROW llabs(long long _j)
|
|||
long long __cdecl __MINGW_NOTHROW strtoll (const char* __restrict__, char** __restrict, int);
|
||||
unsigned long long __cdecl __MINGW_NOTHROW strtoull (const char* __restrict__, char** __restrict__, int);
|
||||
|
||||
_CRTIMP __int64 __cdecl _strtoi64(const char *,char **,int);
|
||||
_CRTIMP unsigned __int64 __cdecl _strtoui64(const char *,char **,int);
|
||||
|
||||
#if defined (__MSVCRT__) /* these are stubs for MS _i64 versions */
|
||||
long long __cdecl __MINGW_NOTHROW atoll (const char *);
|
||||
|
||||
|
|
Loading…
Reference in a new issue