include: Move strto[iu]max(_l) from stdlib.h to inttypes.h.

Needed to compile PuTTY.
This commit is contained in:
Alex Henrie 2022-10-18 21:38:39 -06:00 committed by Alexandre Julliard
parent ebbcc10b05
commit 5235526b16
2 changed files with 5 additions and 4 deletions

View file

@ -234,6 +234,11 @@ typedef struct {
#define SCNuPTR "u"
#endif
_ACRTIMP __int64 __cdecl strtoimax(const char*,char**,int);
_ACRTIMP __int64 __cdecl strtoimax_l(const char*,char**,int,_locale_t);
_ACRTIMP unsigned __int64 __cdecl strtoumax(const char*,char**,int);
_ACRTIMP unsigned __int64 __cdecl strtoumax_l(const char*,char**,int,_locale_t);
#ifdef __cplusplus
}
#endif

View file

@ -229,10 +229,6 @@ _ACRTIMP __msvcrt_long __cdecl strtol(const char*,char**,int);
_ACRTIMP __msvcrt_ulong __cdecl strtoul(const char*,char**,int);
_ACRTIMP __int64 __cdecl _strtoll_l(const char*,char**,int,_locale_t);
_ACRTIMP unsigned __int64 __cdecl _strtoull_l(const char*,char**,int,_locale_t);
_ACRTIMP __int64 __cdecl strtoimax(const char*,char**,int);
_ACRTIMP __int64 __cdecl strtoimax_l(const char*,char**,int,_locale_t);
_ACRTIMP unsigned __int64 __cdecl strtoumax(const char*,char**,int);
_ACRTIMP unsigned __int64 __cdecl strtoumax_l(const char*,char**,int,_locale_t);
_ACRTIMP __int64 __cdecl _strtoi64(const char*,char**,int);
_ACRTIMP __int64 __cdecl _strtoi64_l(const char*,char**,int,_locale_t);
_ACRTIMP unsigned __int64 __cdecl _strtoui64(const char*,char**,int);