Don't generate input & unput in lexer

This quiets the compiler warnings about defined but not used functions
This commit is contained in:
Jean-Michel Vourgère 2012-06-30 20:15:27 +02:00
parent 2ffd30a858
commit 1cc4f659e4

View File

@ -23,6 +23,9 @@
extern int mdb_sql_yyinput(char *buf, int need);
%}
%option nounput
%option noinput
%%
select { return SELECT; }
from { return FROM; }