* misc.c (save_argc, save_argv): Keep non-static!
authorNeil Booth <neil@daikokuya.co.uk>
Wed, 2 Jul 2003 20:40:41 +0000 (20:40 +0000)
committerNeil Booth <neil@gcc.gnu.org>
Wed, 2 Jul 2003 20:40:41 +0000 (20:40 +0000)
From-SVN: r68853

gcc/ada/ChangeLog
gcc/ada/misc.c

index 67417f0..b2235a1 100644 (file)
@@ -1,5 +1,9 @@
 2003-07-02  Neil Booth  <neil@daikokuya.co.uk>
 
+       * misc.c (save_argc, save_argv): Keep non-static!
+
+2003-07-02  Neil Booth  <neil@daikokuya.co.uk>
+
        * misc.c (save_argc, save_argv): Make static.
        (gnat_init_options): New prototype.
        (gnat_init_options): Update.
index ab618e5..22d29c9 100644 (file)
@@ -180,8 +180,8 @@ const char *const tree_code_name[] = {
 #undef DEFTREECODE
 
 /* Command-line argc and argv.  */
-static unsigned int save_argc;
-static const char **save_argv;
+unsigned int save_argc;
+const char **save_argv;
 
 /* gnat standard argc argv */