[PATCH 09/15] options: move declaration of tabstop out of "token.h"

From: Luc Van Oostenryck
Date: Thu Jul 02 2020 - 19:11:53 EST


'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@xxxxxxxxx>
---
lib.h | 1 +
token.h | 1 -
2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib.h b/lib.h
index 4f67958efdb9..e938f18dfc92 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 33a6eda1cc53..c5fdf3d0c879 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 {
--
2.27.0