1 /* 2 * make sure you are editing 3 * CONFIG.c 4 * editing config.c won't work 5 */ 6 7 static char *sccsid = "@(#)CONFIG.c 2.1 (Berkeley) 82/03/31"; 8 9 /* 10 * the version of translator 11 */ 12 char *version = "2.1 (VERSION 03/31/82)"; 13 14 /* 15 * the location of the error strings 16 * and the length of the path to it 17 * (in case of execution of pc0 as a.out) 18 */ 19 char *err_file = "LIBDIR/ERRORSTRINGS"; 20 int err_pathlen = sizeof("LIBDIR/"); 21 22 /* 23 * the location of the short explanation 24 * and the length of the path to it 25 * the null at the end is so pix can change it to pi'x' from pi. 26 */ 27 char *how_file = "LIBDIR/HOWFILE\0"; 28 int how_pathlen = sizeof("LIBDIR/"); 29 char *px_header = "LIBDIR/px_header"; /* px_header's name */ 30 char *pi_comp = "INTERPDIR/pi"; /* the compiler's name */ 31 char *px_intrp = "INTERPDIR/px"; /* the interpreter's name */ 32 char *px_debug = "INTERPDIR/pdx"; /* the debugger's name */ 33