diff options
author | Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> | 2019-06-03 07:16:02 -0500 |
---|---|---|
committer | Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> | 2019-06-03 07:16:02 -0500 |
commit | 910491b6123a35ec4ab1530dcb91659bcc3d1cad (patch) | |
tree | d49b12dfa218b955a1721c7c425defd3271f2686 /usr.bin/paste | |
parent | 6ca0477bceb58a0c612da664b3825e81162d2db7 (diff) | |
download | userland-910491b6123a35ec4ab1530dcb91659bcc3d1cad.tar.gz userland-910491b6123a35ec4ab1530dcb91659bcc3d1cad.tar.bz2 userland-910491b6123a35ec4ab1530dcb91659bcc3d1cad.tar.xz userland-910491b6123a35ec4ab1530dcb91659bcc3d1cad.zip |
usr.bin/paste: make buildable
Diffstat (limited to 'usr.bin/paste')
-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; |