From e3827acb73055d2e3b16deaecd83574af7a08399 Mon Sep 17 00:00:00 2001 From: Sergei Rogachev Date: Fri, 1 Mar 2019 10:25:05 +0300 Subject: fix mistyped prototype of lexer function --- test/t.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/t.y b/test/t.y index b8a184e..40b7f49 100644 --- a/test/t.y +++ b/test/t.y @@ -4,7 +4,7 @@ #include #include - int lex(void); + int yylex(void); %} %union { -- cgit v1.2.3