%{ #include void yyerror(char *); #include "y.tab.h" %} %% [0-9]+ { yylavl = atoi(yytext) ; return INTEGER; } [-+\n] return *yytext; [ \t] ; /*skip whitespace */ . yyerror{" invalid charecter" }; %% int yywarp(void) { return 1; }