mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-02 13:00:26 +02:00
* c-tokenize.lex: add option %nounput to quiet warning.
Add prototype for yylex to quiet warning.
This commit is contained in:
parent
cc1cd86b05
commit
efcf4b5853
1 changed files with 3 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
||||||
%option noyywrap
|
%option noyywrap
|
||||||
|
%option nounput
|
||||||
%pointer
|
%pointer
|
||||||
|
|
||||||
EOL \n
|
EOL \n
|
||||||
|
@ -18,6 +19,8 @@ INTQUAL (l|L|ll|LL|lL|Ll|u|U)
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
int yylex(void);
|
||||||
|
|
||||||
int filter_snarfage = 0;
|
int filter_snarfage = 0;
|
||||||
int print = 1;
|
int print = 1;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue