date and time created 89/03/05 20:27:54 by bostic
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Mon, 6 Mar 1989 12:27:54 +0000 (04:27 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Mon, 6 Mar 1989 12:27:54 +0000 (04:27 -0800)
SCCS-vsn: games/atc/extern.c 5.1

usr/src/games/atc/extern.c [new file with mode: 0644]

diff --git a/usr/src/games/atc/extern.c b/usr/src/games/atc/extern.c
new file mode 100644 (file)
index 0000000..203ee8b
--- /dev/null
@@ -0,0 +1,36 @@
+/*
+ * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
+ *
+ * Copy permission is hereby granted provided that this notice is
+ * retained on all partial or complete copies.
+ *
+ * For more info on this and all of my stuff, mail edjames@berkeley.edu.
+ */
+
+#include "include.h"
+
+char           GAMES[] =       "Game_List",
+               LOG[] =         "ATC_scores";
+
+int            clock, safe_planes, start_time, test_mode;
+
+char           *file;
+
+FILE           *filein, *fileout;
+
+C_SCREEN               screen, *sp = &screen;
+
+LIST           air, ground;
+
+struct sgttyb  tty_start, tty_new;
+
+DISPLACEMENT   displacement[MAXDIR] = {
+               {  0, -1 },
+               {  1, -1 },
+               {  1,  0 },
+               {  1,  1 },
+               {  0,  1 },
+               { -1,  1 },
+               { -1,  0 },
+               { -1, -1 }
+};