diff options
author | Jim Meyering <jim@meyering.net> | 1999-01-14 18:25:16 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-01-14 18:25:16 +0000 |
commit | 9fec9172beaf67d1e16ae13b1f3ac44135cc8363 (patch) | |
tree | d787cf23dce38b0e2af16cc93c345f106c095801 /src/csplit.c | |
parent | da258119328fe4af0e0aa0d6f292600732aa0bb4 (diff) | |
download | coreutils-9fec9172beaf67d1e16ae13b1f3ac44135cc8363.tar.gz coreutils-9fec9172beaf67d1e16ae13b1f3ac44135cc8363.tar.bz2 coreutils-9fec9172beaf67d1e16ae13b1f3ac44135cc8363.zip |
Don't prototype usage as static.
Diffstat (limited to 'src/csplit.c')
-rw-r--r-- | src/csplit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/csplit.c b/src/csplit.c index fe007eb5f..17fca156e 100644 --- a/src/csplit.c +++ b/src/csplit.c @@ -123,7 +123,7 @@ static void close_output_file PARAMS ((void)); static void create_output_file PARAMS ((void)); static void delete_all_files PARAMS ((void)); static void save_line_to_file PARAMS ((const struct cstring *line)); -static void usage PARAMS ((int status)); +void usage PARAMS ((int status)); /* The name this program was run with. */ char *program_name; @@ -1496,7 +1496,7 @@ main (int argc, char **argv) exit (EXIT_SUCCESS); } -static void +void usage (int status) { if (status != 0) |