summaryrefslogtreecommitdiff
path: root/gdb/procfs.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2000-06-12 01:33:49 +0000
committerKevin Buettner <kevinb@redhat.com>2000-06-12 01:33:49 +0000
commit67c80e5b76ad8d46f3d9045af32248ad7bcb86d1 (patch)
tree12133b24e1ada052472eb212e5ea0e1962ca17d2 /gdb/procfs.c
parentb848cb71c41930ea9d962fa51c8ed7e194bd00a3 (diff)
downloadgdb-67c80e5b76ad8d46f3d9045af32248ad7bcb86d1.tar.gz
Eliminate use of PARAMS.
Diffstat (limited to 'gdb/procfs.c')
-rw-r--r--gdb/procfs.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/gdb/procfs.c b/gdb/procfs.c
index b127c5f37b4..b6f55347f0f 100644
--- a/gdb/procfs.c
+++ b/gdb/procfs.c
@@ -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);