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/proc-why.c | |
parent | 29e6d33b03a5e39540d17bc8235573b1dac13341 (diff) | |
download | gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.zip gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.tar.gz gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.tar.bz2 |
Protoization.
Diffstat (limited to 'gdb/proc-why.c')
-rw-r--r-- | gdb/proc-why.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/gdb/proc-why.c b/gdb/proc-why.c index 958eeb4..0c8eefd 100644 --- a/gdb/proc-why.c +++ b/gdb/proc-why.c @@ -105,11 +105,8 @@ static struct trans pr_why_table[] = }; void -proc_prettyfprint_why (file, why, what, verbose) - FILE *file; - unsigned long why; - unsigned long what; - int verbose; +proc_prettyfprint_why (FILE *file, unsigned long why, unsigned long what, + int verbose) { int i; @@ -172,10 +169,7 @@ proc_prettyfprint_why (file, why, what, verbose) } void -proc_prettyprint_why (why, what, verbose) - unsigned long why; - unsigned long what; - int verbose; +proc_prettyprint_why (unsigned long why, unsigned long what, int verbose) { proc_prettyfprint_why (stdout, why, what, verbose); } |