- Update ros.diff

svn path=/trunk/; revision=35087
This commit is contained in:
Stefan Ginsberg 2008-08-03 20:05:47 +00:00
parent 089e7fccd2
commit 35d4b52b92

View file

@ -48,3 +48,32 @@ Index: symbol.c
* 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;
}