aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2020-07-01 23:36:05 +0200
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2020-07-02 21:07:58 +0200
commita717e30bdf1ade23a28b644d1cb9f1161030d3b3 (patch)
tree740753d1a54186101bd3c21717a61aa6df986ef0
parent6e43ab07fa278305978ece365f97ec72c2ef5bde (diff)
downloadsparse-a717e30bdf1ade23a28b644d1cb9f1161030d3b3.tar.gz
options: move declaration of tabstop out of "token.h"
'tabstop' is unusual in the sense that it's one the few (the only?) variable defined via an option flag which is not declared in "lib.h" but in "token.h". This for to have to include "token.h" in the code doing the parsing of the options ... Move this declaration to "lib.h". Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
-rw-r--r--lib.h1
-rw-r--r--token.h1
2 files changed, 1 insertions, 1 deletions
diff --git a/lib.h b/lib.h
index 4f67958e..e938f18d 100644
--- a/lib.h
+++ b/lib.h
@@ -48,6 +48,7 @@ extern int die_if_error;
extern int repeat_phase;
extern int do_output;
extern int gcc_major, gcc_minor, gcc_patchlevel;
+extern unsigned int tabstop;
extern const char *base_filename;
diff --git a/token.h b/token.h
index 33a6eda1..c5fdf3d0 100644
--- a/token.h
+++ b/token.h
@@ -64,7 +64,6 @@ struct stream {
extern int input_stream_nr;
extern struct stream *input_streams;
-extern unsigned int tabstop;
extern int *hash_stream(const char *name);
struct ident {