summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bin/cat/cat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/cat/cat.c b/bin/cat/cat.c
index 631a08d..f22e4db 100644
--- a/bin/cat/cat.c
+++ b/bin/cat/cat.c
@@ -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;
OpenPOWER on IntegriCloud