home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / compiler / byacc.lzh / byacc / test / error.y < prev    next >
Encoding:
Text File  |  1990-01-16  |  117 b   |  7 lines

  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);}
  7.