musl-tcc/src/network/gethostbyname.c
2022-03-20 16:48:53 +08:00

12 lines
200 B
C

#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);
}