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/values.c | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | gdb-a14ed312fd86dd2c862847230931451da2e49942.zip gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.bz2 |
PARAMS removal.
Diffstat (limited to 'gdb/values.c')
-rw-r--r-- | gdb/values.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gdb/values.c b/gdb/values.c index 67fe2ad..b77f405 100644 --- a/gdb/values.c +++ b/gdb/values.c @@ -35,18 +35,17 @@ /* Prototypes for exported functions. */ -void _initialize_values PARAMS ((void)); +void _initialize_values (void); /* Prototypes for local functions. */ -static value_ptr value_headof PARAMS ((value_ptr, struct type *, - struct type *)); +static value_ptr value_headof (value_ptr, struct type *, struct type *); -static void show_values PARAMS ((char *, int)); +static void show_values (char *, int); -static void show_convenience PARAMS ((char *, int)); +static void show_convenience (char *, int); -static int vb_match PARAMS ((struct type *, int, struct type *)); +static int vb_match (struct type *, int, struct type *); /* The value-history records all the values printed by print commands during this session. Each chunk |