summaryrefslogtreecommitdiff
path: root/libexec/makekey
diff options
context:
space:
mode:
authormrg <mrg@NetBSD.org>1997-10-07 11:28:16 +0000
committermrg <mrg@NetBSD.org>1997-10-07 11:28:16 +0000
commita5a68ff5f29de57339ca14f6c671c0a87714f1f8 (patch)
treeb7c419dcfaeef3e2988fd95da934aeaf6dcde1c1 /libexec/makekey
parent59093d44d1d4230a520539337660639169a7993a (diff)
WARNS?=1. RCS ids.
Diffstat (limited to 'libexec/makekey')
-rw-r--r--libexec/makekey/Makefile3
-rw-r--r--libexec/makekey/makekey.83
-rw-r--r--libexec/makekey/makekey.c19
3 files changed, 15 insertions, 10 deletions
diff --git a/libexec/makekey/Makefile b/libexec/makekey/Makefile
index 0502f21a55a..614c36769c2 100644
--- a/libexec/makekey/Makefile
+++ b/libexec/makekey/Makefile
@@ -1,6 +1,7 @@
+# $NetBSD: Makefile,v 1.7 1997/10/07 11:31:21 mrg Exp $
# from: @(#)Makefile 8.1 (Berkeley) 6/4/93
-# $Id: Makefile,v 1.6 1997/04/29 21:19:05 tls Exp $
+WARNS?= 1
PROG= makekey
MAN= makekey.8
LDADD+= -lcrypt
diff --git a/libexec/makekey/makekey.8 b/libexec/makekey/makekey.8
index a2bb3b53685..a5bf301c257 100644
--- a/libexec/makekey/makekey.8
+++ b/libexec/makekey/makekey.8
@@ -1,3 +1,5 @@
+.\" $NetBSD: makekey.8,v 1.6 1997/10/07 11:31:24 mrg Exp $
+.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
@@ -30,7 +32,6 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)makekey.8 8.2 (Berkeley) 12/11/93
-.\" $NetBSD: makekey.8,v 1.5 1997/07/10 07:28:06 mikel Exp $
.\"
.Dd December 11, 1993
.Dt MAKEKEY 8
diff --git a/libexec/makekey/makekey.c b/libexec/makekey/makekey.c
index 0d378523d19..770081c9766 100644
--- a/libexec/makekey/makekey.c
+++ b/libexec/makekey/makekey.c
@@ -1,3 +1,5 @@
+/* $NetBSD: makekey.c,v 1.4 1997/10/07 11:31:26 mrg Exp $ */
+
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
@@ -31,15 +33,15 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
#ifndef lint
-static char copyright[] =
-"@(#) Copyright (c) 1990, 1993\n\
- The Regents of the University of California. All rights reserved.\n";
-#endif /* not lint */
-
-#ifndef lint
-/*static char sccsid[] = "from: @(#)makekey.c 8.1 (Berkeley) 6/4/93";*/
-static char rcsid[] = "$NetBSD: makekey.c,v 1.3 1997/04/29 21:19:09 tls Exp $";
+__COPYRIGHT("@(#) Copyright (c) 1990, 1993\n\
+ The Regents of the University of California. All rights reserved.\n");
+#if 0
+static char sccsid[] = "from: @(#)makekey.c 8.1 (Berkeley) 6/4/93";
+#else
+__RCSID("$NetBSD: makekey.c,v 1.4 1997/10/07 11:31:26 mrg Exp $");
+#endif
#endif /* not lint */
#include <sys/types.h>
@@ -52,6 +54,7 @@ static char rcsid[] = "$NetBSD: makekey.c,v 1.3 1997/04/29 21:19:09 tls Exp $";
#include <unistd.h>
static void get __P((char *, int));
+int main __P((void));
int
main()