summaryrefslogtreecommitdiffstats
path: root/monop/morg.c
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2012-06-19 05:30:43 +0000
committerdholland <dholland@NetBSD.org>2012-06-19 05:30:43 +0000
commit60030fd11e6c646dbc35c5254b2520d5af45288f (patch)
tree2d9c57e3deb2afa23793d42c8ba11c5b98398282 /monop/morg.c
parent98b4affa216164b77e59278a2b1cdc3deee77716 (diff)
downloadbsdgames-darwin-60030fd11e6c646dbc35c5254b2520d5af45288f.tar.gz
bsdgames-darwin-60030fd11e6c646dbc35c5254b2520d5af45288f.tar.zst
bsdgames-darwin-60030fd11e6c646dbc35c5254b2520d5af45288f.zip
WARNS=5
Diffstat (limited to 'monop/morg.c')
-rw-r--r--monop/morg.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/monop/morg.c b/monop/morg.c
index cc930781..74da5151 100644
--- a/monop/morg.c
+++ b/monop/morg.c
@@ -1,4 +1,4 @@
-/* $NetBSD: morg.c,v 1.18 2008/02/24 06:07:06 dholland Exp $ */
+/* $NetBSD: morg.c,v 1.19 2012/06/19 05:35:32 dholland Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)morg.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: morg.c,v 1.18 2008/02/24 06:07:06 dholland Exp $");
+__RCSID("$NetBSD: morg.c,v 1.19 2012/06/19 05:35:32 dholland Exp $");
#endif
#endif /* not lint */
@@ -80,7 +80,7 @@ static void unm(int);
* be mortgaged.
*/
void
-mortgage()
+mortgage(void)
{
int propnum;
@@ -114,7 +114,7 @@ mortgage()
* This routine sets up the list of mortgageable property
*/
static int
-set_mlist()
+set_mlist(void)
{
OWN *op;
@@ -137,8 +137,7 @@ set_mlist()
* This routine actually mortgages the property.
*/
static void
-m(propnum)
- int propnum;
+m(int propnum)
{
int price;
@@ -154,7 +153,7 @@ m(propnum)
* to be unmortgaged.
*/
void
-unmortgage()
+unmortgage(void)
{
int propnum;
@@ -182,7 +181,7 @@ unmortgage()
* This routine sets up the list of mortgaged property
*/
static int
-set_umlist()
+set_umlist(void)
{
OWN *op;