summaryrefslogtreecommitdiff
path: root/test/LEX
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2015-09-29 11:22:17 -0700
committerWilliam Deegan <bill@baddogconsulting.com>2015-09-29 11:22:17 -0700
commita7759f5e1ce74014bd0ca680c0146d435357bda6 (patch)
tree6e32826a75662b82640ca2f1d2027de06215cd64 /test/LEX
parentec51b69ea5ed266cef7be71ee1224081b990e01e (diff)
downloadscons-a7759f5e1ce74014bd0ca680c0146d435357bda6.tar.gz
Fix failing LEX/live.py because no return type was specified for main and apple compiler/flex complains about it in stderr
Diffstat (limited to 'test/LEX')
-rw-r--r--test/LEX/live.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/LEX/live.py b/test/LEX/live.py
index f50b06f3..e4b4dfb3 100644
--- a/test/LEX/live.py
+++ b/test/LEX/live.py
@@ -68,6 +68,7 @@ yywrap()
return 1;
}
+int
main()
{
yylex();