summaryrefslogtreecommitdiff
path: root/games/larn/global.c
diff options
context:
space:
mode:
authorPaul Janzen <pjanzen@cvs.openbsd.org>1999-05-30 02:23:18 +0000
committerPaul Janzen <pjanzen@cvs.openbsd.org>1999-05-30 02:23:18 +0000
commitc37a824a5731bbf062ef51886e87e3518150da78 (patch)
tree2cec83a38c04242325f3bd21e510c0319fe52d26 /games/larn/global.c
parent43007dc359f95c901be348fc1b2a2d4ea237cb0e (diff)
use standard isalpha() and isdigit(); check that screen is big enough;
correct a typo, and fix up some man page paths.
Diffstat (limited to 'games/larn/global.c')
-rw-r--r--games/larn/global.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/games/larn/global.c b/games/larn/global.c
index c23bb76e7b4..172afe95aaf 100644
--- a/games/larn/global.c
+++ b/games/larn/global.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: global.c,v 1.4 1999/03/27 03:45:49 pjanzen Exp $ */
+/* $OpenBSD: global.c,v 1.5 1999/05/30 02:23:16 pjanzen Exp $ */
/* $NetBSD: global.c,v 1.6 1997/10/18 20:03:20 christos Exp $ */
/*
@@ -23,9 +23,10 @@
* quit() subroutine to ask if the player really wants to quit
*/
#ifndef lint
-static char rcsid[] = "$OpenBSD: global.c,v 1.4 1999/03/27 03:45:49 pjanzen Exp $";
+static char rcsid[] = "$OpenBSD: global.c,v 1.5 1999/05/30 02:23:16 pjanzen Exp $";
#endif /* not lint */
+#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "header.h"