diff options
Diffstat (limited to 'libc/inet')
-rw-r--r-- | libc/inet/resolv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/inet/resolv.c b/libc/inet/resolv.c index e5558fbde..97e3a3897 100644 --- a/libc/inet/resolv.c +++ b/libc/inet/resolv.c @@ -1132,7 +1132,7 @@ struct netent * getnetbyname(const char * name) #ifdef L_res_init -int res_init() +int res_init(void) { return(0); } @@ -1181,7 +1181,7 @@ int res_query(const char *dname, int class, int type, #ifdef L_gethostbyaddr -struct hostent *gethostbyaddr (const void *addr, __socklen_t len, int type) +struct hostent *gethostbyaddr (const void *addr, socklen_t len, int type) { static struct hostent h; static char namebuf[256]; |