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

@@ -433,7 +433,7 @@ calc_mattacku_vars(
* take care of it...
*/
int
mattacku(register struct monst *mtmp)
mattacku(struct monst *mtmp)
{
struct attack *mattk, alt_attk;
int i, j = 0, tmp, sum[NATTK];
@@ -1063,7 +1063,7 @@ magic_negation(struct monst *mon)
* returns MM_ flags
*/
static int
hitmu(register struct monst *mtmp, register struct attack *mattk)
hitmu(struct monst *mtmp, struct attack *mattk)
{
struct permonst *mdat = mtmp->data;
struct permonst *olduasmon = gy.youmonst.data;