summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-09-03 10:53:38 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-09-03 10:53:38 +0000
commit3417f915a790936769abb44f876bf02324a16007 (patch)
tree9d21fa805a60c754f5a74e312d64edcd75a4904f /lib
parentb66297c71e8cbb3a37dc80ed03010156701d3fa8 (diff)
proper types
Diffstat (limited to 'lib')
-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 *));