summaryrefslogtreecommitdiffstats
path: root/rogue/object.c
diff options
context:
space:
mode:
authorhubertf <hubertf@NetBSD.org>1998-09-11 14:09:27 +0000
committerhubertf <hubertf@NetBSD.org>1998-09-11 14:09:27 +0000
commit82ffe2923024a321ef9accecf677442946a20670 (patch)
tree8eb47cba603f8ade2af6843e2a74ea3dfcfa4913 /rogue/object.c
parent7d7ca1d4e9a118107b3605d49e641959115dce1e (diff)
downloadbsdgames-darwin-82ffe2923024a321ef9accecf677442946a20670.tar.gz
bsdgames-darwin-82ffe2923024a321ef9accecf677442946a20670.tar.zst
bsdgames-darwin-82ffe2923024a321ef9accecf677442946a20670.zip
fix prototypes, per PR#5867
Diffstat (limited to 'rogue/object.c')
-rw-r--r--rogue/object.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/rogue/object.c b/rogue/object.c
index ad0e2a0a..874af97a 100644
--- a/rogue/object.c
+++ b/rogue/object.c
@@ -1,4 +1,4 @@
-/* $NetBSD: object.c,v 1.6 1997/10/15 12:43:35 mycroft Exp $ */
+/* $NetBSD: object.c,v 1.7 1998/09/11 14:09:27 hubertf Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -41,7 +41,7 @@
#if 0
static char sccsid[] = "@(#)object.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: object.c,v 1.6 1997/10/15 12:43:35 mycroft Exp $");
+__RCSID("$NetBSD: object.c,v 1.7 1998/09/11 14:09:27 hubertf Exp $");
#endif
#endif /* not lint */
@@ -239,6 +239,7 @@ plant_gold(row, col, is_maze)
void
place_at(obj, row, col)
object *obj;
+ int row, col;
{
obj->row = row;
obj->col = col;
@@ -268,6 +269,7 @@ object_at(pack, row, col)
object *
get_letter_object(ch)
+ int ch;
{
object *obj;