Convert to ANSI C function declarations

This commit is contained in:
Todd C. Miller
2010-04-22 18:09:53 -04:00
parent c17d3e061d
commit 05ae3ea6cb
24 changed files with 243 additions and 604 deletions

View File

@@ -53,11 +53,7 @@
* but it is in '.' and IGNORE_DOT is set.
*/
int
find_path(infile, outfile, sbp, path)
char *infile; /* file to find */
char **outfile; /* result parameter */
struct stat *sbp; /* stat result parameter */
char *path; /* path to search */
find_path(char *infile, char **outfile, struct stat *sbp, char *path)
{
static char command[PATH_MAX]; /* qualified filename */
char *n; /* for traversing path */