xref: /csrg-svn/old/yacc/files (revision 10931)
1*10931Srrh/*
2*10931Srrh *	@(#)files	4.1	(Berkeley)	83/02/11
3*10931Srrh */
4*10931Srrh	/* this file has the location of the parser, and the size of the progam desired */
5*10931Srrh	/* It may also contain definitions to override various defaults: for example,
6*10931Srrh	/* WORD32 tells yacc that there are at least 32 bits per int */
7*10931Srrh	/* on some systems, notably IBM, the names for the output files and tempfiles must
8*10931Srrh	/* also be changed  */
9*10931Srrh
10*10931Srrh#ifndef WORD32
11*10931Srrh#define WORD32
12*10931Srrh#endif
13*10931Srrh	/* location of the parser text file */
14*10931Srrh# define PARSER "/usr/lib/yaccpar"
15*10931Srrh
16*10931Srrh	/* basic size of the Yacc implementation */
17*10931Srrh# define HUGE
18