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.end.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.end.c')
-rw-r--r-- | games/hack/hack.end.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/hack/hack.end.c b/games/hack/hack.end.c index a49d758..98c8336 100644 --- a/games/hack/hack.end.c +++ b/games/hack/hack.end.c @@ -224,7 +224,7 @@ topten(){ char *reclock = "record_lock"; int sleepct = 300; FILE *rfile; - flg = 0; + int flg = 0; extern char *getdate(); #define HUP if(!done_hup) while(link(recfile, reclock) == -1) { @@ -466,7 +466,7 @@ int d = n%10; } clearlocks(){ -x; +int x; (void) signal(SIGHUP,SIG_IGN); for(x = maxdlevel; x >= 0; x--) { glo(x); @@ -511,7 +511,7 @@ prscore(argc,argv) int argc; char **argv; { struct toptenentry *t1, *t2; char *recfile = RECORD; FILE *rfile; - flg = 0; + int flg = 0; int i; #ifdef nonsense long total_score = 0L; |