aboutsummaryrefslogtreecommitdiff
path: root/games/trek
diff options
context:
space:
mode:
Diffstat (limited to 'games/trek')
-rw-r--r--games/trek/abandon.c6
-rw-r--r--games/trek/attack.c6
-rw-r--r--games/trek/autover.c6
-rw-r--r--games/trek/capture.c6
-rw-r--r--games/trek/cgetc.c4
-rw-r--r--games/trek/check_out.c6
-rw-r--r--games/trek/checkcond.c6
-rw-r--r--games/trek/compkl.c6
-rw-r--r--games/trek/computer.c6
-rw-r--r--games/trek/damage.c6
-rw-r--r--games/trek/damaged.c6
-rw-r--r--games/trek/dcrept.c6
-rw-r--r--games/trek/destruct.c6
-rw-r--r--games/trek/dock.c6
-rw-r--r--games/trek/dumpgame.c6
-rw-r--r--games/trek/dumpme.c6
-rw-r--r--games/trek/dumpssradio.c6
-rw-r--r--games/trek/events.c6
-rw-r--r--games/trek/externs.c4
-rw-r--r--games/trek/getcodi.c4
-rw-r--r--games/trek/getpar.c6
-rw-r--r--games/trek/help.c6
-rw-r--r--games/trek/impulse.c6
-rw-r--r--games/trek/initquad.c6
-rw-r--r--games/trek/kill.c6
-rw-r--r--games/trek/klmove.c6
-rw-r--r--games/trek/lose.c4
-rw-r--r--games/trek/lrscan.c6
-rw-r--r--games/trek/main.c8
-rw-r--r--games/trek/move.c6
-rw-r--r--games/trek/nova.c6
-rw-r--r--games/trek/out.c6
-rw-r--r--games/trek/phaser.c6
-rw-r--r--games/trek/play.c4
-rw-r--r--games/trek/ram.c6
-rw-r--r--games/trek/ranf.c4
-rw-r--r--games/trek/rest.c6
-rw-r--r--games/trek/schedule.c6
-rw-r--r--games/trek/score.c6
-rw-r--r--games/trek/setup.c6
-rw-r--r--games/trek/setwarp.c4
-rw-r--r--games/trek/shield.c6
-rw-r--r--games/trek/snova.c6
-rw-r--r--games/trek/srscan.c6
-rw-r--r--games/trek/systemname.c6
-rw-r--r--games/trek/torped.c6
-rw-r--r--games/trek/utility.c6
-rw-r--r--games/trek/visual.c6
-rw-r--r--games/trek/warp.c6
-rw-r--r--games/trek/win.c6
50 files changed, 201 insertions, 87 deletions
diff --git a/games/trek/abandon.c b/games/trek/abandon.c
index 3be1770a7448..a156e493a594 100644
--- a/games/trek/abandon.c
+++ b/games/trek/abandon.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)abandon.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/attack.c b/games/trek/attack.c
index 92dc16483534..70682284458e 100644
--- a/games/trek/attack.c
+++ b/games/trek/attack.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)attack.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/autover.c b/games/trek/autover.c
index 9fdaa261106b..ac01d273bb28 100644
--- a/games/trek/autover.c
+++ b/games/trek/autover.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)autover.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/capture.c b/games/trek/capture.c
index db1b0b9b571d..7e66dd413dd8 100644
--- a/games/trek/capture.c
+++ b/games/trek/capture.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)capture.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/cgetc.c b/games/trek/cgetc.c
index e3120600bb60..3d25b1603a56 100644
--- a/games/trek/cgetc.c
+++ b/games/trek/cgetc.c
@@ -32,7 +32,11 @@
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)cgetc.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include <stdio.h>
diff --git a/games/trek/check_out.c b/games/trek/check_out.c
index c50af43b9271..02978583a93e 100644
--- a/games/trek/check_out.c
+++ b/games/trek/check_out.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)check_out.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/checkcond.c b/games/trek/checkcond.c
index 42700275def4..894be5041d8f 100644
--- a/games/trek/checkcond.c
+++ b/games/trek/checkcond.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)checkcond.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/compkl.c b/games/trek/compkl.c
index 68ab951b11e2..90bf951a290d 100644
--- a/games/trek/compkl.c
+++ b/games/trek/compkl.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)compkl.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/computer.c b/games/trek/computer.c
index e6d2bae682c4..d374c0f6960c 100644
--- a/games/trek/computer.c
+++ b/games/trek/computer.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)computer.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/damage.c b/games/trek/damage.c
index eaff84f162c7..8d312eb641ce 100644
--- a/games/trek/damage.c
+++ b/games/trek/damage.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)damage.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/damaged.c b/games/trek/damaged.c
index 301a12f6a6f4..3ba0d9736d74 100644
--- a/games/trek/damaged.c
+++ b/games/trek/damaged.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)damaged.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/dcrept.c b/games/trek/dcrept.c
index 258fbd1e0fb5..1cd1ad03bc7f 100644
--- a/games/trek/dcrept.c
+++ b/games/trek/dcrept.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)dcrept.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/destruct.c b/games/trek/destruct.c
index ae123f00a445..afa4a7568e94 100644
--- a/games/trek/destruct.c
+++ b/games/trek/destruct.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)destruct.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/dock.c b/games/trek/dock.c
index f190e46c38d1..42515b74dda4 100644
--- a/games/trek/dock.c
+++ b/games/trek/dock.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)dock.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/dumpgame.c b/games/trek/dumpgame.c
index 8406f11b4299..d9f935e8acf6 100644
--- a/games/trek/dumpgame.c
+++ b/games/trek/dumpgame.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)dumpgame.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <fcntl.h>
diff --git a/games/trek/dumpme.c b/games/trek/dumpme.c
index 4d2ff373d5bd..cb4c9d262c0e 100644
--- a/games/trek/dumpme.c
+++ b/games/trek/dumpme.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)dumpme.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/dumpssradio.c b/games/trek/dumpssradio.c
index 4a57ffd392b2..79d95efcfb41 100644
--- a/games/trek/dumpssradio.c
+++ b/games/trek/dumpssradio.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)dumpssradio.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/events.c b/games/trek/events.c
index f2aa111ba5fb..97b98fb1b856 100644
--- a/games/trek/events.c
+++ b/games/trek/events.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)events.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/externs.c b/games/trek/externs.c
index 170dd60da7bc..428eaf4c5e7c 100644
--- a/games/trek/externs.c
+++ b/games/trek/externs.c
@@ -32,7 +32,11 @@
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)externs.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/getcodi.c b/games/trek/getcodi.c
index e16f5e733b46..ae47d1a19d96 100644
--- a/games/trek/getcodi.c
+++ b/games/trek/getcodi.c
@@ -32,7 +32,11 @@
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)getcodi.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "getpar.h"
diff --git a/games/trek/getpar.c b/games/trek/getpar.c
index 7cb2fc8ddeda..488af3f512de 100644
--- a/games/trek/getpar.c
+++ b/games/trek/getpar.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)getpar.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include <stdio.h>
diff --git a/games/trek/help.c b/games/trek/help.c
index b6f967c9bb52..89aff5bf2075 100644
--- a/games/trek/help.c
+++ b/games/trek/help.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)help.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/impulse.c b/games/trek/impulse.c
index bde44da5cf07..d76a401c29db 100644
--- a/games/trek/impulse.c
+++ b/games/trek/impulse.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)impulse.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/initquad.c b/games/trek/initquad.c
index 72dc83bdde06..dc300d4a9126 100644
--- a/games/trek/initquad.c
+++ b/games/trek/initquad.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)initquad.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/kill.c b/games/trek/kill.c
index 6bae9d1a73b3..86f412234b4d 100644
--- a/games/trek/kill.c
+++ b/games/trek/kill.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)kill.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/klmove.c b/games/trek/klmove.c
index 783195f7c145..d98acd68a9f0 100644
--- a/games/trek/klmove.c
+++ b/games/trek/klmove.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)klmove.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/lose.c b/games/trek/lose.c
index 7f0d5b31faa1..60c89adc561e 100644
--- a/games/trek/lose.c
+++ b/games/trek/lose.c
@@ -32,7 +32,11 @@
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)lose.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/lrscan.c b/games/trek/lrscan.c
index 16793370a98f..65f31a3cd97f 100644
--- a/games/trek/lrscan.c
+++ b/games/trek/lrscan.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)lrscan.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/main.c b/games/trek/main.c
index 16f19b7ca1f6..bf1580731cf7 100644
--- a/games/trek/main.c
+++ b/games/trek/main.c
@@ -29,18 +29,20 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
-static char copyright[] =
+static const char copyright[] =
"@(#) Copyright (c) 1980, 1993\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
+#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/move.c b/games/trek/move.c
index 6aa0072147cc..6e413c7c2be9 100644
--- a/games/trek/move.c
+++ b/games/trek/move.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)move.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/nova.c b/games/trek/nova.c
index a327b0d43a39..8aef4c0ed49a 100644
--- a/games/trek/nova.c
+++ b/games/trek/nova.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)nova.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/out.c b/games/trek/out.c
index 21b50583ff4e..99d910d5d9e6 100644
--- a/games/trek/out.c
+++ b/games/trek/out.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)out.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/phaser.c b/games/trek/phaser.c
index 45d228591822..a4ed5354c137 100644
--- a/games/trek/phaser.c
+++ b/games/trek/phaser.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)phaser.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/play.c b/games/trek/play.c
index b4865ba954e9..c735afaaf7f3 100644
--- a/games/trek/play.c
+++ b/games/trek/play.c
@@ -32,7 +32,11 @@
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)play.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/ram.c b/games/trek/ram.c
index 9d5d177e5858..0407a3060a31 100644
--- a/games/trek/ram.c
+++ b/games/trek/ram.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)ram.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/ranf.c b/games/trek/ranf.c
index b6cdeae5aab6..29e7fcc1c740 100644
--- a/games/trek/ranf.c
+++ b/games/trek/ranf.c
@@ -32,7 +32,11 @@
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)ranf.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include <stdio.h>
diff --git a/games/trek/rest.c b/games/trek/rest.c
index 09f3f5819321..b6c6ee78abf3 100644
--- a/games/trek/rest.c
+++ b/games/trek/rest.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)rest.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/schedule.c b/games/trek/schedule.c
index e66ead7c4906..22972427f975 100644
--- a/games/trek/schedule.c
+++ b/games/trek/schedule.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)schedule.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/score.c b/games/trek/score.c
index 6e858955cc0b..4ed647818a34 100644
--- a/games/trek/score.c
+++ b/games/trek/score.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)score.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/setup.c b/games/trek/setup.c
index d06f9e87e027..54b3900a91e0 100644
--- a/games/trek/setup.c
+++ b/games/trek/setup.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)setup.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include <stdlib.h>
diff --git a/games/trek/setwarp.c b/games/trek/setwarp.c
index fac51023016e..3b341aaf06b0 100644
--- a/games/trek/setwarp.c
+++ b/games/trek/setwarp.c
@@ -32,7 +32,11 @@
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)setwarp.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/shield.c b/games/trek/shield.c
index 5f2a48692055..c4a3bc2dba29 100644
--- a/games/trek/shield.c
+++ b/games/trek/shield.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)shield.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/snova.c b/games/trek/snova.c
index 587108445b86..6c206cb0aff8 100644
--- a/games/trek/snova.c
+++ b/games/trek/snova.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)snova.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/srscan.c b/games/trek/srscan.c
index d4a16ace48db..2ec1e177c8a0 100644
--- a/games/trek/srscan.c
+++ b/games/trek/srscan.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)srscan.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/systemname.c b/games/trek/systemname.c
index e5d0e5d5ae22..80c842f89f69 100644
--- a/games/trek/systemname.c
+++ b/games/trek/systemname.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)systemname.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/torped.c b/games/trek/torped.c
index 68df0e9e83b2..9eead4599130 100644
--- a/games/trek/torped.c
+++ b/games/trek/torped.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)torped.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include <stdio.h>
diff --git a/games/trek/utility.c b/games/trek/utility.c
index f876ac252e70..e1835a1a0c38 100644
--- a/games/trek/utility.c
+++ b/games/trek/utility.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)utility.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
/*
diff --git a/games/trek/visual.c b/games/trek/visual.c
index 758a4b571759..5d00f6bc1c30 100644
--- a/games/trek/visual.c
+++ b/games/trek/visual.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)visual.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/warp.c b/games/trek/warp.c
index c9012d798e8a..cead28ba5e7f 100644
--- a/games/trek/warp.c
+++ b/games/trek/warp.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)warp.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"
diff --git a/games/trek/win.c b/games/trek/win.c
index 83c7c2760098..0920f7573166 100644
--- a/games/trek/win.c
+++ b/games/trek/win.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)win.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "trek.h"