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/valops.c | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | gdb-a14ed312fd86dd2c862847230931451da2e49942.zip gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.bz2 |
PARAMS removal.
Diffstat (limited to 'gdb/valops.c')
-rw-r--r-- | gdb/valops.c | 35 |
1 files changed, 20 insertions, 15 deletions
diff --git a/gdb/valops.c b/gdb/valops.c index 8034fc5..c84e7a7 100644 --- a/gdb/valops.c +++ b/gdb/valops.c @@ -41,30 +41,34 @@ extern int hp_som_som_object_present; extern int overload_debug; /* Local functions. */ -static int typecmp PARAMS ((int staticp, struct type * t1[], value_ptr t2[])); +static int typecmp (int staticp, struct type *t1[], value_ptr t2[]); -static CORE_ADDR find_function_addr PARAMS ((value_ptr, struct type **)); -static value_ptr value_arg_coerce PARAMS ((value_ptr, struct type *, int)); +static CORE_ADDR find_function_addr (value_ptr, struct type **); +static value_ptr value_arg_coerce (value_ptr, struct type *, int); -static CORE_ADDR value_push PARAMS ((CORE_ADDR, value_ptr)); +static CORE_ADDR value_push (CORE_ADDR, value_ptr); -static value_ptr search_struct_field PARAMS ((char *, value_ptr, int, - struct type *, int)); +static value_ptr search_struct_field (char *, value_ptr, int, + struct type *, int); -static value_ptr search_struct_method PARAMS ((char *, value_ptr *, - value_ptr *, - int, int *, struct type *)); +static value_ptr search_struct_method (char *, value_ptr *, + value_ptr *, + int, int *, struct type *); -static int check_field_in PARAMS ((struct type *, const char *)); +static int check_field_in (struct type *, const char *); -static CORE_ADDR allocate_space_in_inferior PARAMS ((int)); +static CORE_ADDR allocate_space_in_inferior (int); -static value_ptr cast_into_complex PARAMS ((struct type *, value_ptr)); +static value_ptr cast_into_complex (struct type *, value_ptr); -static struct fn_field *find_method_list PARAMS ((value_ptr * argp, char *method, int offset, int *static_memfuncp, struct type * type, int *num_fns, struct type ** basetype, int *boffset)); +static struct fn_field *find_method_list (value_ptr * argp, char *method, + int offset, int *static_memfuncp, + struct type *type, int *num_fns, + struct type **basetype, + int *boffset); -void _initialize_valops PARAMS ((void)); +void _initialize_valops (void); #define VALUE_SUBSTRING_START(VAL) VALUE_FRAME(VAL) @@ -1315,7 +1319,8 @@ find_function_addr (function, retval_type) ARGS is modified to contain coerced values. */ -static value_ptr hand_function_call PARAMS ((value_ptr function, int nargs, value_ptr * args)); +static value_ptr hand_function_call (value_ptr function, int nargs, + value_ptr * args); static value_ptr hand_function_call (function, nargs, args) value_ptr function; |