Changeset 23de644 in mainline for uspace/app/sbi/src/lex_t.h
- Timestamp:
- 2010-04-04T22:31:01Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
- Children:
- 074444f, ecb6ac32
- Parents:
- 3aae4e8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/lex_t.h
r3aae4e8 r23de644 29 29 #ifndef LEX_T_H_ 30 30 #define LEX_T_H_ 31 32 #include "bigint_t.h" 31 33 32 34 /** Lexical element class */ … … 95 97 lc_assign, 96 98 lc_plus, 99 lc_minus, 100 lc_mult, 97 101 lc_increase, 98 102 … … 112 116 typedef struct { 113 117 /* Integer value */ 114 int value;118 bigint_t value; 115 119 } lem_lit_int_t; 116 120
Note:
See TracChangeset
for help on using the changeset viewer.