summaryrefslogtreecommitdiff
path: root/zwgc/main.c
diff options
context:
space:
mode:
authorGravatar John Kohl <jtkohl@mit.edu>1989-11-15 05:01:08 +0000
committerGravatar John Kohl <jtkohl@mit.edu>1989-11-15 05:01:08 +0000
commit89855127c3d8a62ddf1b9058714966288d192605 (patch)
treea13bd5109f2ecccf29f90eba7a9fc3745cc6da0a /zwgc/main.c
parent04a695d634d645226451e2f59d4f3cb4fd040867 (diff)
use #defined string constants
Diffstat (limited to 'zwgc/main.c')
-rw-r--r--zwgc/main.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/zwgc/main.c b/zwgc/main.c
index f965cc3..178c69d 100644
--- a/zwgc/main.c
+++ b/zwgc/main.c
@@ -13,7 +13,7 @@
*/
#if (!defined(lint) && !defined(SABER))
-static char rcsid_main_c[] = "$Header$";
+static char rcsid_main_c[] = "$Id$";
#endif
#include <zephyr/mit-copyright.h>
@@ -104,8 +104,7 @@ static void read_in_description_file()
/* var_clear_all_variables(); <<<>>> */
- input_file = locate_file(description_filename_override, ".zwgc.desc",
- "/afs/athena.mit.edu/astaff/project/zephyr/src/zwgc/zwgc.dev/misc/zwgc.desc");
+ input_file = locate_file(description_filename_override, USRDESC, DEFDESC);
if (input_file)
program = parse_file(input_file);
else