mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 16:25:43 +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:
parent
69fd113200
commit
2012ccfc2f
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue