Skip to content
Snippets Groups Projects
Commit 6fcedfa3 authored by rms's avatar rms
Browse files

Initial revision

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14 138bc75d-0d04-0410-961f-82ee72b054a4
parent 4dac6a95
No related branches found
No related tags found
No related merge requests found
/* 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;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment