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