summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1995-10-30 21:01:35 +0000
committerJim Meyering <jim@meyering.net>1995-10-30 21:01:35 +0000
commit47eaf4a1e815553fef112a5afe2ebc1c00c3a15f (patch)
tree63e79879f527e1934aeaeb3ac2a8448f61e6a25f
parent1e30b2f8c4b0ccb5597cd31aca1b51e6951a3bdf (diff)
downloadcoreutils-47eaf4a1e815553fef112a5afe2ebc1c00c3a15f.tar.xz
Protoize.
-rw-r--r--src/uniq.c24
-rw-r--r--src/wc.c18
2 files changed, 11 insertions, 31 deletions
diff --git a/src/uniq.c b/src/uniq.c
index 5cb8c59b7..86b3d0447 100644
--- a/src/uniq.c
+++ b/src/uniq.c
@@ -86,8 +86,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"),
@@ -124,8 +123,7 @@ Fields are skipped before chars. \n\
return a pointer to the beginning of the line's field to be compared. */
static char *
-find_field (line)
- struct linebuffer *line;
+find_field (struct linebuffer *line)
{
register int count;
register char *lp = line->buffer;
@@ -152,11 +150,7 @@ find_field (line)
OLDLEN and NEWLEN are their lengths. */
static int
-different (old, new, oldlen, newlen)
- char *old;
- char *new;
- int oldlen;
- int newlen;
+different (char *old, char *new, int oldlen, int newlen)
{
register int order;
@@ -179,10 +173,7 @@ different (old, new, oldlen, newlen)
LINECOUNT + 1 is the number of times that the line occurred. */
static void
-writeline (line, stream, linecount)
- struct linebuffer *line;
- FILE *stream;
- int linecount;
+writeline (struct linebuffer *line, FILE *stream, int linecount)
{
if ((mode == output_unique && linecount != 0)
|| (mode == output_repeated && linecount == 0))
@@ -199,8 +190,7 @@ writeline (line, stream, linecount)
If either is "-", use the standard I/O stream for it instead. */
static void
-check_file (infile, outfile)
- char *infile, *outfile;
+check_file (char *infile, char *outfile)
{
FILE *istream;
FILE *ostream;
@@ -270,9 +260,7 @@ check_file (infile, outfile)
}
void
-main (argc, argv)
- int argc;
- char *argv[];
+main (int argc, char **argv)
{
int optc;
char *infile = "-", *outfile = "-";
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;