aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>2001-05-18 11:30:40 -0700
committerPer Bothner <bothner@gcc.gnu.org>2001-05-18 11:30:40 -0700
commit3a5a9edc34b1d170c5f342f2eb2f3210a4252e55 (patch)
treeade8cbb40ea184cc92c2c29d949375e0bad35a18 /gcc/gcc.c
parentc19814b6070c1a4f7daf4192851c516239da82c9 (diff)
downloadgcc-3a5a9edc34b1d170c5f342f2eb2f3210a4252e55.zip
gcc-3a5a9edc34b1d170c5f342f2eb2f3210a4252e55.tar.gz
gcc-3a5a9edc34b1d170c5f342f2eb2f3210a4252e55.tar.bz2
Changes needed for java/jvspec.c
Changes needed for java/jvspec.c * gcc.h (n_infiles, outfiles): Add declarations. * gcc.c (n_infiles, outfiles): Mske no longer static. From-SVN: r42269
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r--gcc/gcc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 7d99417..e613291 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -2804,7 +2804,7 @@ struct infile
static struct infile *infiles;
-static int n_infiles;
+int n_infiles;
/* This counts the number of libraries added by lang_specific_driver, so that
we can tell if there were any user supplied any files or libraries. */
@@ -2813,7 +2813,7 @@ static int added_libraries;
/* And a vector of corresponding output files is made up later. */
-static const char **outfiles;
+const char **outfiles;
/* Used to track if none of the -B paths are used. */
static int warn_B;