summaryrefslogtreecommitdiffstats
path: root/cribbage/support.c
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2006-03-19 06:02:50 +0000
committerchristos <christos@NetBSD.org>2006-03-19 06:02:50 +0000
commitf9d9d300f766dd51671b78f2caaa50f25f7ae136 (patch)
treedda0d382df3dd7a7cab837f03c56dfe599648a05 /cribbage/support.c
parentcab3e1c5c6fefe9d3a264d409ef8933fbddc9744 (diff)
downloadbsdgames-darwin-f9d9d300f766dd51671b78f2caaa50f25f7ae136.tar.gz
bsdgames-darwin-f9d9d300f766dd51671b78f2caaa50f25f7ae136.tar.zst
bsdgames-darwin-f9d9d300f766dd51671b78f2caaa50f25f7ae136.zip
include <stdlib.h> to get a prototype for exit
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 1b4cec0a..292d8863 100644
--- a/cribbage/support.c
+++ b/cribbage/support.c
@@ -1,4 +1,4 @@
-/* $NetBSD: support.c,v 1.9 2006/03/18 23:14:45 christos Exp $ */
+/* $NetBSD: support.c,v 1.10 2006/03/19 06:02:50 christos Exp $ */
/*-
* Copyright (c) 1980, 1993
@@ -34,12 +34,13 @@
#if 0
static char sccsid[] = "@(#)support.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: support.c,v 1.9 2006/03/18 23:14:45 christos Exp $");
+__RCSID("$NetBSD: support.c,v 1.10 2006/03/19 06:02:50 christos Exp $");
#endif
#endif /* not lint */
#include <curses.h>
#include <string.h>
+#include <stdlib.h>
#include "deck.h"
#include "cribbage.h"