diff options
Diffstat (limited to 'gcc/fortran/gfortran.h')
-rw-r--r-- | gcc/fortran/gfortran.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/fortran/gfortran.h b/gcc/fortran/gfortran.h index 52ebe932f0e..9f83c795388 100644 --- a/gcc/fortran/gfortran.h +++ b/gcc/fortran/gfortran.h @@ -706,7 +706,7 @@ symbol_attribute; typedef struct gfc_file { - struct gfc_file *included_by, *next, *up; + struct gfc_file *next, *up, *sibling, *down; int inclusion_line, line; char *filename; } gfc_file; @@ -1938,6 +1938,9 @@ extern gfc_source_form gfc_current_form; extern const char *gfc_source_file; extern locus gfc_current_locus; +void gfc_start_source_files (void); +void gfc_end_source_files (void); + /* misc.c */ void *gfc_getmem (size_t) ATTRIBUTE_MALLOC; void gfc_free (void *); |