From 47eaf4a1e815553fef112a5afe2ebc1c00c3a15f Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 30 Oct 1995 21:01:35 +0000 Subject: Protoize. --- src/wc.c | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) (limited to 'src/wc.c') diff --git a/src/wc.c b/src/wc.c index 40b6c2e3d..cfa28bbbe 100644 --- a/src/wc.c +++ b/src/wc.c @@ -65,8 +65,7 @@ static struct option const longopts[] = }; static void -usage (status) - int status; +usage (int status) { if (status != 0) fprintf (stderr, _("Try `%s --help' for more information.\n"), @@ -92,9 +91,7 @@ read standard input.\n\ } static void -write_counts (lines, words, chars, file) - unsigned long lines, words, chars; - char *file; +write_counts (long unsigned int lines, long unsigned int words, long unsigned int chars, char *file) { if (print_lines) printf ("%7lu", lines); @@ -116,9 +113,7 @@ write_counts (lines, words, chars, file) } static void -wc (fd, file) - int fd; - char *file; +wc (int fd, char *file) { char buf[BUFFER_SIZE + 1]; register int bytes_read; @@ -233,8 +228,7 @@ wc (fd, file) } static void -wc_file (file) - char *file; +wc_file (char *file) { if (!strcmp (file, "-")) { @@ -260,9 +254,7 @@ wc_file (file) } void -main (argc, argv) - int argc; - char **argv; +main (int argc, char **argv) { int optc; int nfiles; -- cgit v1.2.3-54-g00ecf