summaryrefslogtreecommitdiff
path: root/games/bcd/bcd.c
diff options
context:
space:
mode:
authorDavid Krause <david@cvs.openbsd.org>2003-07-10 00:03:02 +0000
committerDavid Krause <david@cvs.openbsd.org>2003-07-10 00:03:02 +0000
commitf138d1da5ac5e4f052ce20134fa194b881c88ea0 (patch)
treee17b62a2ed5b4593b73540bff6721214188d4bf0 /games/bcd/bcd.c
parenta16ddc2846315096f139acf53487df9761e9177a (diff)
add missing includes
ok deraadt@ tedu@
Diffstat (limited to 'games/bcd/bcd.c')
-rw-r--r--games/bcd/bcd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/games/bcd/bcd.c b/games/bcd/bcd.c
index 1f77cb9f06b..05da17e09a1 100644
--- a/games/bcd/bcd.c
+++ b/games/bcd/bcd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bcd.c,v 1.9 2003/06/03 03:01:39 millert Exp $ */
+/* $OpenBSD: bcd.c,v 1.10 2003/07/10 00:03:01 david Exp $ */
/* $NetBSD: bcd.c,v 1.6 1995/04/24 12:22:23 cgd Exp $ */
/*
@@ -43,7 +43,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)bcd.c 8.2 (Berkeley) 3/20/94";
#else
-static char rcsid[] = "$OpenBSD: bcd.c,v 1.9 2003/06/03 03:01:39 millert Exp $";
+static char rcsid[] = "$OpenBSD: bcd.c,v 1.10 2003/07/10 00:03:01 david Exp $";
#endif
#endif /* not lint */
@@ -79,6 +79,7 @@ static char rcsid[] = "$OpenBSD: bcd.c,v 1.9 2003/06/03 03:01:39 millert Exp $";
#include <sys/types.h>
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>