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