]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.bin/yacc/test/error.y
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / usr.bin / yacc / test / error.y
1 %%
2 S: error
3 %%
4 main(){printf("yyparse() = %d\n",yyparse());}
5 yylex(){return-1;}
6 yyerror(s)char*s;{printf("%s\n",s);}