]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
(read_scan_file): Remove decl of unused variable RPTR.
authorRichard Kenner <kenner@gcc.gnu.org>
Fri, 25 Mar 1994 19:08:19 +0000 (14:08 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Fri, 25 Mar 1994 19:08:19 +0000 (14:08 -0500)
(write_rbrac): Remove decl of unused variable PARTIAL.
(main): Likewise.

From-SVN: r6882

gcc/fix-header.c

index 59754a2e26f1ff88c14d81d9c0c68ae81cd5436e..81b46cf32729d30c2701df3852a6f8bd1c64d297 100644 (file)
@@ -1,5 +1,5 @@
 /* fix-header.c - Make C header file suitable for C++.
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright (C) 1993, 1994 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify it
 under the terms of the GNU General Public License as published by the
@@ -341,7 +341,6 @@ void
 read_scan_file (scan_file)
      FILE *scan_file;
 {
-  char **rptr;
   obstack_init (&scan_file_obstack); 
 
   scan_decls (scan_file);
@@ -379,7 +378,6 @@ write_rbrac ()
 {
   struct fn_decl *fn;
   char **rptr;
-  register struct partial_proto *partial;
 
   if (required_unseen_count)
     fprintf (outf, "#ifdef __cplusplus\n");
@@ -815,7 +813,6 @@ main (argc, argv)
            break;
          if (isalpha (c) || c == '_')
            {
-             struct partial_proto *partial;
              c = inf_scan_ident (&buf, c);
              INF_UNGET (c);
              fputs (buf.base, outf);