aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/paste
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1997-08-05 03:40:23 +0000
committerSatoshi Asami <asami@FreeBSD.org>1997-08-05 03:40:23 +0000
commit85e19c1880d1895f368960d8ed9c618ee57ab16a (patch)
tree51d07693e444afd7983e2ddf3acac43668d8fc91 /usr.bin/paste
parent40ae4344e11f3c0e8a00531ae601131504c1cf50 (diff)
Notes
Diffstat (limited to 'usr.bin/paste')
-rw-r--r--usr.bin/paste/paste.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/paste/paste.c b/usr.bin/paste/paste.c
index 1815baba4712..4d477a16e569 100644
--- a/usr.bin/paste/paste.c
+++ b/usr.bin/paste/paste.c
@@ -45,7 +45,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)paste.c 8.1 (Berkeley) 6/6/93";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: paste.c,v 1.1.1.1.8.1 1997/08/01 06:44:23 charnier Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -116,7 +116,7 @@ parallel(argv)
register char ch, *p;
LIST *head, *tmp;
int opencnt, output;
- char buf[_POSIX2_LINE_MAX + 1], *malloc();
+ char buf[_POSIX2_LINE_MAX + 1];
for (cnt = 0, head = NULL; (p = *argv); ++argv, ++cnt) {
if (!(lp = (LIST *)malloc((u_int)sizeof(LIST))))