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/f-lang.c | |
parent | b25fcc020b2d009c63e29b7655a7534507a50f88 (diff) | |
download | gdb-bf6c959448e3470b740fc6f032faf4ee6c1ed43a.tar.gz |
PARAMS removal.gdb-post-params-removal-2000-05-28
Diffstat (limited to 'gdb/f-lang.c')
-rw-r--r-- | gdb/f-lang.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/gdb/f-lang.c b/gdb/f-lang.c index 53d92ec1509..7a5f86109c5 100644 --- a/gdb/f-lang.c +++ b/gdb/f-lang.c @@ -68,23 +68,23 @@ typedef struct saved_bf_symnum SAVED_BF, *SAVED_BF_PTR; /* Local functions */ -extern void _initialize_f_language PARAMS ((void)); +extern void _initialize_f_language (void); #if 0 -static void clear_function_list PARAMS ((void)); -static long get_bf_for_fcn PARAMS ((long)); -static void clear_bf_list PARAMS ((void)); -static void patch_all_commons_by_name PARAMS ((char *, CORE_ADDR, int)); -static SAVED_F77_COMMON_PTR find_first_common_named PARAMS ((char *)); -static void add_common_entry PARAMS ((struct symbol *)); -static void add_common_block PARAMS ((char *, CORE_ADDR, int, char *)); -static SAVED_FUNCTION *allocate_saved_function_node PARAMS ((void)); -static SAVED_BF_PTR allocate_saved_bf_node PARAMS ((void)); -static COMMON_ENTRY_PTR allocate_common_entry_node PARAMS ((void)); -static SAVED_F77_COMMON_PTR allocate_saved_f77_common_node PARAMS ((void)); -static void patch_common_entries PARAMS ((SAVED_F77_COMMON_PTR, CORE_ADDR, int)); +static void clear_function_list (void); +static long get_bf_for_fcn (long); +static void clear_bf_list (void); +static void patch_all_commons_by_name (char *, CORE_ADDR, int); +static SAVED_F77_COMMON_PTR find_first_common_named (char *); +static void add_common_entry (struct symbol *); +static void add_common_block (char *, CORE_ADDR, int, char *); +static SAVED_FUNCTION *allocate_saved_function_node (void); +static SAVED_BF_PTR allocate_saved_bf_node (void); +static COMMON_ENTRY_PTR allocate_common_entry_node (void); +static SAVED_F77_COMMON_PTR allocate_saved_f77_common_node (void); +static void patch_common_entries (SAVED_F77_COMMON_PTR, CORE_ADDR, int); #endif -static struct type *f_create_fundamental_type PARAMS ((struct objfile *, int)); +static struct type *f_create_fundamental_type (struct objfile *, int); static void f_printstr (struct ui_file * stream, char *string, unsigned int length, int width, int force_ellipses); |