home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
misc
/
volume17
/
com_err
/
part01
/
compiler.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-02-25
|
379b
|
21 lines
/*
* 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;