diff options
author | Rob Browning <rlb@defaultvalue.org> | 2001-07-19 17:45:01 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2001-07-19 17:45:01 +0000 |
commit | e80bea704d370ad1e58f53229599bac153f16a74 (patch) | |
tree | 14dcbf16dbdcaec30441e6e19606dde3a5a467c1 /libguile/c-tokenize.lex | |
parent | f28108ee142c8c05c4273342a051e3018de22343 (diff) |
* c-tokenize.lex: add option %nounput to quiet warning.
Add prototype for yylex to quiet warning.
Diffstat (limited to 'libguile/c-tokenize.lex')
-rw-r--r-- | libguile/c-tokenize.lex | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libguile/c-tokenize.lex b/libguile/c-tokenize.lex index 9c6c9387d..b48354c32 100644 --- a/libguile/c-tokenize.lex +++ b/libguile/c-tokenize.lex @@ -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; |