]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Eliminate use of PARAMS.
authorKevin Buettner <kevinb@redhat.com>
Mon, 12 Jun 2000 01:33:49 +0000 (01:33 +0000)
committerKevin Buettner <kevinb@redhat.com>
Mon, 12 Jun 2000 01:33:49 +0000 (01:33 +0000)
gdb/ChangeLog
gdb/procfs.c
gdb/remote.c

index 83f64a0f22c486a4c5a18c366c18cb2d4b2fff7e..3caff3324037a374878f7190d74ddd301d740ed9 100644 (file)
@@ -1,3 +1,7 @@
+2000-06-12  Kevin Buettner  <kevinb@redhat.com>
+
+       * procfs.c, remote.c: Eliminate use of PARAMS from these files.
+
 Mon Jun 12 10:21:24 2000  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * gdbarch.sh (gdbarch_dump): When non multi-arch skip macros that
index b127c5f37b4f5bdd90c0fe425fdf1e7a09b80671..b6f55347f0f8fef25c2e2ea99370173b4dfe76db 100644 (file)
@@ -98,7 +98,7 @@ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  * This module defines the GDB target vector and its methods.
  */
 
-static void procfs_open              PARAMS((char *, int));
+static void procfs_open (char *, int);
 static void procfs_attach (char *, int);
 static void procfs_detach (char *, int);
 static void procfs_resume (int, int, enum target_signal);
@@ -754,9 +754,8 @@ int proc_set_traced_signals (procinfo * pi, sigset_t * sigset);
 
 int proc_update_threads (procinfo * pi);
 int proc_iterate_over_threads (procinfo * pi,
-                              int (*func) PARAMS ((procinfo *,
-                                                   procinfo *,
-                                                   void *)), void *ptr);
+                              int (*func) (procinfo *, procinfo *, void *),
+                              void *ptr);
 
 gdb_gregset_t *proc_get_gregs (procinfo * pi);
 gdb_fpregset_t *proc_get_fpregs (procinfo * pi);
index 62a7a1c27cffc886f94247f8a52f6ba19ad5cb11..0e54af7e0876982745740d04c2e53c01d5148a96 100644 (file)
@@ -5162,8 +5162,7 @@ remote_cisco_close (int quitting)
 }
 
 static void
-  remote_cisco_mourn
-PARAMS ((void))
+remote_cisco_mourn (void)
 {
   remote_mourn_1 (&remote_cisco_ops);
 }