diff options
Diffstat (limited to 'lexer.c')
| -rw-r--r-- | lexer.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -37,8 +37,6 @@ bool lexer_peek(struct token* p_token) { #define is_alphanumeric(c) (is_alpha(c) || is_numeric(c)) #define is_ident_legal(c) (is_alphanumeric(c) || c == '_' || c == '$') -#define REFUND_CHAR fseek(file, -1, SEEK_CUR) - static int consume_char() { int rv = lookahead; lookahead = fgetc(file); |
