diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lex.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -386,7 +386,8 @@ lex(struct lexer *lexer, struct token *out) } } -void unlex(struct lexer *lexer, const struct token *in) +void +unlex(struct lexer *lexer, const struct token *in) { assert(lexer->un.token == T_NONE); lexer->un = *in; |