value instead of var reference to `bmove'
[unix-history] / usr / src / games / trek / externs.c
CommitLineData
e1fd1786 1#ifndef lint
35b95499 2static char sccsid[] = "@(#)externs.c 4.2 (Berkeley) %G%";
e1fd1786
KM
3#endif not lint
4
5# include "trek.h"
6
7/*
8** global variable definitions
9*/
10
35b95499 11struct device Device[NDEV] =
e1fd1786
KM
12{
13 "warp drive", "Scotty",
14 "S.R. scanners", "Scotty",
15 "L.R. scanners", "Scotty",
16 "phasers", "Sulu",
17 "photon tubes", "Sulu",
18 "impulse engines", "Scotty",
19 "shield control", "Sulu",
20 "computer", "Spock",
21 "subspace radio", "Uhura",
22 "life support", "Scotty",
23 "navigation system", "Chekov",
24 "cloaking device", "Scotty",
25 "transporter", "Scotty",
26 "shuttlecraft", "Scotty",
27 "*ERR 14*", "Nobody",
28 "*ERR 15*", "Nobody"
29};
30
35b95499 31char *Systemname[NINHAB] =
e1fd1786
KM
32{
33 "ERROR",
34 "Talos IV",
35 "Rigel III",
36 "Deneb VII",
37 "Canopus V",
38 "Icarus I",
39 "Prometheus II",
40 "Omega VII",
41 "Elysium I",
42 "Scalos IV",
43 "Procyon IV",
44 "Arachnid I",
45 "Argo VIII",
46 "Triad III",
47 "Echo IV",
48 "Nimrod III",
49 "Nemisis IV",
50 "Centarurus I",
51 "Kronos III",
52 "Spectros V",
53 "Beta III",
54 "Gamma Tranguli VI",
55 "Pyris III",
56 "Triachus",
57 "Marcus XII",
58 "Kaland",
59 "Ardana",
60 "Stratos",
61 "Eden",
62 "Arrikis",
63 "Epsilon Eridani IV",
64 "Exo III"
65};