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

@@ -79,7 +79,7 @@ veryold(int fd)
static int
eraseoldlocks(void)
{
register int i;
int i;
#if defined(HANGUPHANDLING)
gp.program_state.preserve_locks = 0; /* not required but shows intent */
@@ -256,7 +256,7 @@ getlock(void)
void
regularize(char *s)
{
register char *lp;
char *lp;
while ((lp = strchr(s, '.')) != 0 || (lp = strchr(s, '/')) != 0
|| (lp = strchr(s, ' ')) != 0)
@@ -329,7 +329,7 @@ dosh(void)
int
child(int wt)
{
register int f;
int f;
suspend_nhwindows((char *) 0); /* also calls end_screen() */
#ifdef _M_UNIX