summaryrefslogtreecommitdiff
path: root/games/hack/hack.read.c
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2009-06-07 18:30:39 +0000
committerdholland <dholland@NetBSD.org>2009-06-07 18:30:39 +0000
commit1fa8a9a633c6f43b2e4cc46b520a81da0c53b6da (patch)
treeb0f7681d34d87154ea94fbb1cb475330e7b76e57 /games/hack/hack.read.c
parent57aadb4062ffaba26b131457aac1da14d2b4a16d (diff)
ANSIfy function declarations. All object file diffs inspected.
Diffstat (limited to 'games/hack/hack.read.c')
-rw-r--r--games/hack/hack.read.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/games/hack/hack.read.c b/games/hack/hack.read.c
index f43f0b98e7b..e224a437a6a 100644
--- a/games/hack/hack.read.c
+++ b/games/hack/hack.read.c
@@ -1,4 +1,4 @@
-/* $NetBSD: hack.read.c,v 1.8 2003/04/02 18:36:39 jsm Exp $ */
+/* $NetBSD: hack.read.c,v 1.9 2009/06/07 18:30:39 dholland Exp $ */
/*
* Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
@@ -63,7 +63,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: hack.read.c,v 1.8 2003/04/02 18:36:39 jsm Exp $");
+__RCSID("$NetBSD: hack.read.c,v 1.9 2009/06/07 18:30:39 dholland Exp $");
#endif /* not lint */
#include <stdlib.h>
@@ -71,7 +71,7 @@ __RCSID("$NetBSD: hack.read.c,v 1.8 2003/04/02 18:36:39 jsm Exp $");
#include "extern.h"
int
-doread()
+doread(void)
{
struct obj *scroll;
boolean confused = (Confusion != 0);
@@ -528,8 +528,7 @@ doread()
}
int
-identify(otmp) /* also called by newmail() */
- struct obj *otmp;
+identify(struct obj *otmp) /* also called by newmail() */
{
objects[otmp->otyp].oc_name_known = 1;
otmp->known = otmp->dknown = 1;
@@ -538,8 +537,7 @@ identify(otmp) /* also called by newmail() */
}
void
-litroom(on)
- boolean on;
+litroom(boolean on)
{
#ifndef QUEST
int num, zx, zy;
@@ -627,8 +625,7 @@ do_it:
/* Test whether we may genocide all monsters with symbol ch */
int
-monstersym(ch) /* arnold@ucsfcgl */
- char ch;
+monstersym(int ch) /* arnold@ucsfcgl */
{
const struct permonst *mp;