
#include "calc.h"

main()
{
  yyparse();
}

yywrap()
{
  return 1;
}

yyerror()
{
  fprintf (stderr, "Parse error\n");
}
