summaryrefslogtreecommitdiff
path: root/usr.bin/lock/lock.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-05-24 09:19:51 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-05-24 09:19:51 +0000
commit038fd5d0bcd512ab5735e04be016c69e77446e46 (patch)
tree0d6a5709fce0ecd7f72a8c1886eabcedd9505b4b /usr.bin/lock/lock.c
parent3785633180c4028130916211f7d7d8bcfda3cb36 (diff)
use protos
Diffstat (limited to 'usr.bin/lock/lock.c')
-rw-r--r--usr.bin/lock/lock.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/usr.bin/lock/lock.c b/usr.bin/lock/lock.c
index ea1af6ae1e6..6ade3de8014 100644
--- a/usr.bin/lock/lock.c
+++ b/usr.bin/lock/lock.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lock.c,v 1.7 1995/06/27 00:16:17 jtc Exp $ */
+/* $NetBSD: lock.c,v 1.8 1996/05/07 18:32:31 jtc Exp $ */
/*
* Copyright (c) 1980, 1987, 1993
@@ -46,7 +46,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)lock.c 8.1 (Berkeley) 6/6/93";
#endif
-static char rcsid[] = "$NetBSD: lock.c,v 1.7 1995/06/27 00:16:17 jtc Exp $";
+static char rcsid[] = "$NetBSD: lock.c,v 1.8 1996/05/07 18:32:31 jtc Exp $";
#endif /* not lint */
/*
@@ -66,8 +66,10 @@ static char rcsid[] = "$NetBSD: lock.c,v 1.7 1995/06/27 00:16:17 jtc Exp $";
#include <err.h>
#include <pwd.h>
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include <termios.h>
+#include <unistd.h>
#define TIMEOUT 15
@@ -84,7 +86,6 @@ main(argc, argv)
char **argv;
{
extern char *optarg;
- extern int errno, optind;
struct passwd *pw;
struct timeval timval;
struct itimerval ntimer, otimer;
@@ -93,7 +94,7 @@ main(argc, argv)
int ch, sectimeout, usemine;
char *ap, *mypw, *ttynam, *tzn;
char hostname[MAXHOSTNAMELEN], s[BUFSIZ], s1[BUFSIZ];
- char *crypt(), *ttyname();
+ char *crypt();
sectimeout = TIMEOUT;
mypw = NULL;