1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 04:40:29 +02:00

* c-tokenize.lex: add option %nounput to quiet warning.

Add prototype for yylex to quiet warning.
This commit is contained in:
Rob Browning 2001-07-19 17:34:47 +00:00
parent cc1cd86b05
commit efcf4b5853

View file

@ -1,4 +1,5 @@
%option noyywrap
%option nounput
%pointer
EOL \n
@ -18,6 +19,8 @@ INTQUAL (l|L|ll|LL|lL|Ll|u|U)
#include <stdlib.h>
#include <string.h>
int yylex(void);
int filter_snarfage = 0;
int print = 1;