mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 19:26:05 +00:00
- Get rid of incompatible strtoull export in msvcrt.dll
- Make dbghelp.dll use strtoui64 instead. Another solution would be to add it to libwine, but it will make code duplication even worse (strtoull is already implemented in two places). svn path=/trunk/; revision=29440
This commit is contained in:
@@ -61,6 +61,8 @@
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_stabs);
|
||||
|
||||
UINT64 _strtoui64( const char *nptr, char **endptr, int base );
|
||||
|
||||
#ifndef N_UNDF
|
||||
#define N_UNDF 0x00
|
||||
#endif
|
||||
@@ -435,13 +437,13 @@ static int stabs_pts_read_range_value(struct ParseTypedefData* ptd, struct pts_r
|
||||
break;
|
||||
case '-':
|
||||
prv->sign = -1;
|
||||
prv->val = strtoull(++ptd->ptr, &last, 10);
|
||||
prv->val = _strtoui64(++ptd->ptr, &last, 10);
|
||||
ptd->ptr = last;
|
||||
break;
|
||||
case '+':
|
||||
default:
|
||||
prv->sign = 1;
|
||||
prv->val = strtoull(ptd->ptr, &last, 10);
|
||||
prv->val = _strtoui64(ptd->ptr, &last, 10);
|
||||
ptd->ptr = last;
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -529,7 +529,6 @@ _strset
|
||||
_strtime
|
||||
_strtoi64=stub
|
||||
_strtoui64=strtoull
|
||||
_strtoull=strtoull
|
||||
_strupr
|
||||
_swab
|
||||
_sys_errlist DATA
|
||||
@@ -798,7 +797,6 @@ strtod
|
||||
strtok
|
||||
strtol=NTDLL.strtol
|
||||
strtoul
|
||||
strtoull
|
||||
strxfrm
|
||||
swprintf=crt_swprintf
|
||||
swscanf
|
||||
|
||||
Reference in New Issue
Block a user