1 /* Declaration of the system log file.
 2 
 3    This file contains all error messages put out by the answering service */
 4 
 5 dcl 1 sys_log_file based (sys_log_ptr) aligned,
 6     2 count fixed bin,                                      /* number of messages */
 7     2 max fixed bin,                                        /* maximum number */
 8     2 ttime fixed bin (71),                                 /* date & time of last message */
 9     2 lep fixed bin,                                        /* last entry processed by daily_log_process */
10     2 lls char (12),                                        /* suffix on last log */
11     2 array (8159),
12       3 time fixed bin (71),                                /* time of entry */
13       3 svty fixed bin,                                     /* severity of entry */
14       3 line char (116);                                    /* error message. entry is 32 words */
15 
16 /* end of system log declaration */