add directory gnu

This commit is contained in:
gohigh
2024-02-19 00:24:47 -05:00
parent 32616db5a4
commit a40f4cadb0
5086 changed files with 1860970 additions and 0 deletions

25
gnu/gcc/gcc-2.2.2/input.h Normal file
View File

@@ -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;