freebsd-dev/usr.bin/compile_et/compiler.h
Garrett Wollman 5e914d3b8d Upgrade to latest released SIPB version I can find. (Unfortunately, the
original releases were not numbered.)
1995-01-14 22:29:34 +00:00

21 lines
379 B
C

/*
* definitions common to the source files of the error table compiler
*/
#ifndef __STDC__
/* loser */
#undef const
#define const
#endif
enum lang {
lang_C, /* ANSI C (default) */
lang_KRC, /* C: ANSI + K&R */
lang_CPP /* C++ */
};
int debug; /* dump debugging info? */
char *filename; /* error table source */
enum lang language;
const char *whoami;