blob: ca6513cb81c1504c9f1a8ca7353f61a3e84a4c76 [file] [log] [blame]
%{
#include <stdlib.h>
#include "parser.tab.h"
extern int yylex(void);
extern int yyerror();
%}
%option noyywrap nounput noinput
%%
("true"|"false") {return BOOLEAN;}
. { yyerror(); }