summaryrefslogtreecommitdiffstats
path: root/rogue
diff options
context:
space:
mode:
authorjsm <jsm@NetBSD.org>2005-02-15 12:54:50 +0000
committerjsm <jsm@NetBSD.org>2005-02-15 12:54:50 +0000
commit2d2096fe16a45e25ea696042af076c06f41f4278 (patch)
treea899aae285e1766f36ffa25f2eb95275fb7065c1 /rogue
parent6390e770b812f3df9943b72dff360a36cfd20cba (diff)
downloadbsdgames-darwin-2d2096fe16a45e25ea696042af076c06f41f4278.tar.gz
bsdgames-darwin-2d2096fe16a45e25ea696042af076c06f41f4278.tar.zst
bsdgames-darwin-2d2096fe16a45e25ea696042af076c06f41f4278.zip
Avoid arrays of incomplete types (required to build with GCC 4).
Reviewed by <hubertf>.
Diffstat (limited to 'rogue')
-rw-r--r--rogue/rogue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rogue/rogue.h b/rogue/rogue.h
index 6aa47c5d..d8a60966 100644
--- a/rogue/rogue.h
+++ b/rogue/rogue.h
@@ -1,4 +1,4 @@
-/* $NetBSD: rogue.h,v 1.16 2004/01/27 20:30:30 jsm Exp $ */
+/* $NetBSD: rogue.h,v 1.17 2005/02/15 12:54:50 jsm Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -561,7 +561,7 @@ void idntfy(void);
boolean imitating(int, int);
int init(int, char **);
void init_str(char **, const char *);
-void insert_score(char [][], char [][], const char *, short, short, const object *, int);
+void insert_score(char [][82], char [][30], const char *, short, short, const object *, int);
void inv_armor_weapon(boolean);
void inv_rings(void);
void inventory(const object *, unsigned short);