]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - sail/globals.c
Make the default WARNS for games 4. The only game that needs to set WARNS
[bsdgames-darwin.git] / sail / globals.c
index 26ee3026b43b886c7e02ff335643739108fa1288..03038d9a7ae4ac208cff41fbdb7ce23fe8f0aeb3 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: globals.c,v 1.10 2001/01/04 01:56:28 jwise Exp $       */
+/*     $NetBSD: globals.c,v 1.13 2003/08/07 09:37:42 agc Exp $ */
 
 /*
  * Copyright (c) 1983, 1993
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *     This product includes software developed by the University of
- *     California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *
 #if 0
 static char sccsid[] = "@(#)globals.c  8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: globals.c,v 1.10 2001/01/04 01:56:28 jwise Exp $");
+__RCSID("$NetBSD: globals.c,v 1.13 2003/08/07 09:37:42 agc Exp $");
 #endif
 #endif /* not lint */
 
+#include <sys/types.h>
+#include <setjmp.h>
 #include "extern.h"
 
 struct scenario scene[] = {
@@ -548,9 +546,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;
@@ -564,4 +562,4 @@ int turn;
 int game;
 int alive;
 int people;
-char hasdriver;
+int hasdriver;