Module Name: src
Committed By: dholland
Date: Mon May 25 00:20:23 UTC 2009
Modified Files:
src/games/trek: main.c
Log Message:
Remove last traces of undocumented -p option (apparently related to
process priority) and documented -a option, neither of which have
done anything since CSRG days.
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/games/trek/main.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/games/trek/main.c
diff -u src/games/trek/main.c:1.18 src/games/trek/main.c:1.19
--- src/games/trek/main.c:1.18 Mon May 25 00:12:32 2009
+++ src/games/trek/main.c Mon May 25 00:20:22 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.18 2009/05/25 00:12:32 dholland Exp $ */
+/* $NetBSD: main.c,v 1.19 2009/05/25 00:20:22 dholland Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -39,7 +39,7 @@
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: main.c,v 1.18 2009/05/25 00:12:32 dholland Exp $");
+__RCSID("$NetBSD: main.c,v 1.19 2009/05/25 00:20:22 dholland Exp $");
#endif
#endif /* not lint */
@@ -54,7 +54,6 @@
#include "trek.h"
#include "getpar.h"
-#define PRIO 00 /* default priority */
/*
** #### ##### # #### ##### #### ##### # #
@@ -162,8 +161,6 @@
{
time_t curtime;
long vect;
- char opencode;
- int prio;
int ac;
char **av;
struct termios argp;
@@ -177,8 +174,6 @@
time(&curtime);
vect = (long) curtime;
srand(vect);
- opencode = 'w';
- prio = PRIO;
if (tcgetattr(1, &argp) == 0) {
if (cfgetispeed(&argp) < B1200)
@@ -187,10 +182,6 @@
while (ac > 1 && av[0][0] == '-') {
switch (av[0][1]) {
- case 'a': /* append to log file */
- opencode = 'a';
- break;
-
case 'f': /* set fast mode */
Etc.fast++;
break;
@@ -205,10 +196,6 @@
break;
#endif
- case 'p': /* set priority */
- prio = atoi(av[0] + 2);
- break;
-
default:
printf("Invalid option: %s\n", av[0]);
@@ -218,10 +205,6 @@
}
if (ac > 2)
errx(1, "arg count");
- /*
- if (ac > 1)
- f_log = fopen(av[0], opencode);
- */
printf("\n * * * S T A R T R E K * * *\n\n"
"Press return to continue.\n");