/*
 * usp_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[] = {
	"Not receiving block",
	"Not sending block",
	"Current block not ended",
	"Premature end of block",
	"Bad data",
	"No memeory",
	"Internal error",
    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, 50031104L, 7 };

static struct et_list link = { 0, 0 };

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