Sign in
akaros
/
upstream
/
f2889d5fce2d042f8bbed1b6c868421a896e184f
/
.
/
tools
/
compilers
/
gcc-glibc
/
glibc-2.19-akaros
/
sysdeps
/
akaros
/
gethstbynm.c
blob: 69358c98b81efd19075f51b3fcc8585492066bcf [
file
]
#include
<netdb.h>
struct
hostent
*
gethostbyname
(
const
char
*
name
)
{
/* not sure if we are supposed to restrict to AF_INET for normal
* gethostbyname or not. */
return
gethostbyname2
(
name
,
AF_INET
);
}