1 /*        BEGIN INCLUDE FILE comp_insert_arg.incl.pl1       */
 2 
 3 dcl arg_count_symb_index fixed bin static options (constant) init (2);
 4 dcl insert_arg_ptr  ptr init (null ());
 5 dcl 1 insert_arg    aligned like init_insert_arg based (insert_arg_ptr);
 6 
 7 dcl 1 init_insert_arg aligned static options (constant),
 8       2 bthrd       ptr init (null ()), /* backward thread pointer */
 9       2 fthrd       ptr init (null ()), /* forward thread pointer */
10       2 sptr        ptr init (null ()), /* string value pointer */
11       2 num_value   fixed bin (31);     /* value of numerics */
12 
13 /*        END INCLUDE FILE comp_insert_arg.incl.pl1         */