summaryrefslogtreecommitdiffstats
path: root/monop/monop.c
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2008-02-24 01:41:14 +0000
committerdholland <dholland@NetBSD.org>2008-02-24 01:41:14 +0000
commit3a7bd350ec2aed9c0128fa818be32f554dfe29a6 (patch)
tree52e4caa66f5f2876769391a83a49a1dee6631d17 /monop/monop.c
parent018f1faba999e0e48431c237e74692b0d0fd73d6 (diff)
downloadbsdgames-darwin-3a7bd350ec2aed9c0128fa818be32f554dfe29a6.tar.gz
bsdgames-darwin-3a7bd350ec2aed9c0128fa818be32f554dfe29a6.tar.zst
bsdgames-darwin-3a7bd350ec2aed9c0128fa818be32f554dfe29a6.zip
Remove last traces of old save/load code. We no longer need a private
copy of malloc.
Diffstat (limited to 'monop/monop.c')
-rw-r--r--monop/monop.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/monop/monop.c b/monop/monop.c
index 5a25da35..bb89d41a 100644
--- a/monop/monop.c
+++ b/monop/monop.c
@@ -1,4 +1,4 @@
-/* $NetBSD: monop.c,v 1.19 2008/02/23 21:48:46 dholland Exp $ */
+/* $NetBSD: monop.c,v 1.20 2008/02/24 01:41:14 dholland Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)monop.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: monop.c,v 1.19 2008/02/23 21:48:46 dholland Exp $");
+__RCSID("$NetBSD: monop.c,v 1.20 2008/02/24 01:41:14 dholland Exp $");
#endif
#endif /* not lint */
@@ -55,7 +55,6 @@ static void getplayers(void);
static void init_players(void);
static void init_monops(void);
static void do_quit(int);
-void *heapstart;
/*
* This program implements a monopoly game
@@ -69,7 +68,6 @@ main(ac, av)
setgid(getgid());
srandom(time(NULL));
- heapstart = sbrk(0);
num_luck = sizeof lucky_mes / sizeof (char *);
init_decks();
init_monops();