remove register from variable declarations

This commit is contained in:
nhmall
2024-02-19 16:30:07 -05:00
parent 6f569f0a27
commit 688ac6ffbe
113 changed files with 836 additions and 835 deletions

View File

@@ -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;