diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 1999-05-30 02:23:18 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 1999-05-30 02:23:18 +0000 |
commit | c37a824a5731bbf062ef51886e87e3518150da78 (patch) | |
tree | 2cec83a38c04242325f3bd21e510c0319fe52d26 /games/larn/global.c | |
parent | 43007dc359f95c901be348fc1b2a2d4ea237cb0e (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.c | 5 |
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" |