~ubuntu-branches/ubuntu/warty/openafs/warty

« back to all changes in this revision

Viewing changes to src/comerr/compiler.h

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hartman
  • Date: 2004-01-10 16:37:33 UTC
  • Revision ID: james.westby@ubuntu.com-20040110163733-jvr0n1uahshlb1uu
Tags: upstream-1.2.11
ImportĀ upstreamĀ versionĀ 1.2.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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);