diff options
-rw-r--r-- | usr.bin/paste/paste.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/usr.bin/paste/paste.c b/usr.bin/paste/paste.c index 5698131..1f2ee99 100644 --- a/usr.bin/paste/paste.c +++ b/usr.bin/paste/paste.c @@ -32,17 +32,6 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> -#ifndef lint -__COPYRIGHT("@(#) Copyright (c) 1989, 1993\ - The Regents of the University of California. All rights reserved."); -#endif /* not lint */ - -#ifndef lint -/*static char sccsid[] = "from: @(#)paste.c 8.1 (Berkeley) 6/6/93";*/ -__RCSID("$NetBSD: paste.c,v 1.16 2011/09/06 18:24:43 joerg Exp $"); -#endif /* not lint */ - #include <sys/types.h> #include <err.h> #include <errno.h> @@ -55,7 +44,7 @@ __RCSID("$NetBSD: paste.c,v 1.16 2011/09/06 18:24:43 joerg Exp $"); static void parallel(int, char **); static void sequential(char **); static int tr(char *); -__dead static void usage(void); +static void usage(void); static char dflt_delim[] = "\t"; static char *delim = dflt_delim; |