1: /*
2: * make sure you are editing
3: * CONFIG.c
4: * editing config.c won't work
5: */
6:
7: #ifndef lint
8: static char *sccsid = "@(#)CONFIG.c 2.7 (Berkeley) 84/02/08";
9: #endif
10:
11: /*
12: * the version of translator
13: */
14: char *version = "3.1 (2/8/84)";
15:
16: /*
17: * the location of the error strings
18: * and the length of the path to it
19: * (in case of execution as a.something)
20: */
21: char *err_file = "/usr/lib/pi3.1strings";
22: int err_pathlen = sizeof("/usr/lib/")-1;
23:
24: /*
25: * the location of the short explanation
26: * and the length of the path to it
27: * the null at the end is so pix can change it to pi'x' from pi.
28: */
29: char *how_file = "/usr/lib/how_pi\0";
30: int how_pathlen = sizeof("/usr/lib/")-1;
31:
32: /*
33: * things about the interpreter.
34: * these are not used by the compiler.
35: */
36: #ifndef PC
37: char * = "/usr/lib/px_header"; /* px_header's name */
38: #endif
39:
40: #ifndef PXP
41: char *pi_comp = "/usr/ucb/pi"; /* the compiler's name */
42: char *px_intrp = "/usr/ucb/px"; /* the interpreter's name */
43: char *px_debug = "/usr/ucb/pdx"; /* the debugger's name */
44: #endif
Defined variables
defined in line
37;
never used
sccsid
defined in line
8;
never used