summaryrefslogtreecommitdiff
path: root/usr.bin/col
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
commit6d57a1a176004a7d8fc009cdcf760098f86e3263 (patch)
treeee423c619fad03813234b9362694a17f3a638f0b /usr.bin/col
parentc707cb295fc3cac8d8feb343e949e0dcf71b8476 (diff)
Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
Diffstat (limited to 'usr.bin/col')
-rw-r--r--usr.bin/col/col.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/usr.bin/col/col.c b/usr.bin/col/col.c
index d53bde72afa..ffb6275b740 100644
--- a/usr.bin/col/col.c
+++ b/usr.bin/col/col.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: col.c,v 1.6 2000/11/21 18:15:09 aaron Exp $ */
+/* $OpenBSD: col.c,v 1.7 2002/02/16 21:27:45 millert Exp $ */
/* $NetBSD: col.c,v 1.7 1995/09/02 05:48:50 jtc Exp $ */
/*-
@@ -47,7 +47,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)col.c 8.5 (Berkeley) 5/4/95";
#endif
-static char rcsid[] = "$OpenBSD: col.c,v 1.6 2000/11/21 18:15:09 aaron Exp $";
+static char rcsid[] = "$OpenBSD: col.c,v 1.7 2002/02/16 21:27:45 millert Exp $";
#endif /* not lint */
#include <ctype.h>
@@ -94,14 +94,14 @@ struct line_str {
int l_max_col; /* max column in the line */
};
-LINE *alloc_line __P((void));
-void dowarn __P((int));
-void flush_line __P((LINE *));
-void flush_lines __P((int));
-void flush_blanks __P((void));
-void free_line __P((LINE *));
-void usage __P((void));
-void *xmalloc __P((void *, size_t));
+LINE *alloc_line(void);
+void dowarn(int);
+void flush_line(LINE *);
+void flush_lines(int);
+void flush_blanks(void);
+void free_line(LINE *);
+void usage(void);
+void *xmalloc(void *, size_t);
CSET last_set; /* char_set of last char printed */
LINE *lines;