]> andersk Git - moira.git/blob - util/et/compiler.h
sync'ing files for RCS->CVS migration
[moira.git] / util / et / compiler.h
1 /*
2  * definitions common to the source files of the error table compiler
3  */
4
5 #ifndef __STDC__
6 /* loser */
7 #undef const
8 #define const
9 #endif
10
11 enum lang {
12     lang_C,                     /* ANSI C (default) */
13     lang_KRC,                   /* C: ANSI + K&R */
14     lang_CPP                    /* C++ */
15 };
16
17 int debug;                      /* dump debugging info? */
18 char *filename;                 /* error table source */
19 enum lang language;
20 const char *whoami;
This page took 0.107061 seconds and 5 git commands to generate.