Imported Upstream version 1.10.2
[platform/upstream/krb5.git] / src / util / et / compiler.h
1 /* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2 /*
3  * definitions common to the source files of the error table compiler
4  */
5
6 enum lang {
7     lang_C,                     /* ANSI C (default) */
8     lang_KRC,                   /* C: ANSI + K&R */
9     lang_CPP                    /* C++ */
10 };
11
12 int debug;                      /* dump debugging info? */
13 char *filename;                 /* error table source */
14 enum lang language;
15 const char *whoami;