1 #include "message.ih"
2 
3 int message_data = 0;
4 
5 Message m_message;          /* set to 0 by the compiler */
6 
7 char m_version[SIZEOF_VERSION];
8 
9 char *m_severity[] =
10     {
11         "NONE",             /* these two must be here.                  */
12         "ALL",              /* see `message_setverbosity'               */
13 
14         "DEBUG",            /* ordering must follow MESSAGE_SEVERITY    */
15         "INFO",             /* from here                                */
16         "NOTICE",
17         "WARNING",
18         "ERROR",
19         "CRITICAL",
20         "ALERT",
21         "EMERGENCY",
22     };
23