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

@@ -73,7 +73,7 @@ static const char *const rip_txt[] = {
static void
center(int line, char *text)
{
register char *ip, *op;
char *ip, *op;
ip = text;
op = &gr.rip[line][STONE_LINE_CENT - ((strlen(text) + 1) >> 1)];
while (*ip)
@@ -83,10 +83,10 @@ center(int line, char *text)
void
genl_outrip(winid tmpwin, int how, time_t when)
{
register char **dp;
register char *dpx;
char **dp;
char *dpx;
char buf[BUFSZ];
register int x;
int x;
int line, year;
long cash;