[BACK]Return to calc.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / gmp / demos

Annotation of OpenXM_contrib/gmp/demos/calc.h, Revision 1.1

1.1     ! maekawa     1: typedef union {
        !             2:   char  *str;
        !             3:   int   var;
        !             4: } YYSTYPE;
        !             5: #define        EOS     257
        !             6: #define        BAD     258
        !             7: #define        HEX     259
        !             8: #define        DECIMAL 260
        !             9: #define        QUIT    261
        !            10: #define        ABS     262
        !            11: #define        BIN     263
        !            12: #define        FIB     264
        !            13: #define        GCD     265
        !            14: #define        LCM     266
        !            15: #define        NEXTPRIME       267
        !            16: #define        POWM    268
        !            17: #define        ROOT    269
        !            18: #define        SQRT    270
        !            19: #define        NUMBER  271
        !            20: #define        VARIABLE        272
        !            21: #define        LOR     273
        !            22: #define        LAND    274
        !            23: #define        EQ      275
        !            24: #define        NE      276
        !            25: #define        LE      277
        !            26: #define        GE      278
        !            27: #define        LSHIFT  279
        !            28: #define        RSHIFT  280
        !            29: #define        UMINUS  281
        !            30:
        !            31:
        !            32: extern YYSTYPE yylval;

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