/* * Canged to RT11 * $01 Kowrigin D.A. 07-Aug-85 */ /* 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 */ /* on some systems, notably IBM, the names for the output files and tempfiles must /* also be changed */ /* location of the parser text file */ # ifdef unix /* $01 */ # define PARSER "/usr/lib/yaccpar" # endif /* $01 */ # ifdef rt11 /* $01+ */ # define PARSER "c:yypars.yy" # define TEMPNAME "yacc.tmp" # define ACTNAME "yacc.act" # define OFILE "ytab.c" # define FILEU "y.out" # define FILED "ytab.h" # define ZAPFILE(x) delete(x) # endif /* $01- */ /* basic size of the Yacc implementation */ # define K56 /* For TSX-PLUS - 56 KB */ /* $01 */