extern void yyparse();

yyerror(c)
    char *c;
{
    puts(c);
    exit(2);
}

main()
{
    yyparse();
}
