diff options
author | millert <> | 2002-02-17 19:42:31 +0000 |
---|---|---|
committer | millert <> | 2002-02-17 19:42:31 +0000 |
commit | 4d9f43fe58441f274978bd37f319b3c63bd308d3 (patch) | |
tree | a9c66881d16890b41470cc24e11482c34a906618 /src/lib/libc/net/gethostnamadr.c | |
parent | f192ef46d42d6e5294ddb97a544aefe74db261c6 (diff) | |
download | openbsd-4d9f43fe58441f274978bd37f319b3c63bd308d3.tar.gz openbsd-4d9f43fe58441f274978bd37f319b3c63bd308d3.tar.bz2 openbsd-4d9f43fe58441f274978bd37f319b3c63bd308d3.zip |
Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
Diffstat (limited to 'src/lib/libc/net/gethostnamadr.c')
-rw-r--r-- | src/lib/libc/net/gethostnamadr.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libc/net/gethostnamadr.c b/src/lib/libc/net/gethostnamadr.c index d4e3c5e6f0..9061caf0c2 100644 --- a/src/lib/libc/net/gethostnamadr.c +++ b/src/lib/libc/net/gethostnamadr.c | |||
@@ -52,7 +52,7 @@ | |||
52 | */ | 52 | */ |
53 | 53 | ||
54 | #if defined(LIBC_SCCS) && !defined(lint) | 54 | #if defined(LIBC_SCCS) && !defined(lint) |
55 | static char rcsid[] = "$OpenBSD: gethostnamadr.c,v 1.44 2002/02/16 21:27:23 millert Exp $"; | 55 | static char rcsid[] = "$OpenBSD: gethostnamadr.c,v 1.45 2002/02/17 19:42:23 millert Exp $"; |
56 | #endif /* LIBC_SCCS and not lint */ | 56 | #endif /* LIBC_SCCS and not lint */ |
57 | 57 | ||
58 | #include <sys/param.h> | 58 | #include <sys/param.h> |
@@ -126,8 +126,7 @@ typedef union { | |||
126 | char ac; | 126 | char ac; |
127 | } align; | 127 | } align; |
128 | 128 | ||
129 | static struct hostent *getanswer __P((const querybuf *, int, const char *, | 129 | static struct hostent *getanswer(const querybuf *, int, const char *, int); |
130 | int)); | ||
131 | 130 | ||
132 | extern int h_errno; | 131 | extern int h_errno; |
133 | 132 | ||