#include #include "gram.tab.h" int main() { yyparse(); } int yywrap( ) { return 1; } void yyerror(char *s) { printf("<%s!!>",s); }