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

@@ -469,8 +469,8 @@ void
undiscover_object(int oindx)
{
if (!objects[oindx].oc_name_known) {
register int dindx, acls = objects[oindx].oc_class;
register boolean found = FALSE;
int dindx, acls = objects[oindx].oc_class;
boolean found = FALSE;
/* find the object; shift those behind it forward one slot */
for (dindx = gb.bases[acls];
@@ -1027,7 +1027,7 @@ doclassdisco(void)
void
rename_disco(void)
{
register int i, dis;
int i, dis;
int ct = 0, mn = 0, sl;
char *s, oclass, prev_class;
winid tmpwin;