summaryrefslogtreecommitdiffstats
path: root/sail/globals.c
diff options
context:
space:
mode:
authorjwise <jwise@NetBSD.org>2001-01-04 05:34:56 +0000
committerjwise <jwise@NetBSD.org>2001-01-04 05:34:56 +0000
commit4bb910aa025d0c056f01479839fb4aac351c6f60 (patch)
tree46a08c533ee20bc13807aae50458f8781fadf8af /sail/globals.c
parent185dd7965f398cfe8bbab3b933dc63e22db50fd0 (diff)
downloadbsdgames-darwin-4bb910aa025d0c056f01479839fb4aac351c6f60.tar.gz
bsdgames-darwin-4bb910aa025d0c056f01479839fb4aac351c6f60.tar.zst
bsdgames-darwin-4bb910aa025d0c056f01479839fb4aac351c6f60.zip
Various stylistic nits.
Diffstat (limited to 'sail/globals.c')
-rw-r--r--sail/globals.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sail/globals.c b/sail/globals.c
index 1c1f41be..34153804 100644
--- a/sail/globals.c
+++ b/sail/globals.c
@@ -1,4 +1,4 @@
-/* $NetBSD: globals.c,v 1.11 2001/01/04 03:51:24 jwise Exp $ */
+/* $NetBSD: globals.c,v 1.12 2001/01/04 05:34:56 jwise Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)globals.c 8.2 (Berkeley) 4/28/95";
#else
-__RCSID("$NetBSD: globals.c,v 1.11 2001/01/04 03:51:24 jwise Exp $");
+__RCSID("$NetBSD: globals.c,v 1.12 2001/01/04 05:34:56 jwise Exp $");
#endif
#endif /* not lint */
@@ -550,9 +550,9 @@ const char dc[] = { 0, 0, -1, -1, -1, 0, 1, 1, 1 };
int mode;
jmp_buf restart;
-char randomize; /* -x, give first available ship */
-char longfmt; /* -l, print score in long format */
-char nobells; /* -b, don't ring bell before Signal */
+int randomize; /* -x, give first available ship */
+int longfmt; /* -l, print score in long format */
+int nobells; /* -b, don't ring bell before Signal */
gid_t gid;
gid_t egid;
@@ -566,4 +566,4 @@ int turn;
int game;
int alive;
int people;
-char hasdriver;
+int hasdriver;