diff options
author | Himbeer <himbeer@disroot.org> | 2024-09-17 10:26:59 +0200 |
---|---|---|
committer | Himbeer <himbeer@disroot.org> | 2024-09-17 18:01:09 +0200 |
commit | fd90d274ffc332eef43ce80b24acc89c1419b6cb (patch) | |
tree | 63cdc40520e3acee3ecd6cd5297048d0ae9ecf68 | |
parent | f03688fa74b9bb3f13a106e61a3d7f2e9e85c8f8 (diff) |
Fix unlex function return type and name being on the same line
-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; |