Restoring to unlinted version
[unix-history] / usr / src / usr.bin / pascal / src / CONFIG.c
CommitLineData
f1512527
PK
1 /*
2 * make sure you are editing
3 * CONFIG.c
4 * editing config.c won't work
5 */
6
72fbef68 7#ifndef lint
91543cf4 8static char *sccsid = "@(#)CONFIG.c 2.5 (Berkeley) 83/09/19";
72fbef68 9#endif
f1512527
PK
10
11 /*
12 * the version of translator
13 */
de1bbb38 14char *version = "VERSION (DATE)";
f1512527
PK
15
16 /*
17 * the location of the error strings
18 * and the length of the path to it
de1bbb38 19 * (in case of execution as a.something)
f1512527
PK
20 */
21char *err_file = "LIBDIR/ERRORSTRINGS";
f976a635 22int err_pathlen = sizeof("LIBDIR/")-1;
f1512527
PK
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 */
29char *how_file = "LIBDIR/HOWFILE\0";
f976a635 30int how_pathlen = sizeof("LIBDIR/")-1;
de1bbb38
PK
31
32 /*
33 * things about the interpreter.
34 * these are not used by the compiler.
35 */
72fbef68 36#ifndef PC
f1512527 37char *px_header = "LIBDIR/px_header"; /* px_header's name */
72fbef68
RT
38#endif
39
40#ifdef PXP
de1bbb38
PK
41char *pi_comp = "INSTALLDIR/pi"; /* the compiler's name */
42char *px_intrp = "INSTALLDIR/px"; /* the interpreter's name */
43char *px_debug = "INSTALLDIR/pdx"; /* the debugger's name */
72fbef68 44#endif