Be consistent about declaring a function "static", and consistent
about the type of argv.
This commit is contained in:
parent
ca2993fb41
commit
9d32ecfcdf
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user