Issue #18722: Remove uses of the "register" keyword in C code.

This commit is contained in:
Antoine Pitrou 2013-08-13 20:18:52 +02:00
parent 9eaa3e6732
commit 9ed5f27266
38 changed files with 288 additions and 286 deletions

View file

@ -613,7 +613,7 @@ r_byte(RFILE *p)
static int
r_short(RFILE *p)
{
register short x;
short x;
unsigned char buffer[2];
r_string((char *) buffer, 2, p);
@ -627,7 +627,7 @@ r_short(RFILE *p)
static long
r_long(RFILE *p)
{
register long x;
long x;
unsigned char buffer[4];
r_string((char *) buffer, 4, p);