commit 15c5cf091ac990eb1e69c3fced21d2389d9aef96 parent 49e03746f96a0ee887a57d61e608fabc6bc9aa5b Author: Mario Rosell R. Martinez <mario@mariorosell.es> Date: Sat, 4 Apr 2026 11:45:53 +0200 please work Diffstat:
| M | lex.h | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lex.h b/lex.h @@ -40,13 +40,13 @@ enum toktype { }; struct tok { - toktype_t type; + toktype type; char lexeme[64]; }; struct keyword { const char *name; - toktype_t type; + enum toktype type; }; typedef enum toktype toktype_t;