Be consistent about declaring a function "static", and consistent

about the type of argv.
This commit is contained in:
Mark Murray 2002-10-23 10:23:38 +00:00
parent ca2993fb41
commit 9d32ecfcdf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=105781

View File

@ -71,7 +71,7 @@ int rval;
const char *filename;
static void usage(void);
static void scanfiles(char **argv, int cooked);
static void scanfiles(char *argv[], int cooked);
static void cook_cat(FILE *);
static void raw_cat(int);
@ -132,8 +132,8 @@ usage(void)
/* NOTREACHED */
}
void
scanfiles(char **argv, int cooked)
static void
scanfiles(char *argv[], int cooked)
{
int i = 0;
char *path;