Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
musl
/
754f66afb76f59bb4c43f303fb9406a3841a448f
/
.
/
src
/
network
/
gethostbyname.c
blob: bfedf52ad65bfc6fb1b1c3304c67d9049aa584aa [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<sys/socket.h>
#include
<netdb.h>
#include
<string.h>
#include
<netinet/in.h>
struct
hostent
*
gethostbyname
(
const
char
*
name
)
{
return
gethostbyname2
(
name
,
AF_INET
);
}