summaryrefslogtreecommitdiffstats
path: root/cribbage/support.c
diff options
context:
space:
mode:
authorhe <he@NetBSD.org>2006-03-19 12:09:39 +0000
committerhe <he@NetBSD.org>2006-03-19 12:09:39 +0000
commitbb0cd2d6eff9249885356c1c6b14165ef4d64ecb (patch)
treea46bbcae7b4b8f23d52300c9da22a37f9b1e62af /cribbage/support.c
parentf9d9d300f766dd51671b78f2caaa50f25f7ae136 (diff)
downloadbsdgames-darwin-bb0cd2d6eff9249885356c1c6b14165ef4d64ecb.tar.gz
bsdgames-darwin-bb0cd2d6eff9249885356c1c6b14165ef4d64ecb.tar.zst
bsdgames-darwin-bb0cd2d6eff9249885356c1c6b14165ef4d64ecb.zip
Now that we use exit(2), we need to include <stdlib.h> for its definition.
Diffstat (limited to 'cribbage/support.c')
-rw-r--r--cribbage/support.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/cribbage/support.c b/cribbage/support.c
index 292d8863..de207a35 100644
--- a/cribbage/support.c
+++ b/cribbage/support.c
@@ -1,4 +1,4 @@
-/* $NetBSD: support.c,v 1.10 2006/03/19 06:02:50 christos Exp $ */
+/* $NetBSD: support.c,v 1.11 2006/03/19 12:09:39 he Exp $ */
/*-
* Copyright (c) 1980, 1993
@@ -34,11 +34,12 @@
#if 0
static char sccsid[] = "@(#)support.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: support.c,v 1.10 2006/03/19 06:02:50 christos Exp $");
+__RCSID("$NetBSD: support.c,v 1.11 2006/03/19 12:09:39 he Exp $");
#endif
#endif /* not lint */
#include <curses.h>
+#include <stdlib.h>
#include <string.h>
#include <stdlib.h>