summaryrefslogtreecommitdiffstats
path: root/lib/libc/net/rcmd.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1996-09-03 10:53:37 +0000
committerderaadt <deraadt@openbsd.org>1996-09-03 10:53:37 +0000
commitd4b79a2488da7c06172bd5919033d6d93e720c6d (patch)
treed88645bf33b6ee32ee92fdf7160473c51162f2f5 /lib/libc/net/rcmd.c
parentkill useless code (diff)
downloadwireguard-openbsd-d4b79a2488da7c06172bd5919033d6d93e720c6d.tar.xz
wireguard-openbsd-d4b79a2488da7c06172bd5919033d6d93e720c6d.zip
proper types
Diffstat (limited to 'lib/libc/net/rcmd.c')
-rw-r--r--lib/libc/net/rcmd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/net/rcmd.c b/lib/libc/net/rcmd.c
index 44c516da040..01554868d64 100644
--- a/lib/libc/net/rcmd.c
+++ b/lib/libc/net/rcmd.c
@@ -34,7 +34,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: rcmd.c,v 1.16 1996/09/02 21:26:09 millert Exp $";
+static char *rcsid = "$OpenBSD: rcmd.c,v 1.17 1996/09/03 10:53:37 deraadt Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>
@@ -54,6 +54,7 @@ static char *rcsid = "$OpenBSD: rcmd.c,v 1.16 1996/09/02 21:26:09 millert Exp $"
#include <ctype.h>
#include <string.h>
#include <syslog.h>
+#include <stdlib.h>
int __ivaliduser __P((FILE *, u_long, const char *, const char *));
static int __icheckhost __P((u_int32_t, const char *));