[BACK]Return to ytab.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / parse

Diff for /OpenXM_contrib2/asir2000/parse/ytab.h between version 1.2 and 1.5

version 1.2, 2001/04/20 08:31:07 version 1.5, 2004/03/18 01:24:23
Line 1 
Line 1 
 #ifndef YYERRCODE  #ifndef BISON_Y_TAB_H
 #define YYERRCODE 256  # define BISON_Y_TAB_H
 #endif  
   
 #define STRUCT 257  #ifndef YYSTYPE
 #define POINT 258  
 #define NEWSTRUCT 259  
 #define ANS 260  
 #define FDEF 261  
 #define PFDEF 262  
 #define GLOBAL 263  
 #define CMP 264  
 #define OR 265  
 #define AND 266  
 #define CAR 267  
 #define CDR 268  
 #define QUOTED 269  
 #define DO 270  
 #define WHILE 271  
 #define FOR 272  
 #define IF 273  
 #define ELSE 274  
 #define BREAK 275  
 #define RETURN 276  
 #define CONTINUE 277  
 #define PARIF 278  
 #define MAP 279  
 #define TIMER 280  
 #define GF2NGEN 281  
 #define GFPNGEN 282  
 #define GETOPT 283  
 #define FOP_AND 284  
 #define FOP_OR 285  
 #define FOP_IMPL 286  
 #define FOP_REPL 287  
 #define FOP_EQUIV 288  
 #define FOP_NOT 289  
 #define LOP 290  
 #define FORMULA 291  
 #define UCASE 292  
 #define LCASE 293  
 #define STR 294  
 #define SELF 295  
 #define BOPASS 296  
 #define PLUS 297  
 #define MINUS 298  
 typedef union {  typedef union {
         FNODE f;          FNODE f;
         SNODE s;          SNODE s;
Line 51  typedef union {
Line 9  typedef union {
         NODE2 n2;          NODE2 n2;
         int i;          int i;
         pointer p;          pointer p;
 } YYSTYPE;  } yystype;
   # define YYSTYPE yystype
   # define YYSTYPE_IS_TRIVIAL 1
   #endif
   # define        STRUCT  257
   # define        POINT   258
   # define        NEWSTRUCT       259
   # define        ANS     260
   # define        FDEF    261
   # define        PFDEF   262
   # define        MODDEF  263
   # define        MODEND  264
   # define        GLOBAL  265
   # define        MGLOBAL 266
   # define        LOCAL   267
   # define        LOCALF  268
   # define        CMP     269
   # define        OR      270
   # define        AND     271
   # define        CAR     272
   # define        CDR     273
   # define        QUOTED  274
   # define        COLONCOLON      275
   # define        DO      276
   # define        WHILE   277
   # define        FOR     278
   # define        IF      279
   # define        ELSE    280
   # define        BREAK   281
   # define        RETURN  282
   # define        CONTINUE        283
   # define        PARIF   284
   # define        MAP     285
   # define        RECMAP  286
   # define        TIMER   287
   # define        GF2NGEN 288
   # define        GFPNGEN 289
   # define        GFSNGEN 290
   # define        GETOPT  291
   # define        FOP_AND 292
   # define        FOP_OR  293
   # define        FOP_IMPL        294
   # define        FOP_REPL        295
   # define        FOP_EQUIV       296
   # define        FOP_NOT 297
   # define        LOP     298
   # define        FORMULA 299
   # define        UCASE   300
   # define        LCASE   301
   # define        STR     302
   # define        SELF    303
   # define        BOPASS  304
   # define        PLUS    305
   # define        MINUS   306
   
   
 extern YYSTYPE yylval;  extern YYSTYPE yylval;
   
   #endif /* not BISON_Y_TAB_H */

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.5

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>