summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKiyoshi Aman <kiyoshi.aman+adelie@gmail.com>2019-06-02 06:06:03 -0500
committerKiyoshi Aman <kiyoshi.aman+adelie@gmail.com>2019-06-02 06:06:03 -0500
commit1ea005b61455a6862ed62206d90bd50bd1e6ec31 (patch)
treec17d7b8ece16f010a587f3fc802430b71caad715
parentf215c374244a1860e7f6c6b635d3c5176ee652ed (diff)
downloaduserland-1ea005b61455a6862ed62206d90bd50bd1e6ec31.tar.gz
userland-1ea005b61455a6862ed62206d90bd50bd1e6ec31.tar.bz2
userland-1ea005b61455a6862ed62206d90bd50bd1e6ec31.tar.xz
userland-1ea005b61455a6862ed62206d90bd50bd1e6ec31.zip
usr.bin/link: make buildable
-rw-r--r--usr.bin/link/link.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/usr.bin/link/link.c b/usr.bin/link/link.c
index 6a45cc1..f013dda 100644
--- a/usr.bin/link/link.c
+++ b/usr.bin/link/link.c
@@ -29,20 +29,12 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-#include <sys/cdefs.h>
-#ifndef lint
-__COPYRIGHT(
-"@(#) Copyright (c) 1999\
- The NetBSD Foundation, Inc. All rights reserved.");
-__RCSID("$NetBSD: link.c,v 1.5 2011/08/30 19:18:17 joerg Exp $");
-#endif
-
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
-__dead static void usage(void);
+static void usage(void);
int
main(int argc, char *argv[])