xref: /csrg-svn/usr.bin/pascal/src/CONFIG.c (revision 6403)
1*6403Speter     /*
2*6403Speter      *	make sure you are editing
3*6403Speter      *		CONFIG.c
4*6403Speter      *	editing config.c won't work
5*6403Speter      */
6*6403Speter 
7*6403Speter static	char *sccsid = "@(#)CONFIG.c	1.1 (Berkeley) 82/03/31";
8*6403Speter 
9*6403Speter     /*
10*6403Speter      *	the version of translator
11*6403Speter      */
12*6403Speter char	*version = "1.1 (VERSION 03/31/82)";
13*6403Speter 
14*6403Speter     /*
15*6403Speter      *	the location of the error strings
16*6403Speter      *	and the length of the path to it
17*6403Speter      *	(in case of execution of pc0 as a.out)
18*6403Speter      */
19*6403Speter char	*err_file = "LIBDIR/ERRORSTRINGS";
20*6403Speter int	err_pathlen = sizeof("LIBDIR/");
21*6403Speter 
22*6403Speter     /*
23*6403Speter      *	the location of the short explanation
24*6403Speter      *	and the length of the path to it
25*6403Speter      *	the null at the end is so pix can change it to pi'x' from pi.
26*6403Speter      */
27*6403Speter char	*how_file = "LIBDIR/HOWFILE\0";
28*6403Speter int	how_pathlen = sizeof("LIBDIR/");
29*6403Speter char	*px_header = "LIBDIR/px_header";	/* px_header's name */
30*6403Speter char	*pi_comp = "INTERPDIR/pi";		/* the compiler's name */
31*6403Speter char	*px_intrp = "INTERPDIR/px";		/* the interpreter's name */
32*6403Speter char	*px_debug = "INTERPDIR/pdx";		/* the debugger's name */
33