Subversion Repositories Vertical

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef BISON_EAGLE_YACC_TAB_H
  2. #define BISON_EAGLE_YACC_TAB_H
  3.  
  4. #ifndef YYSTYPE
  5. typedef union
  6. {
  7.         char *string;
  8. } yystype;
  9. #define YYSTYPE yystype
  10. #define YYSTYPE_IS_TRIVIAL 1
  11. #endif
  12. #define SPC 257
  13. #define NL 258
  14. #define ASTRING 259
  15.  
  16. extern YYSTYPE yylval;
  17.  
  18. #endif /* not BISON_EAGLE_YACC_TAB_H */
  19.