/*
 * discuss_err.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[] = {
	"Invalid transaction specification",
	"No current meeting",
	"No transactions selected",
	"Meeting not found in your meetings list",
	"Transaction is not a meeting announcement",
	"Meeting is already in list of meetings",
	"Child died on signal",
	"Child exited with error status",
	"No more transactions",
	"Action not performed",
    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, 2050710784L, 10 };

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

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