Skip to content

Commit 52b28df

Browse files
committed
Remove register qualifier in Intl func delcaration
1 parent 3703b10 commit 52b28df

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ext/intl/collator/collator_is_numeric.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,13 @@ static double collator_u_strtod(const UChar *nptr, UChar **endptr) /* {{{ */
110110
*
111111
* Ignores `locale' stuff.
112112
*/
113-
static zend_long collator_u_strtol(const UChar *nptr, UChar **endptr, register int base)
113+
static zend_long collator_u_strtol(const UChar *nptr, UChar **endptr, int base)
114114
{
115-
register const UChar *s = nptr;
116-
register zend_ulong acc;
117-
register UChar c;
118-
register zend_ulong cutoff;
119-
register int neg = 0, any, cutlim;
115+
const UChar *s = nptr;
116+
zend_ulong acc;
117+
UChar c;
118+
zend_ulong cutoff;
119+
int neg = 0, any, cutlim;
120120

121121
if (s == NULL) {
122122
errno = ERANGE;

0 commit comments

Comments
 (0)