1 
 2 /* BEGIN INCLUDE FILE ... cobol_type1.incl.pl1 */
 3 /* Last modified on 11/19/76 by ORN */
 4 
 5 /*
 6 A reserved word token is created in the minpral files for each occurrence
 7 of a reserved word in the source program.  The value of the key field
 8 indicates the specific reserved word which a type 1 token represents.
 9 */
10 
11 dcl rw_ptr ptr;
12 
13 /* BEGIN DECLARATION OF TYPE1 (RESERVED WORD) TOKEN */
14 dcl       1 reserved_word based (rw_ptr),
15 %include cobol_TYPE1;
16 /* END DECLARATION OF TYPE1 (RESERVED WORD) TOKEN */
17 
18 /* END INCLUDE FILE ... cobol_type1.incl.pl1 */
19