summaryrefslogtreecommitdiffstats
path: root/rogue/play.c
diff options
context:
space:
mode:
Diffstat (limited to 'rogue/play.c')
-rw-r--r--rogue/play.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/rogue/play.c b/rogue/play.c
index 1e14754d..88245384 100644
--- a/rogue/play.c
+++ b/rogue/play.c
@@ -1,4 +1,4 @@
-/* $NetBSD: play.c,v 1.8 2008/01/14 00:23:52 dholland Exp $ */
+/* $NetBSD: play.c,v 1.9 2008/01/14 03:50:02 dholland Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)play.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: play.c,v 1.8 2008/01/14 00:23:52 dholland Exp $");
+__RCSID("$NetBSD: play.c,v 1.9 2008/01/14 03:50:02 dholland Exp $");
#endif
#endif /* not lint */
@@ -56,10 +56,11 @@ __RCSID("$NetBSD: play.c,v 1.8 2008/01/14 00:23:52 dholland Exp $");
#include "rogue.h"
boolean interrupted = 0;
-const char *unknown_command = "unknown command";
+
+static const char unknown_command[] = "unknown command";
void
-play_level()
+play_level(void)
{
short ch;
int count;