Sign in
mojo
/
mojo-tools
/
74b0cac9bdd351dc67c6fc99a7a8b64e85de2f5d
/
.
/
fusl
/
src
/
network
/
gethostbyname.c
blob: ccd9efae9665e1558b0c52a659482fcb840e710a [
file
]
#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
);
}