disable generation of unput() and input() in lexer to avoid code check fail

This commit is contained in:
Sven Vogel 2024-04-12 22:52:32 +02:00
parent 98c69026ba
commit b0ecb5d459
1 changed files with 6 additions and 1 deletions

View File

@ -6,6 +6,11 @@
int yylex();
%}
// disable the following functions
// to avoid failing code check
%option nounput
%option noinput
%%
.;
%%
%%