summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKiyoshi Aman <kiyoshi.aman+adelie@gmail.com>2019-06-03 07:16:02 -0500
committerKiyoshi Aman <kiyoshi.aman+adelie@gmail.com>2019-06-03 07:16:02 -0500
commit910491b6123a35ec4ab1530dcb91659bcc3d1cad (patch)
treed49b12dfa218b955a1721c7c425defd3271f2686
parent6ca0477bceb58a0c612da664b3825e81162d2db7 (diff)
downloaduserland-910491b6123a35ec4ab1530dcb91659bcc3d1cad.tar.gz
userland-910491b6123a35ec4ab1530dcb91659bcc3d1cad.tar.bz2
userland-910491b6123a35ec4ab1530dcb91659bcc3d1cad.tar.xz
userland-910491b6123a35ec4ab1530dcb91659bcc3d1cad.zip
usr.bin/paste: make buildable
-rw-r--r--usr.bin/paste/paste.c13
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;