-/* $NetBSD: play.c,v 1.7 2007/12/27 23:53:00 dholland Exp $ */
+/* $NetBSD: play.c,v 1.9 2008/01/14 03:50:02 dholland Exp $ */
/*
* Copyright (c) 1988, 1993
#if 0
static char sccsid[] = "@(#)play.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: play.c,v 1.7 2007/12/27 23:53:00 dholland Exp $");
+__RCSID("$NetBSD: play.c,v 1.9 2008/01/14 03:50:02 dholland Exp $");
#endif
#endif /* not lint */
#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;
case 'u':
case 'n':
case 'b':
- (void) one_move_rogue(ch, 1);
+ (void)one_move_rogue(ch, 1);
break;
case 'H':
case 'J':