summaryrefslogtreecommitdiff
path: root/gcc/input.h
diff options
context:
space:
mode:
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>1990-08-20 17:49:07 +0000
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>1990-08-20 17:49:07 +0000
commit6fcedfa3949edbbec2fc7b7518a91689366d1940 (patch)
tree5cc8737f0a0faf77125f5ad410219fb81c1037a1 /gcc/input.h
parent4dac6a95f0ef20e4e7d3a4888e1433a956758a34 (diff)
downloadgcc-6fcedfa3949edbbec2fc7b7518a91689366d1940.tar.gz
Initial revision
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/input.h')
-rw-r--r--gcc/input.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/gcc/input.h b/gcc/input.h
new file mode 100644
index 00000000000..8c326f9e6a7
--- /dev/null
+++ b/gcc/input.h
@@ -0,0 +1,25 @@
+/* Source file current line is coming from. */
+extern char *input_filename;
+
+/* Top-level source file. */
+extern char *main_input_filename;
+
+/* Line number in current source file. */
+extern int lineno;
+
+/* Stream for reading from input file. */
+extern FILE *finput;
+
+struct file_stack
+ {
+ char *name;
+ struct file_stack *next;
+ int line;
+ };
+
+/* Stack of currently pending input files.
+ The line member is not accurate for the innermost file on the stack. */
+extern struct file_stack *input_file_stack;
+
+/* Incremented on each change to input_file_stack. */
+extern int input_file_stack_tick;