/*
 * bind_et.c:
 * This file is automatically generated; please do not edit it.
 */
#ifdef __STDC__
#define NOARGS void
#else
#define NOARGS
#define const
#endif

static const char * const text[] = {
	"No such host",
	"Nameserver timeout",
	"Name service error",
	"Host has no internet address",
    0
};

struct error_table {
    char const * const * msgs;
    long base;
    int n_msgs;
};
struct et_list {
    struct et_list *next;
    const struct error_table * table;
};
extern struct et_list *_et_list;

const struct error_table et_bind_error_table = { text, 1916411392L, 4 };

static struct et_list link = { 0, 0 };

void initialize_bind_error_table (NOARGS) {
    if (!link.table) {
        link.next = _et_list;
        link.table = &et_bind_error_table;
        _et_list = &link;
    }
}
