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

  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;
  21.