summaryrefslogtreecommitdiff
path: root/games/adventure
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-02-19 19:39:42 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-02-19 19:39:42 +0000
commit3923126b85f9e8a77cab9a41b5a62125acd5b4cd (patch)
tree1a8b19c5db03f8c989fc8228811837b182feb7a3 /games/adventure
parentcc03bdb70090357d2393b6ec82e3cde4d5ce5edd (diff)
We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft.
Diffstat (limited to 'games/adventure')
-rw-r--r--games/adventure/hdr.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/games/adventure/hdr.h b/games/adventure/hdr.h
index fcbdded5dc0..cf2c71511eb 100644
--- a/games/adventure/hdr.h
+++ b/games/adventure/hdr.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: hdr.h,v 1.8 2001/08/06 22:59:05 pjanzen Exp $ */
+/* $OpenBSD: hdr.h,v 1.9 2002/02/19 19:39:36 millert Exp $ */
/* $NetBSD: hdr.h,v 1.2 1995/03/21 12:05:02 cgd Exp $ */
/*-
@@ -163,8 +163,4 @@ int turns, lmwarn, iwest, knfloc, detail, /* various flags & counters */
int demo, newloc, limit;
/* We need to get a little tricky to avoid strings */
-#ifdef __STDC__
#define DECR(a,b,c,d,e) decr(*#a+'+',*#b+'-',*#c+'#',*#d+'&',*#e+'%')
-#else
-#define DECR(a,b,c,d,e) decr('a'+'+','b'+'-','c'+'#','d'+'&','e'+'%')
-#endif