%{ #include #include %} %token KEY DIV VALUE %% value: VALUE | VALUE value ; %% void yyerror(char *s) { fprintf(stderr, "%s\n", s); }