xref: /csrg-svn/usr.bin/pascal/src/config.h (revision 22221)
1*22221Sdist /*
2*22221Sdist  * Copyright (c) 1980 Regents of the University of California.
3*22221Sdist  * All rights reserved.  The Berkeley software License Agreement
4*22221Sdist  * specifies the terms and conditions for redistribution.
5*22221Sdist  *
6*22221Sdist  *	@(#)config.h	5.1 (Berkeley) 06/05/85
7*22221Sdist  */
8*22221Sdist 
96404Speter     /*
106404Speter      *	external declarations of things from
116404Speter      *		CONFIG.c
126404Speter      *
136404Speter      */
146404Speter 
156404Speter     /*
166404Speter      *	the version of translator
176404Speter      */
186404Speter extern char	*version;
196404Speter 
206404Speter     /*
216404Speter      *	the location of the error strings
226404Speter      *	and the length of the path to it
236404Speter      *	(in case of execution of pc0 as a.out)
246404Speter      */
256404Speter extern char	*err_file;
266404Speter extern int	err_pathlen;
276404Speter 
286404Speter     /*
296404Speter      *	the location of the short explanation
306404Speter      *	and the length of the path to it
316404Speter      *	the null at the end is so pix can change it to pi'x' from pi.
326404Speter      */
336404Speter extern char	*how_file;
346404Speter extern int	how_pathlen;
356404Speter extern char	*px_header;
366404Speter extern char	*pi_comp;
376404Speter extern char	*px_intrp;
386404Speter extern char	*px_debug;
39