diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-02-17 23:54:48 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-02-17 23:54:48 +0000 |
commit | 90b44520803cb30d9db888f46d36c484a622630e (patch) | |
tree | 11767cbbdb6eeab60a619bb4936d2b29cb89b045 /games/adventure | |
parent | 2f634fcf3f197c2025cb9ecfe92ff432c93a1504 (diff) |
From netbsd:
Removed "extern int errno"; Added #include <errno.h> if not already present.
Diffstat (limited to 'games/adventure')
-rw-r--r-- | games/adventure/main.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/games/adventure/main.c b/games/adventure/main.c index 3879ba60bf7..7bb25c2c1a4 100644 --- a/games/adventure/main.c +++ b/games/adventure/main.c @@ -1,4 +1,4 @@ -/* $NetBSD: main.c,v 1.2 1995/03/21 12:05:07 cgd Exp $ */ +/* $NetBSD: main.c,v 1.3 1996/02/06 22:47:06 jtc Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -48,7 +48,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/2/93"; #else -static char rcsid[] = "$NetBSD: main.c,v 1.2 1995/03/21 12:05:07 cgd Exp $"; +static char rcsid[] = "$NetBSD: main.c,v 1.3 1996/02/06 22:47:06 jtc Exp $"; #endif #endif /* not lint */ @@ -63,7 +63,6 @@ main(argc,argv) int argc; char **argv; { - extern int errno; register int i; int rval,ll; struct text *kk; |