diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
commit | bf6c959448e3470b740fc6f032faf4ee6c1ed43a (patch) | |
tree | 8aeacca23eb32d57e7ef9abce8d272f5b3adc53c /gdb/exec.c | |
parent | b25fcc020b2d009c63e29b7655a7534507a50f88 (diff) | |
download | gdb-bf6c959448e3470b740fc6f032faf4ee6c1ed43a.tar.gz |
PARAMS removal.gdb-post-params-removal-2000-05-28
Diffstat (limited to 'gdb/exec.c')
-rw-r--r-- | gdb/exec.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gdb/exec.c b/gdb/exec.c index 57d39e958ab..0620dd30b2f 100644 --- a/gdb/exec.c +++ b/gdb/exec.c @@ -45,29 +45,29 @@ #include "xcoffsolib.h" -struct vmap *map_vmap PARAMS ((bfd *, bfd *)); +struct vmap *map_vmap (bfd *, bfd *); void (*file_changed_hook) PARAMS ((char *)); /* Prototypes for local functions */ -static void add_to_section_table PARAMS ((bfd *, sec_ptr, PTR)); +static void add_to_section_table (bfd *, sec_ptr, PTR); -static void exec_close PARAMS ((int)); +static void exec_close (int); -static void file_command PARAMS ((char *, int)); +static void file_command (char *, int); -static void set_section_command PARAMS ((char *, int)); +static void set_section_command (char *, int); -static void exec_files_info PARAMS ((struct target_ops *)); +static void exec_files_info (struct target_ops *); -static void bfdsec_to_vmap PARAMS ((bfd *, sec_ptr, PTR)); +static void bfdsec_to_vmap (bfd *, sec_ptr, PTR); -static int ignore PARAMS ((CORE_ADDR, char *)); +static int ignore (CORE_ADDR, char *); -static void init_exec_ops PARAMS ((void)); +static void init_exec_ops (void); -void _initialize_exec PARAMS ((void)); +void _initialize_exec (void); extern int info_verbose; |