1 /* BEGIN INCLUDE FILE mdbm_modes_uids.incl.pl1 -- jccj 5/1/78 */
 2 
 3 dcl 1 modes_uids aligned based (mu_ptr),                    /* mode/uid combination */
 4     2 mu_nargs fixed bin,                                   /* number of modes/user_ids specified */
 5     2 mu (mu_nargs_init refer (modes_uids.mu_nargs)),
 6       3 chars char (4),                                     /* mode character combinations
 7                                                                Input:  for set_acl
 8                                                                Output:  for delete_acl
 9                                                                Blank:  for list_acl   */
10       3 name char (32);                                     /* access identifiers */
11 
12 dcl  mu_ptr ptr;
13 dcl  mu_nargs_init fixed bin;
14 
15 /* END INCLUDE FILE mdbm_modes_uids.incl.pl1 */
16