/* Merged parser stuff for demo plugin
 */

%{
extern int my_plugin_conf;
%}

%token DEMO

%%

line:
		DEMO bool	{my_plugin_conf = ($2!=0);}

%%

