diff options
author | Steven Knight <knight@baldmt.com> | 2003-06-15 01:45:15 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-06-15 01:45:15 (GMT) |
commit | d0acf56c9c4ee38ab3c709eb173a42bf3d6d4349 (patch) | |
tree | 43ce58bd9f5dc689acb78a78f83b79c601eb3cfd /test/YACC.py | |
parent | 7414ccf0c3ddcdde49574a3a0e6f36c96908c549 (diff) | |
download | SCons-d0acf56c9c4ee38ab3c709eb173a42bf3d6d4349.zip SCons-d0acf56c9c4ee38ab3c709eb173a42bf3d6d4349.tar.gz SCons-d0acf56c9c4ee38ab3c709eb173a42bf3d6d4349.tar.bz2 |
Portability fixes for non-GNU lex and yacc. (Chad Austin)
Diffstat (limited to 'test/YACC.py')
-rw-r--r-- | test/YACC.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/YACC.py b/test/YACC.py index b44add1..68a0ba5 100644 --- a/test/YACC.py +++ b/test/YACC.py @@ -118,6 +118,7 @@ yyerror(s) char *s; { fprintf(stderr, "%%s\n", s); + return 0; } yylex() |