1 /* BEGIN INCLUDE FILE gcos_fct_entry.incl.pl1   (Wardd Multics)  05/30/81 1758.6 mst Sat */
 2 
 3 dcl 1 fct_entry     aligned based,
 4       2 filecode    char(2) aligned,                        /* file code (or blank) */
 5                                                             /* flags */
 6       2 sysout      bit(1) unaligned,                       /* 1=file is sysout or dac */
 7       2 dac         bit(1) unaligned,                       /* 1=file is dac,0=file is sysout */
 8       2 pad         bit(34) unaligned,                      /* unused */
 9       2 fibptr      ptr aligned                             /*        ptr to fib for this file */
10 ;
11 
12 /*   END INCLUDE FILE gcos_fct_entry.incl.pl1 */