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

@@ -102,9 +102,9 @@ write_ok(struct obj *obj)
int
dowrite(struct obj *pen)
{
register struct obj *paper;
struct obj *paper;
char namebuf[BUFSZ] = DUMMY, *nm, *bp;
register struct obj *new_obj;
struct obj *new_obj;
int basecost, actualcost;
int curseval;
char qbuf[QBUFSZ];