home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 342a.lha / Yacc_v1.0a / test / dc.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-02-05  |  105 b   |  14 lines

  1. extern void yyparse();
  2.  
  3. yyerror(c)
  4.     char *c;
  5. {
  6.     puts(c);
  7.     exit(2);
  8. }
  9.  
  10. main()
  11. {
  12.     yyparse();
  13. }
  14.