xref: /original-bsd/usr.bin/pascal/src/CONFIG.c (revision e78e7ec3)
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 = "VERSION (DATE)";
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 = "LIBDIR/ERRORSTRINGS";
22 int	err_pathlen = sizeof("LIBDIR/")-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 = "LIBDIR/HOWFILE\0";
30 int	how_pathlen = sizeof("LIBDIR/")-1;
31 
32     /*
33      *	things about the interpreter.
34      *	these are not used by the compiler.
35      */
36 #ifndef PC
37 char	*px_header = "LIBDIR/px_header";	/* px_header's name */
38 #endif
39 
40 #ifndef PXP
41 char	*pi_comp = "INSTALLDIR/pi";		/* the compiler's name */
42 char	*px_intrp = "INSTALLDIR/px";		/* the interpreter's name */
43 char	*px_debug = "INSTALLDIR/pdx";		/* the debugger's name */
44 #endif
45