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