1 #ifndef _calc1__defines_h_ 2 #define _calc1__defines_h_ 3 4 #define DREG 257 5 #define VREG 258 6 #define CONST 259 7 #define UMINUS 260 8 #ifdef YYSTYPE 9 #undef YYSTYPE_IS_DECLARED 10 #define YYSTYPE_IS_DECLARED 1 11 #endif 12 #ifndef YYSTYPE_IS_DECLARED 13 #define YYSTYPE_IS_DECLARED 1 14 typedef union 15 { 16 int ival; 17 double dval; 18 INTERVAL vval; 19 } YYSTYPE; 20 #endif /* !YYSTYPE_IS_DECLARED */ 21 22 #endif /* _calc1__defines_h_ */ 23