diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-07-30 01:48:28 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-07-30 01:48:28 +0000 |
commit | fba45db2faf619e71856ee38ec63949c0ef6903e (patch) | |
tree | 107efc21d2b12f54d84b59e75251449e3d5fd096 /gdb/copying.c | |
parent | 29e6d33b03a5e39540d17bc8235573b1dac13341 (diff) | |
download | gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.zip gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.tar.gz gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.tar.bz2 |
Protoization.
Diffstat (limited to 'gdb/copying.c')
-rw-r--r-- | gdb/copying.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/gdb/copying.c b/gdb/copying.c index 76414bd..a78a862 100644 --- a/gdb/copying.c +++ b/gdb/copying.c @@ -13,9 +13,7 @@ void _initialize_copying (void); extern int immediate_quit; static void -show_copying_command (ignore, from_tty) - char *ignore; - int from_tty; +show_copying_command (char *ignore, int from_tty) { immediate_quit++; printf_filtered (" GNU GENERAL PUBLIC LICENSE\n"); @@ -279,9 +277,7 @@ show_copying_command (ignore, from_tty) } static void -show_warranty_command (ignore, from_tty) - char *ignore; - int from_tty; +show_warranty_command (char *ignore, int from_tty) { immediate_quit++; printf_filtered (" NO WARRANTY\n"); @@ -310,7 +306,7 @@ show_warranty_command (ignore, from_tty) } void -_initialize_copying () +_initialize_copying (void) { add_cmd ("copying", no_class, show_copying_command, "Conditions for redistributing copies of GDB.", |