From 089b32203cb485b9115f03f35d2b437e848c78da Mon Sep 17 00:00:00 2001 From: William Deegan Date: Tue, 29 Sep 2015 11:22:17 -0700 Subject: Fix failing LEX/live.py because no return type was specified for main and apple compiler/flex complains about it in stderr --- test/LEX/live.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/LEX/live.py b/test/LEX/live.py index f50b06f..e4b4dfb 100644 --- a/test/LEX/live.py +++ b/test/LEX/live.py @@ -68,6 +68,7 @@ yywrap() return 1; } +int main() { yylex(); -- cgit v0.12