Fixed up so all targets are made at once.
[unix-history] / usr / src / games / atc / extern.c
CommitLineData
e04f5cf8
KB
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Ed James.
7 *
8 * %sccs.include.redist.c%
9 */
10
926a9ca3
KB
11/*
12 * Copyright (c) 1987 by Ed James, UC Berkeley. All rights reserved.
13 *
14 * Copy permission is hereby granted provided that this notice is
15 * retained on all partial or complete copies.
16 *
17 * For more info on this and all of my stuff, mail edjames@berkeley.edu.
18 */
19
e04f5cf8 20#ifndef lint
55900916 21static char sccsid[] = "@(#)extern.c 5.4 (Berkeley) %G%";
e04f5cf8
KB
22#endif /* not lint */
23
926a9ca3
KB
24#include "include.h"
25
3e3e3488 26char GAMES[] = "Game_List";
926a9ca3 27
55900916 28int clck, safe_planes, start_time, test_mode;
926a9ca3
KB
29
30char *file;
31
32FILE *filein, *fileout;
33
34C_SCREEN screen, *sp = &screen;
35
36LIST air, ground;
37
38struct sgttyb tty_start, tty_new;
39
40DISPLACEMENT displacement[MAXDIR] = {
41 { 0, -1 },
42 { 1, -1 },
43 { 1, 0 },
44 { 1, 1 },
45 { 0, 1 },
46 { -1, 1 },
47 { -1, 0 },
48 { -1, -1 }
49};