Protoization.

This commit is contained in:
Kevin Buettner 2000-11-18 02:05:46 +00:00
parent 2c2475db4a
commit ba5f58cb2e
2 changed files with 6 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2000-11-17 Kevin Buettner <kevinb@redhat.com>
* wrapper.c (gdb_value_assign, wrap_value_assign): Protoize.
2000-11-16 Christopher Faylor <cgf@redhat.com>
* thread.c (thread_apply_all_command): Save the command before

View File

@ -169,10 +169,7 @@ wrap_value_equal (char *a)
}
int
gdb_value_assign (val1, val2, result)
value_ptr val1;
value_ptr val2;
value_ptr *result;
gdb_value_assign (value_ptr val1, value_ptr val2, value_ptr *result)
{
struct gdb_wrapper_arguments args;
@ -191,8 +188,7 @@ gdb_value_assign (val1, val2, result)
}
static int
wrap_value_assign (a)
char *a;
wrap_value_assign (char *a)
{
struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) a;
value_ptr val1, val2;