remove register from variable declarations
This commit is contained in:
12
src/rect.c
12
src/rect.c
@@ -58,9 +58,9 @@ free_rect(void)
|
||||
int
|
||||
get_rect_ind(NhRect* r)
|
||||
{
|
||||
register NhRect *rectp;
|
||||
register int lx, ly, hx, hy;
|
||||
register int i;
|
||||
NhRect *rectp;
|
||||
int lx, ly, hx, hy;
|
||||
int i;
|
||||
|
||||
lx = r->lx;
|
||||
ly = r->ly;
|
||||
@@ -80,9 +80,9 @@ get_rect_ind(NhRect* r)
|
||||
NhRect *
|
||||
get_rect(NhRect* r)
|
||||
{
|
||||
register NhRect *rectp;
|
||||
register int lx, ly, hx, hy;
|
||||
register int i;
|
||||
NhRect *rectp;
|
||||
int lx, ly, hx, hy;
|
||||
int i;
|
||||
|
||||
lx = r->lx;
|
||||
ly = r->ly;
|
||||
|
||||
Reference in New Issue
Block a user