arith_yacc.h (6262b84eee5cf10b00b692a4eadbc63d50972013) | arith_yacc.h (22ea47ec90b51ecbe6d2883ccee30d312c162044) |
---|---|
1/*- 2 * Copyright (c) 1993 3 * The Regents of the University of California. All rights reserved. 4 * Copyright (c) 2007 5 * Herbert Xu <herbert@gondor.apana.org.au>. All rights reserved. 6 * 7 * This code is derived from software contributed to Berkeley by 8 * Kenneth Almquist. --- 67 unchanged lines hidden (view full) --- 76#define ARITH_ASS_MAX 34 77 78#define ARITH_LPAREN 34 79#define ARITH_RPAREN 35 80#define ARITH_BNOT 36 81#define ARITH_QMARK 37 82#define ARITH_COLON 38 83 | 1/*- 2 * Copyright (c) 1993 3 * The Regents of the University of California. All rights reserved. 4 * Copyright (c) 2007 5 * Herbert Xu <herbert@gondor.apana.org.au>. All rights reserved. 6 * 7 * This code is derived from software contributed to Berkeley by 8 * Kenneth Almquist. --- 67 unchanged lines hidden (view full) --- 76#define ARITH_ASS_MAX 34 77 78#define ARITH_LPAREN 34 79#define ARITH_RPAREN 35 80#define ARITH_BNOT 36 81#define ARITH_QMARK 37 82#define ARITH_COLON 38 83 |
84extern const char *arith_buf; 85 |
|
84union yystype { 85 arith_t val; 86 char *name; 87}; 88 89extern union yystype yylval; 90 91int yylex(void); | 86union yystype { 87 arith_t val; 88 char *name; 89}; 90 91extern union yystype yylval; 92 93int yylex(void); |