blob: 0d4178f7d706f16ac2639d2c3ee7e7326433d381 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
--- lex.l.orig 2000-02-25 01:41:11 UTC
+++ lex.l
@@ -167,6 +167,7 @@ QUOTED ({STRING}|\'(\\\'|[^'\n])*\'|\\.
<INITIAL>float return T_FLOAT;
<INITIAL>int return T_INT;
<INITIAL>void return T_VOID;
+<INITIAL>__builtin_va_list return T_VALIST;
<INITIAL>long return T_LONG;
<INITIAL>short return T_SHORT;
<INITIAL>signed return T_SIGNED;
|