From 9d32ecfcdf8d3e1edb65ee45c87e4d07d6336025 Mon Sep 17 00:00:00 2001 From: Mark Murray Date: Wed, 23 Oct 2002 10:23:38 +0000 Subject: [PATCH] Be consistent about declaring a function "static", and consistent about the type of argv. --- bin/cat/cat.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/cat/cat.c b/bin/cat/cat.c index 631a08d5245..f22e4db42f5 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;