]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - atc/extern.c
Bug fix: in a game with 26 planes, the last one to be allocated wouldn't
[bsdgames-darwin.git] / atc / extern.c
index 1f3d89802ebef8ab309716140d8012c321e45286..345d4cc8801849c3ad154ca475596e3180306285 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: extern.c,v 1.4 1995/04/27 21:22:19 mycroft Exp $       */
+/*     $NetBSD: extern.c,v 1.11 2009/08/12 04:48:03 dholland Exp $     */
 
 /*-
  * Copyright (c) 1990, 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.
  *
  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
  */
 
+#include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)extern.c   8.1 (Berkeley) 5/31/93";
 #else
-static char rcsid[] = "$NetBSD: extern.c,v 1.4 1995/04/27 21:22:19 mycroft Exp $";
+__RCSID("$NetBSD: extern.c,v 1.11 2009/08/12 04:48:03 dholland Exp $");
 #endif
 #endif /* not lint */
 
@@ -57,13 +54,17 @@ static char rcsid[] = "$NetBSD: extern.c,v 1.4 1995/04/27 21:22:19 mycroft Exp $
 
 char           GAMES[] =       "Game_List";
 
-int            clck, safe_planes, start_time, test_mode;
+int            clck, safe_planes, test_mode;
+time_t         start_time;
 
-char           *file;
+const char     *filename;
 
+#if 0
 FILE           *filein, *fileout;
+#endif
 
-C_SCREEN               screen, *sp = &screen;
+static C_SCREEN screen;
+C_SCREEN *sp = &screen;
 
 LIST           air, ground;