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

(yyget_lineno, yyget_in, yyget_out, yyget_leng,

yyget_text, yyset_lineno, yyset_in, yyset_out, yyget_debug,
yyset_debug, yylex_destroy): Added prototypes (otherwise we'll get
a compilation error if error-on-warning is enabled).
This commit is contained in:
Mikael Djurfeldt 2003-05-19 09:57:01 +00:00
parent 26a249471a
commit 7e59d9d437
2 changed files with 21 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2003-05-19 Mikael Djurfeldt <djurfeldt@nada.kth.se>
* c-tokenize.lex (yyget_lineno, yyget_in, yyget_out, yyget_leng,
yyget_text, yyset_lineno, yyset_in, yyset_out, yyget_debug,
yyset_debug, yylex_destroy): Added prototypes (otherwise we'll get
a compilation error if error-on-warning is enabled).
2003-05-17 Marius Vollmer <mvo@zagadka.de>
* c-tokenize.lex: Gobble up complete lines after a '#'. This

View file

@ -18,9 +18,21 @@ INTQUAL (l|L|ll|LL|lL|Ll|u|U)
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int yylex(void);
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;