diff options
Diffstat (limited to 'resolv/inet_net_pton.c')
-rw-r--r-- | resolv/inet_net_pton.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/resolv/inet_net_pton.c b/resolv/inet_net_pton.c index 14916f83f8..75a8515c15 100644 --- a/resolv/inet_net_pton.c +++ b/resolv/inet_net_pton.c @@ -54,11 +54,7 @@ static int inet_net_pton_ipv4 (const char *src, u_char *dst, * Paul Vixie (ISC), June 1996 */ int -inet_net_pton(af, src, dst, size) - int af; - const char *src; - void *dst; - size_t size; +inet_net_pton (int af, const char *src, void *dst, size_t size) { switch (af) { case AF_INET: @@ -86,10 +82,7 @@ inet_net_pton(af, src, dst, size) * Paul Vixie (ISC), June 1996 */ static int -inet_net_pton_ipv4(src, dst, size) - const char *src; - u_char *dst; - size_t size; +inet_net_pton_ipv4 (const char *src, u_char *dst, size_t size) { static const char xdigits[] = "0123456789abcdef"; int n, ch, tmp, dirty, bits; |