xref: /aosp_15_r20/external/musl/src/network/gethostbyname.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #define _GNU_SOURCE
2 
3 #include <sys/socket.h>
4 #include <netdb.h>
5 #include <string.h>
6 #include <netinet/in.h>
7 
gethostbyname(const char * name)8 struct hostent *gethostbyname(const char *name)
9 {
10 	return gethostbyname2(name, AF_INET);
11 }
12