Subversion Repositories Vertical

Rev

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

  1. #ifndef BISON_REP2_YACC_TAB_H
  2. #define BISON_REP2_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 SPACE 257
  13. #define LF 258
  14. #define CR 259
  15. #define ENDFILE 260
  16. #define ASTRING 261
  17.  
  18. extern YYSTYPE yylval;
  19.  
  20. #endif /* not BISON_REP2_YACC_TAB_H */
  21.