
#include <pthread.h>

struct hostent *gethostbyaddr(const char *addr, int len, int type)
{
    struct res_data *data;

    data = _res_init();
    return (data) ? gethostbyaddr_r(hostname, &data->answer) : NULL;
}

struct hostent *gethostbyaddr_r(const char *addr, int len, int type,
				struct hostent_answer *result)
{
}

