mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-18 08:43:03 +00:00
Clean up scanners a bit.
* src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack definitions so gcc won't warn when obstack_for_string is unused. * src/scan-code.l: config.h and system.h are already #include'd by scan-code-c.c, so get rid of them here. * src/scan-gram.l: Likewise. * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack definitions rather than duplicating the rest of it. * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
This commit is contained in:
@@ -29,7 +29,9 @@
|
||||
#undef skel_wrap
|
||||
#define skel_wrap() 1
|
||||
|
||||
#include "system.h"
|
||||
#define FLEX_NO_OBSTACK
|
||||
#define FLEX_PREFIX(Id) skel_ ## Id
|
||||
#include "flex-scanner.h"
|
||||
|
||||
#include <dirname.h>
|
||||
#include <error.h>
|
||||
@@ -40,19 +42,7 @@
|
||||
#include "files.h"
|
||||
#include "scan-skel.h"
|
||||
|
||||
/* Pacify "gcc -Wmissing-prototypes" when flex 2.5.31 is used. */
|
||||
int skel_lex (void);
|
||||
int skel_get_lineno (void);
|
||||
FILE *skel_get_in (void);
|
||||
FILE *skel_get_out (void);
|
||||
int skel_get_leng (void);
|
||||
char *skel_get_text (void);
|
||||
void skel_set_lineno (int);
|
||||
void skel_set_in (FILE *);
|
||||
void skel_set_out (FILE *);
|
||||
int skel_get_debug (void);
|
||||
void skel_set_debug (int);
|
||||
int skel_lex_destroy (void);
|
||||
|
||||
#define QPUTS(String) \
|
||||
fputs (quotearg_style (c_quoting_style, String), yyout)
|
||||
|
||||
Reference in New Issue
Block a user