summaryrefslogtreecommitdiffstats
path: root/rogue/inventory.c
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2009-08-12 08:44:45 +0000
committerdholland <dholland@NetBSD.org>2009-08-12 08:44:45 +0000
commit39a1066cab493ece48c6e692513d1311b7e27c44 (patch)
treea896a49b2b5b09b9763d953ea2ce9ec0e813beb3 /rogue/inventory.c
parent4fa17c6f9afc7c76d0350d5d9e5996391aa18137 (diff)
downloadbsdgames-darwin-39a1066cab493ece48c6e692513d1311b7e27c44.tar.gz
bsdgames-darwin-39a1066cab493ece48c6e692513d1311b7e27c44.tar.zst
bsdgames-darwin-39a1066cab493ece48c6e692513d1311b7e27c44.zip
sprinkle static
Diffstat (limited to 'rogue/inventory.c')
-rw-r--r--rogue/inventory.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/rogue/inventory.c b/rogue/inventory.c
index b1bc1595..1f744bde 100644
--- a/rogue/inventory.c
+++ b/rogue/inventory.c
@@ -1,4 +1,4 @@
-/* $NetBSD: inventory.c,v 1.13 2008/01/14 03:50:01 dholland Exp $ */
+/* $NetBSD: inventory.c,v 1.14 2009/08/12 08:44:45 dholland Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)inventory.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: inventory.c,v 1.13 2008/01/14 03:50:01 dholland Exp $");
+__RCSID("$NetBSD: inventory.c,v 1.14 2009/08/12 08:44:45 dholland Exp $");
#endif
#endif /* not lint */
@@ -211,6 +211,10 @@ static const struct id_com_s com_id_tab[COMS] = {
{'q', "q quaff potion" }
};
+static int get_com_id(int *, short);
+static int pr_com_id(int);
+static int pr_motion_char(int);
+
void
inventory(const object *pack, unsigned short mask)
{
@@ -355,7 +359,7 @@ MORE:
}
}
-int
+static int
pr_com_id(int ch)
{
int i;
@@ -368,7 +372,7 @@ pr_com_id(int ch)
return(1);
}
-int
+static int
get_com_id(int *indexp, short ch)
{
short i;
@@ -382,7 +386,7 @@ get_com_id(int *indexp, short ch)
return(0);
}
-int
+static int
pr_motion_char(int ch)
{
if ( (ch == 'J') ||