#ident	"@(#)yacc:files	1.5"
/* this file has the location of the parser, and the size of the progam desired */
/* It may also contain definitions to override various defaults: for example,
/* WORD32 tells yacc that there are at least 32 bits per int */
#ifndef WORD32
# define WORD32
#endif
/* on some systems, notably IBM, the names for the output files and tempfiles must
/* also be changed  */

/* location of the parser text file */
#if defined(mpx) && !defined(i386)
# define PARSER "/system/lib/yaccpar"
#else
#ifdef i386
# define PARSER "/u/lib/yaccpar"
#else
# define PARSER "/usr/lib/yaccpar"
#endif
#endif

	/* basic size of the Yacc implementation */
#ifdef WORD32
#ifdef mpx
# define MEDIUM
#else
# define HUGE
#endif
#else
# define MEDIUM
#endif
