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 | a14ed312fd86dd2c862847230931451da2e49942 (patch) | |
tree | e7a00cec4f6ebd4b2d5dd59695c802ef6997d9da /gdb/exec.c | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | gdb-a14ed312fd86dd2c862847230931451da2e49942.zip gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.bz2 |
PARAMS removal.
Diffstat (limited to 'gdb/exec.c')
-rw-r--r-- | gdb/exec.c | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -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; |