diff options
author | Andy Wingo <wingo@pobox.com> | 2010-03-26 13:20:00 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2010-03-26 13:22:10 +0100 |
commit | 83a7b43bf2bf445af9d2611252deaacb4de7095e (patch) | |
tree | 66433eba46fc83eafe864c4620984e05f21b5ceb /libguile/c-tokenize.lex | |
parent | 1f51e2757c0c6fc4a963c6f46578241e84be871e (diff) |
remove spurious declarations in c-tokenize.lex
* libguile/c-tokenize.lex: Remove spurious declarations of flex-internal
functions, as their prototypes are changing in upstream flex.
Diffstat (limited to 'libguile/c-tokenize.lex')
-rw-r--r-- | libguile/c-tokenize.lex | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libguile/c-tokenize.lex b/libguile/c-tokenize.lex index 938a5d2cf..dc7225778 100644 --- a/libguile/c-tokenize.lex +++ b/libguile/c-tokenize.lex @@ -24,20 +24,6 @@ INTQUAL (l|L|ll|LL|lL|Ll|u|U) an error for that. */ #define YY_NO_INPUT -int yylex(void); - -int yyget_lineno (void); -FILE *yyget_in (void); -FILE *yyget_out (void); -int yyget_leng (void); -char *yyget_text (void); -void yyset_lineno (int line_number); -void yyset_in (FILE * in_str); -void yyset_out (FILE * out_str); -int yyget_debug (void); -void yyset_debug (int bdebug); -int yylex_destroy (void); - int filter_snarfage = 0; int print = 1; |