summaryrefslogtreecommitdiffstats
path: root/adventure
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2001-02-05 00:20:05 +0000
committerchristos <christos@NetBSD.org>2001-02-05 00:20:05 +0000
commit824950ca125b18c2349daa341af6725fd96f96f6 (patch)
treec3dfd52ca4d43941271c2b77e7b5e79b9204c37a /adventure
parent8a4c8aaf5542592040d674f6ebaa947a7bf37498 (diff)
downloadbsdgames-darwin-824950ca125b18c2349daa341af6725fd96f96f6.tar.gz
bsdgames-darwin-824950ca125b18c2349daa341af6725fd96f96f6.tar.zst
bsdgames-darwin-824950ca125b18c2349daa341af6725fd96f96f6.zip
eliminate redundant decls
Diffstat (limited to 'adventure')
-rw-r--r--adventure/hdr.h4
-rw-r--r--adventure/init.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/adventure/hdr.h b/adventure/hdr.h
index bf33661d..45e5e8b3 100644
--- a/adventure/hdr.h
+++ b/adventure/hdr.h
@@ -1,4 +1,4 @@
-/* $NetBSD: hdr.h,v 1.8 1999/07/28 23:23:39 hubertf Exp $ */
+/* $NetBSD: hdr.h,v 1.9 2001/02/05 00:20:05 christos Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -158,6 +158,6 @@ extern int turns, lmwarn, iwest, knfloc, detail, /* various flags and
abbnum, maxdie, numdie, holdng, dkill, foobar, bonus, clock1,
clock2, saved, closng, panic, closed, scorng;
-extern int demo, newloc, limit;
+extern int demo, limit;
#define DECR(a,b,c,d,e) decr(a+'+',b+'-',c+'#',d+'&',e+'%')
diff --git a/adventure/init.c b/adventure/init.c
index b515710a..7c888a56 100644
--- a/adventure/init.c
+++ b/adventure/init.c
@@ -1,4 +1,4 @@
-/* $NetBSD: init.c,v 1.12 1999/07/28 23:23:39 hubertf Exp $ */
+/* $NetBSD: init.c,v 1.13 2001/02/05 00:20:05 christos Exp $ */
/*-
* Copyright (c) 1993
@@ -43,7 +43,7 @@
#if 0
static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 6/2/93";
#else
-__RCSID("$NetBSD: init.c,v 1.12 1999/07/28 23:23:39 hubertf Exp $");
+__RCSID("$NetBSD: init.c,v 1.13 2001/02/05 00:20:05 christos Exp $");
#endif
#endif /* not lint */
@@ -127,7 +127,7 @@ int turns, lmwarn, iwest, knfloc, detail, /* various flags and
abbnum, maxdie, numdie, holdng, dkill, foobar, bonus, clock1,
clock2, saved, closng, panic, closed, scorng;
-int demo, newloc, limit;
+int demo, limit;
void
init() /* everything for 1st time run */