sieve_err.c
950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* sieve_err.c:
* This file is automatically generated; please do not edit it.
*/
#if 0
#ifdef __STDC__
#define NOARGS void
#else
#define NOARGS
#define const
#endif
static const char * const text[] = {
"Generic Sieve error",
"Sieve interpretor not finalized",
"Parse error in Sieve script",
"Run-time error during Sieve execution",
"Internal error in Sieve subsystem",
"Memory exhausted in Sieve subsystem",
"Sieve action already taken",
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, -1237848064L, 7 };
static struct et_list link = { 0, 0 };
#endif
void initialize_siev_error_table (NOARGS) {
#if 0
if (!link.table) {
link.next = _et_list;
link.table = &et;
_et_list = &link;
}
#endif
}