mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-07-19 05:24:26 +08:00
Don't generate input & unput in lexer
This quiets the compiler warnings about defined but not used functions
This commit is contained in:
parent
2ffd30a858
commit
1cc4f659e4
@ -23,6 +23,9 @@
|
|||||||
extern int mdb_sql_yyinput(char *buf, int need);
|
extern int mdb_sql_yyinput(char *buf, int need);
|
||||||
%}
|
%}
|
||||||
|
|
||||||
|
%option nounput
|
||||||
|
%option noinput
|
||||||
|
|
||||||
%%
|
%%
|
||||||
select { return SELECT; }
|
select { return SELECT; }
|
||||||
from { return FROM; }
|
from { return FROM; }
|
||||||
|
Loading…
Reference in New Issue
Block a user