Protoization.

This commit is contained in:
Kevin Buettner
2000-07-30 01:48:28 +00:00
parent 29e6d33b03
commit fba45db2fa
284 changed files with 5720 additions and 13265 deletions

View File

@ -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);
}