tcp: Fix 64 bit build with debugging features enabled.
[haiku.git] / src / bin / pc / lex.h
blobc25a567a64c80df1fe331b041788a8dba8812901
1 #define PLUS '+'
2 #define MINUS '-'
3 #define OR '|'
4 #define SHIFT_L '<'
5 #define SHIFT_R '>'
7 #define TIMES '*'
8 #define DIVISION '/'
9 #define MODULO '%'
10 #define AND '&'
11 #define XOR '^'
13 #define NEGATIVE '-'
14 #define BANG '!'
15 #define TWIDDLE '~'
17 #define NOTHING '\0'
19 #define LPAREN '('
20 #define RPAREN ')'
22 #define EQUAL '='
24 #define LESS_THAN '<'
25 #define GREATER_THAN '>'
27 #define SEMI_COLON ';'
28 #define COMMA ','
30 #define SINGLE_QUOTE '\''
32 #define USE_LAST_RESULT '.'