summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorderaadt <>1996-09-03 10:53:37 +0000
committerderaadt <>1996-09-03 10:53:37 +0000
commit0bc1041d392f8fa484899a0946b75b84c78e29ad (patch)
treea0b02eac8657befce5ae431fd81da520a6ac77ad /src
parent77dd3257664950f47573d029de19c3c0564bc83d (diff)
downloadopenbsd-0bc1041d392f8fa484899a0946b75b84c78e29ad.tar.gz
openbsd-0bc1041d392f8fa484899a0946b75b84c78e29ad.tar.bz2
openbsd-0bc1041d392f8fa484899a0946b75b84c78e29ad.zip
proper types
Diffstat (limited to 'src')
-rw-r--r--src/lib/libc/net/rcmd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libc/net/rcmd.c b/src/lib/libc/net/rcmd.c
index 44c516da04..01554868d6 100644
--- a/src/lib/libc/net/rcmd.c
+++ b/src/lib/libc/net/rcmd.c
@@ -34,7 +34,7 @@
34 */ 34 */
35 35
36#if defined(LIBC_SCCS) && !defined(lint) 36#if defined(LIBC_SCCS) && !defined(lint)
37static char *rcsid = "$OpenBSD: rcmd.c,v 1.16 1996/09/02 21:26:09 millert Exp $"; 37static char *rcsid = "$OpenBSD: rcmd.c,v 1.17 1996/09/03 10:53:37 deraadt Exp $";
38#endif /* LIBC_SCCS and not lint */ 38#endif /* LIBC_SCCS and not lint */
39 39
40#include <sys/param.h> 40#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 $"
54#include <ctype.h> 54#include <ctype.h>
55#include <string.h> 55#include <string.h>
56#include <syslog.h> 56#include <syslog.h>
57#include <stdlib.h>
57 58
58int __ivaliduser __P((FILE *, u_long, const char *, const char *)); 59int __ivaliduser __P((FILE *, u_long, const char *, const char *));
59static int __icheckhost __P((u_int32_t, const char *)); 60static int __icheckhost __P((u_int32_t, const char *));