mirror of
https://github.com/python/cpython.git
synced 2025-10-07 07:31:46 +00:00
Issue #18722: Remove uses of the "register" keyword in C code.
This commit is contained in:
parent
9eaa3e6732
commit
9ed5f27266
38 changed files with 288 additions and 286 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue