diff options
| author | Sergei Rogachev | 2019-03-01 10:25:05 +0300 |
|---|---|---|
| committer | Quentin Carbonneaux | 2019-03-25 21:50:59 +0100 |
| commit | e3827acb73055d2e3b16deaecd83574af7a08399 (patch) | |
| tree | a724020811a4ed27c618f0f102ec6e5a25ea505a | |
| parent | 1bf2c09a62f3e17ffdebe66b18b6a87e94a4cb88 (diff) | |
fix mistyped prototype of lexer function
| -rw-r--r-- | test/t.y | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ #include <stdlib.h> #include <string.h> - int lex(void); + int yylex(void); %} %union { |
