no enviornment passing around anymore in lexer, more work on lexer, import expression...
[cparser] / tokens_preprocessor.inc
1 #define S(x)   T(x,#x,)
2
3 S(if)
4 S(else)
5 S(elif)
6 S(endif)
7 S(ifdef)
8 S(ifndef)
9 S(include)
10 S(define)
11 S(undef)
12 S(line)
13 S(error)
14 S(pragma)
15
16 #undef S
17
18 #define TP_LAST_TOKEN  (TP_pragma + 1)