new copyright; att/bsd/shared
[unix-history] / usr / src / usr.bin / pascal / src / CONFIG.c
CommitLineData
0fc6e47b
KB
1/*-
2 * Copyright (c) 1980 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
b79f4fa9
DF
6 */
7
8#ifndef lint
0fc6e47b
KB
9static char sccsid[] = "@(#)CONFIG.c 5.6 (Berkeley) %G%";
10#endif /* not lint */
b79f4fa9 11
f1512527
PK
12 /*
13 * make sure you are editing
14 * CONFIG.c
15 * editing config.c won't work
16 */
17
f1512527
PK
18 /*
19 * the version of translator
20 */
de1bbb38 21char *version = "VERSION (DATE)";
f1512527
PK
22
23 /*
24 * the location of the error strings
25 * and the length of the path to it
de1bbb38 26 * (in case of execution as a.something)
f1512527 27 */
9a59dac1 28char *err_file = "LIBDATA/ERRORSTRINGS";
55cd9e3c 29int err_pathlen = sizeof("LIBDATA/")-1;
f1512527
PK
30
31 /*
32 * the location of the short explanation
33 * and the length of the path to it
34 * the null at the end is so pix can change it to pi'x' from pi.
35 */
9a59dac1
KB
36char how_string[] = "LIBDATA/HOWFILE\0";
37char *how_file = how_string;
55cd9e3c 38int how_pathlen = sizeof("LIBDATA/")-1;
de1bbb38
PK
39
40 /*
41 * things about the interpreter.
42 * these are not used by the compiler.
43 */
72fbef68 44#ifndef PC
55cd9e3c 45char *px_header = "LIBEXEC/px_header"; /* px_header's name */
72fbef68
RT
46#endif
47
91137e54 48#ifndef PXP
de1bbb38
PK
49char *pi_comp = "INSTALLDIR/pi"; /* the compiler's name */
50char *px_intrp = "INSTALLDIR/px"; /* the interpreter's name */
51char *px_debug = "INSTALLDIR/pdx"; /* the debugger's name */
72fbef68 52#endif