/*
 * rpc_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[] = {
	"Must be run as subprocess",
	"Unknown service",
	"RPC protocol error",
	"RPC not initialized",
	"Unknown host",
	"Unknown module",
	"Unknown realm",
	"Remote procedure call not implemented",
	"Nameserver timeout",
	"Name service error",
	"Host has no network 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;

static const struct error_table et = { text, 46832896L, 11 };

static struct et_list link = { (struct et_list *) 0, &et };

void initialize_rpc_error_table (NOARGS) {
    if (!link.next) {
        link.next = _et_list;
        _et_list = &link;
    }
}
