Sync usage with man page.
[netbsd-mini2440.git] / gnu / usr.bin / g++ / cc1plus / input.h
blob270f267750a0172369fc768c1217279fc5fc102b
1 /* Source file current line is coming from. */
2 extern char *input_filename;
4 /* Top-level source file. */
5 extern char *main_input_filename;
7 /* Line number in current source file. */
8 extern int lineno;
10 struct file_stack
12 char *name;
13 struct file_stack *next;
14 int line;
17 /* Stack of currently pending input files.
18 The line member is not accurate for the innermost file on the stack. */
19 extern struct file_stack *input_file_stack;
21 /* Incremented on each change to input_file_stack. */
22 extern int input_file_stack_tick;