Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / comerr / compiler.h
1 /*
2 * definitions common to the source files of the error table compiler
3 */
4
5 enum lang {
6 lang_C, /* ANSI C (default) */
7 lang_KRC, /* C: ANSI + K&R */
8 lang_CPP /* C++ */
9 };
10
11 int debug; /* dump debugging info? */
12 char *filename; /* error table source */
13 enum lang language;
14 const char *whoami;
15 /* prototypes for functions from the yacc/lex generated src */
16 int yyparse(void);