xref: /original-bsd/usr.bin/pascal/src/CONFIG.c (revision b3b53e97)
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.3 (Berkeley) 82/04/01";
8 
9     /*
10      *	the version of translator
11      */
12 char	*version = "VERSION (DATE)";
13 
14     /*
15      *	the location of the error strings
16      *	and the length of the path to it
17      *	(in case of execution as a.something)
18      */
19 char	*err_file = "LIBDIR/ERRORSTRINGS";
20 int	err_pathlen = sizeof("LIBDIR/")-1;
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/")-1;
29 
30     /*
31      *	things about the interpreter.
32      *	these are not used by the compiler.
33      */
34 char	*px_header = "LIBDIR/px_header";	/* px_header's name */
35 char	*pi_comp = "INSTALLDIR/pi";		/* the compiler's name */
36 char	*px_intrp = "INSTALLDIR/px";		/* the interpreter's name */
37 char	*px_debug = "INSTALLDIR/pdx";		/* the debugger's name */
38