diff --git a/nx/source/runtime/util/inet_addr.c b/nx/source/runtime/util/inet_addr.c index 76bff7a7..aa2ed18f 100644 --- a/nx/source/runtime/util/inet_addr.c +++ b/nx/source/runtime/util/inet_addr.c @@ -160,11 +160,7 @@ static int inet_pton4(const char *src, void *dst) { * Paul Vixie, 1996. */ static const char * -inet_ntop6(src, dst, size) - const u_char *src; - char *dst; - size_t size; -{ +inet_ntop6(const u_char *src, char *dst, size_t size) { /* * Note that int32_t and int16_t need only be "at least" large enough * to contain a value of the specified size. On some systems, like @@ -276,10 +272,7 @@ inet_ntop6(src, dst, size) * Paul Vixie, 1996. */ static int -inet_pton6(src, dst) - const char *src; - u_char *dst; -{ +inet_pton6(const char *src, u_char *dst) { static const char xdigits_l[] = "0123456789abcdef", xdigits_u[] = "0123456789ABCDEF"; u_char tmp[IN6ADDRSZ], *tp, *endp, *colonp;