Sign in
akaros
/
upstream
/
0131abaccf13143ebcb907d083ecfbe118f9ba49
/
.
/
tools
/
compilers
/
gcc-glibc
/
glibc-2.19-akaros
/
sysdeps
/
akaros
/
gethstbynm.c
blob: 69358c98b81efd19075f51b3fcc8585492066bcf [
file
] [
log
] [
blame
]
#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
);
}