diff options
author | marcel <marcel@FreeBSD.org> | 1999-11-16 10:26:38 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 1999-11-16 10:26:38 +0000 |
commit | 520fff788fc8f2154247a6cff986abf634fdbb51 (patch) | |
tree | 839b85661e38597650d090e9cb482291451611bb /games/hack/hack.cmd.c | |
parent | 44fac3a89d25ca434f91c4f961a363ea590faae8 (diff) | |
download | FreeBSD-src-520fff788fc8f2154247a6cff986abf634fdbb51.zip FreeBSD-src-520fff788fc8f2154247a6cff986abf634fdbb51.tar.gz |
Add type int to those variables without a type. This is caused by the
frequent use of ``register var'' instead of ``register int var'' and
the removal of the register hint in the previous commit.
Diffstat (limited to 'games/hack/hack.cmd.c')
-rw-r--r-- | games/hack/hack.cmd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/hack/hack.cmd.c b/games/hack/hack.cmd.c index ba2f428..27beaae 100644 --- a/games/hack/hack.cmd.c +++ b/games/hack/hack.cmd.c @@ -95,7 +95,7 @@ char *cmd; { struct func_tab *tlist = cmdlist; boolean firsttime = FALSE; - res; + int res; if(!cmd) { firsttime = TRUE; @@ -256,7 +256,7 @@ boolean s; confdir() { - x = rn2(8); + int x = rn2(8); u.dx = xdir[x]; u.dy = ydir[x]; } @@ -297,7 +297,7 @@ isroom(x,y) x,y; { /* what about POOL? */ } #endif QUEST -isok(x,y) x,y; { +isok(x,y) int x,y; { /* x corresponds to curx, so x==1 is the first column. Ach. %% */ return(x >= 1 && x <= COLNO-1 && y >= 0 && y <= ROWNO-1); } |