mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 09:07:54 +00:00
- Update ros.diff
svn path=/trunk/; revision=35087
This commit is contained in:
parent
089e7fccd2
commit
35d4b52b92
1 changed files with 29 additions and 0 deletions
|
@ -48,3 +48,32 @@ Index: symbol.c
|
||||||
* SymEnumSymbolsW (DBGHELP.@)
|
* SymEnumSymbolsW (DBGHELP.@)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
Index: stabs.c
|
||||||
|
===================================================================
|
||||||
|
--- stabs.c (revision 35085)
|
||||||
|
+++ stabs.c (working copy)
|
||||||
|
@@ -63,8 +63,6 @@
|
||||||
|
|
||||||
|
WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_stabs);
|
||||||
|
|
||||||
|
-UINT64 _strtoui64( const char *nptr, char **endptr, int base );
|
||||||
|
-
|
||||||
|
#ifndef N_UNDF
|
||||||
|
#define N_UNDF 0x00
|
||||||
|
#endif
|
||||||
|
@@ -468,13 +466,13 @@
|
||||||
|
break;
|
||||||
|
case '-':
|
||||||
|
prv->sign = -1;
|
||||||
|
- prv->val = _strtoui64(++ptd->ptr, &last, 10);
|
||||||
|
+ prv->val = strtoull(++ptd->ptr, &last, 10);
|
||||||
|
ptd->ptr = last;
|
||||||
|
break;
|
||||||
|
case '+':
|
||||||
|
default:
|
||||||
|
prv->sign = 1;
|
||||||
|
- prv->val = _strtoui64(ptd->ptr, &last, 10);
|
||||||
|
+ prv->val = strtoull(ptd->ptr, &last, 10);
|
||||||
|
ptd->ptr = last;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue