diff options
| author | Linus Torvalds <torvalds@home.transmeta.com> | 2003-03-16 22:22:38 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-07 20:59:20 -0700 |
| commit | 384be0b5bfe426bb3d2efc8b18f0fb8e3de7b098 (patch) | |
| tree | 963160cd701eadd68ca9dd85be9a7c458dc381bb /token.h | |
| parent | 9abdc01f8a8183d0e8f0ad7f2d601690136568cd (diff) | |
| download | sparse-dev-384be0b5bfe426bb3d2efc8b18f0fb8e3de7b098.tar.gz | |
Tokenize integer constants with "u" and "l" specifiers (drop them for now).
Fix three-character special token (... <<= >>=) tokenization
Diffstat (limited to 'token.h')
| -rw-r--r-- | token.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -87,7 +87,7 @@ struct string { struct token { unsigned int line; - unsigned int pos:16,stream:8,len:8; + unsigned int pos:16,stream:8; struct token *next; enum token_type type; |
