diff options
author | deraadt <> | 1996-09-03 10:53:37 +0000 |
---|---|---|
committer | deraadt <> | 1996-09-03 10:53:37 +0000 |
commit | 0bc1041d392f8fa484899a0946b75b84c78e29ad (patch) | |
tree | a0b02eac8657befce5ae431fd81da520a6ac77ad /src/lib | |
parent | 77dd3257664950f47573d029de19c3c0564bc83d (diff) | |
download | openbsd-0bc1041d392f8fa484899a0946b75b84c78e29ad.tar.gz openbsd-0bc1041d392f8fa484899a0946b75b84c78e29ad.tar.bz2 openbsd-0bc1041d392f8fa484899a0946b75b84c78e29ad.zip |
proper types
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libc/net/rcmd.c | 3 |
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) |
37 | static char *rcsid = "$OpenBSD: rcmd.c,v 1.16 1996/09/02 21:26:09 millert Exp $"; | 37 | static 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 | ||
58 | int __ivaliduser __P((FILE *, u_long, const char *, const char *)); | 59 | int __ivaliduser __P((FILE *, u_long, const char *, const char *)); |
59 | static int __icheckhost __P((u_int32_t, const char *)); | 60 | static int __icheckhost __P((u_int32_t, const char *)); |