-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoken.tab.c
executable file
·12795 lines (11369 loc) · 445 KB
/
token.tab.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* A Bison parser, made by GNU Bison 2.3. */
/* Skeleton implementation for Bison's Yacc-like parsers in C
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* C LALR(1) parser skeleton written by Richard Stallman, by
simplifying the original so-called "semantic" parser. */
/* All symbols defined below should begin with yy or YY, to avoid
infringing on user name space. This should be done even for local
variables, as they might otherwise be expanded by user macros.
There are some unavoidable exceptions within include files to
define necessary library symbols; they are noted "INFRINGES ON
USER NAME SPACE" below. */
/* Identify Bison output. */
#define YYBISON 1
/* Bison version. */
#define YYBISON_VERSION "2.3"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
/* Pure parsers. */
#define YYPURE 0
/* Using locations. */
#define YYLSP_NEEDED 0
/* Tokens. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
/* Put the tokens into the symbol table, so that GDB and other debuggers
know about them. */
enum yytokentype {
ACCEPT = 258,
ACCESS = 259,
ADD = 260,
ADDRESS = 261,
ADVANCING = 262,
AFTER = 263,
ALL = 264,
ALPHABET = 265,
ALPHABETIC_TOK = 266,
ALPHABETIC_LOWER = 267,
ALPHABETIC_UPPER = 268,
ALPHANUMERIC = 269,
ALPHANUMERIC_EDITED = 270,
ALSO = 271,
ALTER = 272,
ALTERNATE = 273,
AND = 274,
ANY = 275,
ARE = 276,
AREA = 277,
AREAS = 278,
ASCENDING = 279,
AS = 280,
ASSIGN = 281,
AT = 282,
AUTHOR = 283,
AUTO = 284,
AUTOMATIC = 285,
BACKGROUND = 286,
BACKGROUNDCOLOR = 287,
BEEP = 288,
BEFORE = 289,
BEGINNING = 290,
BELL = 291,
BINARY = 292,
BLANK = 293,
BLINK = 294,
BLOCK = 295,
BOTTOM = 296,
BY = 297,
CALL = 298,
CALL_CONV_C = 299,
CALL_CONV_STDCALL = 300,
CALL_LOADLIB = 301,
CANCEL = 302,
CD = 303,
CENTER = 304,
CF = 305,
CH = 306,
CHAIN = 307,
CHAINING = 308,
CHARACTER = 309,
CHARACTERS = 310,
CLASS = 311,
CLOSE = 312,
CMD_LINE = 313,
COBWORD = 314,
CODE = 315,
CODE_SET = 316,
COLLATING = 317,
COLOR = 318,
COLUMN = 319,
COLUMNS = 320,
COMMA = 321,
COMMON = 322,
COMMUNICATION = 323,
COMP = 324,
COMP1 = 325,
COMP2 = 326,
COMP3 = 327,
COMP4 = 328,
COMP5 = 329,
COMP6 = 330,
COMPX = 331,
COMPUTE = 332,
CONDITIONAL = 333,
CONFIGURATION = 334,
CONSOLE = 335,
CONTAINS = 336,
CONTENT = 337,
CONTINUE = 338,
CONTROL = 339,
CONTROLS = 340,
CONVERT = 341,
CONVERTING = 342,
COPY = 343,
CORRESPONDING = 344,
COUNT = 345,
CURRENCY = 346,
CURSOR = 347,
CYCLE = 348,
DARK = 349,
DATA = 350,
DATA_POINTER = 351,
DATE_COMPILED = 352,
DATE_WRITTEN = 353,
DATE_TIME = 354,
DE = 355,
DEBUGGING = 356,
DECIMAL_POINT = 357,
DECLARATIVES = 358,
_DEFAULT = 359,
DELETE = 360,
DELIMITED = 361,
DELIMITER = 362,
DEPENDING = 363,
DESCENDING = 364,
DETAIL = 365,
DISK = 366,
DISPLAY = 367,
DISPLAY_SCREEN = 368,
DIRECTION = 369,
DIVIDE = 370,
DIVISION = 371,
DOWN = 372,
DUPLICATES = 373,
DYNAMIC = 374,
DBCS = 375,
ECHOTOKEN = 376,
ELSE = 377,
END = 378,
END_ACCEPT = 379,
END_ADD = 380,
END_CALL = 381,
END_CALL_LOADLIB = 382,
END_CHAIN = 383,
END_COMPUTE = 384,
END_DELETE = 385,
END_DISPLAY = 386,
END_DIVIDE = 387,
END_EVALUATE = 388,
END_FUNCTION = 389,
END_IF = 390,
END_MULTIPLY = 391,
END_OF_PAGE = 392,
END_PERFORM = 393,
END_PROGRAM = 394,
END_READ = 395,
END_RETURN = 396,
END_REWRITE = 397,
END_SEARCH = 398,
END_START = 399,
END_STRINGCMD = 400,
END_SUBTRACT = 401,
END_UNSTRING = 402,
END_WRITE = 403,
ENTER = 404,
ENVIRONMENT = 405,
ENVIRONMENT_VARIABLE = 406,
EOL = 407,
EOS = 408,
EQUAL = 409,
EQUALS = 410,
ERASE = 411,
ERROR_TOK = 412,
EVALUATE = 413,
EXCEPTION = 414,
EXIT = 415,
EXCLUSIVE = 416,
EXTEND = 417,
EXTERNAL = 418,
FALSE_TOK = 419,
FD = 420,
FILEX = 421,
FILE_CONTROL = 422,
FILE_ID = 423,
FILE_TOK = 424,
FILLER = 425,
FINAL = 426,
FIRST = 427,
FOOTING = 428,
FOR = 429,
FOREVER = 430,
FOREGROUND = 431,
FOREGROUNDCOLOR = 432,
FROM = 433,
FULL = 434,
FUNCTION = 435,
FUNCTION_ID = 436,
GENERATE = 437,
GIVING = 438,
GLOBAL = 439,
GO = 440,
GOBACK = 441,
GREATER = 442,
GROUP = 443,
HEADING = 444,
HIGH = 445,
HIGHLIGHT = 446,
HIGHVALUES = 447,
IDENTIFICATION = 448,
IF = 449,
IGNORE = 450,
IN = 451,
INDEX = 452,
INDEXED = 453,
INDICATE = 454,
INITIALIZE = 455,
INITIAL_TOK = 456,
INKEY = 457,
INITIATE = 458,
INPUT = 459,
INPUT_OUTPUT = 460,
INSPECT = 461,
INSTALLATION = 462,
INTO = 463,
INVALID = 464,
I_O = 465,
I_O_CONTROL = 466,
IS = 467,
JUSTIFIED = 468,
KEY = 469,
LABEL = 470,
LAST = 471,
LEADING = 472,
LEFT = 473,
LENGTH = 474,
LESS = 475,
LIMIT = 476,
LIMITS = 477,
LINAGE = 478,
LINE = 479,
LINES = 480,
LINKAGE = 481,
LISTSEP = 482,
LITERAL = 483,
LOCK = 484,
LOCAL_STORAGE = 485,
LOW = 486,
LOWER = 487,
LOWLIGHT = 488,
LOWVALUES = 489,
LPAR = 490,
MANUAL = 491,
MEMORY = 492,
MERGE = 493,
MINUS = 494,
MODE = 495,
MODULES = 496,
MOVE = 497,
MULTIPLE = 498,
MULTIPLY = 499,
NATIVE = 500,
NEGATIVE = 501,
NEXT = 502,
NO = 503,
NOECHO = 504,
NOT = 505,
NOTEXCEP = 506,
NULL_TOK = 507,
NUMBER = 508,
NUMBERS = 509,
NUMERIC = 510,
NUMERIC_EDITED = 511,
OBJECT_COMPUTER = 512,
OCCURS = 513,
OF = 514,
OFF = 515,
OMITTED = 516,
ON = 517,
ONLY = 518,
OPEN = 519,
OPTIONAL = 520,
OR = 521,
ORDER = 522,
ORGANIZATION = 523,
OTHER = 524,
OUTPUT = 525,
OVERFLOW_TOK = 526,
PACKED_DECIMAL = 527,
PADDING = 528,
PAGE_TOK = 529,
PARAGRAPH = 530,
PERIOD = 531,
PERFORM = 532,
PF = 533,
PH = 534,
PICTURE = 535,
PLUS = 536,
POINTER = 537,
POSITION = 538,
POSITIVE = 539,
PREVIOUS = 540,
PRINTER = 541,
PROCEDURE = 542,
PROCEDURES = 543,
PROCEED = 544,
PROGRAM = 545,
PROGRAM_ID = 546,
PURGE = 547,
QUOTES = 548,
RANDOM = 549,
RD = 550,
READ = 551,
READY = 552,
RECORD = 553,
RECORDS = 554,
RECURSIVE = 555,
REDEFINES = 556,
REEL = 557,
REFERENCE = 558,
REFERENCES = 559,
RELATIVE = 560,
RELEASE = 561,
REMAINDER = 562,
REMARK = 563,
REMOVAL = 564,
RENAMES = 565,
REPLACING = 566,
REPORT = 567,
REPORTING = 568,
REPORTS = 569,
REQUIRED = 570,
RESERVE = 571,
RESERVED = 572,
RESERVED_VIDEO = 573,
RESET = 574,
RETURN_TOK = 575,
RETURNING = 576,
REVERSEVIDEO = 577,
REWIND = 578,
REWRITE = 579,
RF = 580,
RH = 581,
RIGHT = 582,
ROUNDED = 583,
RUN = 584,
SAME = 585,
SCREEN = 586,
SD = 587,
SEARCH = 588,
SECTION = 589,
SECURE = 590,
SECURITY = 591,
SEGMENT_LIMIT = 592,
SELECT = 593,
SENTENCE = 594,
SEPARATE = 595,
SEQUENCE = 596,
SEQUENTIAL = 597,
SET = 598,
SIGN = 599,
SIZE = 600,
SORT = 601,
SORT_MERGE = 602,
SOURCE = 603,
SOURCE_COMPUTER = 604,
SPACES = 605,
SPECIAL_NAMES = 606,
STANDARD = 607,
STANDARD_1 = 608,
STANDARD_2 = 609,
START = 610,
STATUS = 611,
STD_ERROR = 612,
STD_INPUT = 613,
STD_OUTPUT = 614,
STOP = 615,
STRINGCMD = 616,
SUBTRACT = 617,
SUM = 618,
SYNCHRONIZED = 619,
TALLYING = 620,
TAPE = 621,
TCOBPROTO1 = 622,
TCOBPROTO2 = 623,
TELLYING = 624,
TERMINATE = 625,
TEST = 626,
THAN = 627,
THEN = 628,
THRU = 629,
TIMES = 630,
TO = 631,
TOKDUMMY = 632,
TOP = 633,
TRACE = 634,
TRAILING = 635,
TRUE_TOK = 636,
TYPE = 637,
UNDERLINE = 638,
UNIT = 639,
UNLOCK = 640,
_UNSIGNED = 641,
UNSTRING = 642,
UNTIL = 643,
UP = 644,
UPDATE = 645,
UPON = 646,
UPPER = 647,
USAGE = 648,
USAGENUM = 649,
USE = 650,
USING = 651,
VALUE = 652,
VALUE_LITERAL = 653,
VARYING = 654,
WHEN = 655,
WITH = 656,
WORDS = 657,
WORKING_STORAGE = 658,
WRITE = 659,
LT = 660,
LE = 661,
GT = 662,
GE = 663,
EQ = 664,
NE = 665,
ZERO = 666,
REVERSED_VIDEO = 667,
REVERSE = 668,
_TIME = 669,
DATE_AND_TIME = 670,
YYYYDDD = 671,
YYYYMMDD = 672,
_DAY = 673,
_DATE = 674,
CENTURY_DAY = 675,
CENTURY_DATE = 676,
_ESCAPE = 677,
TAB = 678,
AUTO_SKIP = 679,
PROMPT = 680,
REVERSED = 681,
DAY_AND_TIME = 682,
_MESSAGE = 683,
DAY_OF_WEEK = 684,
LPARAN_SUB = 685,
RPARAN_SUB = 686,
_COLON = 687,
_PLUS = 688,
_MINUS = 689,
_POW_OP = 690,
UNARY_SIGN = 691,
_DIVIDE = 692,
_MULTIPLY = 693,
INTEGER_LITERAL = 694,
NUMBER_LITERAL = 695,
FLOAT_LITERAL = 696,
HEX_NUMBER_LITERAL = 697,
IDENTIFIER = 698,
DQUOTE_LITERAL = 699,
SQUOTE_LITERAL = 700,
TXTLINE = 701,
PICTURE_STR = 702,
HEX_STRING = 703
};
#endif
/* Tokens. */
#define ACCEPT 258
#define ACCESS 259
#define ADD 260
#define ADDRESS 261
#define ADVANCING 262
#define AFTER 263
#define ALL 264
#define ALPHABET 265
#define ALPHABETIC_TOK 266
#define ALPHABETIC_LOWER 267
#define ALPHABETIC_UPPER 268
#define ALPHANUMERIC 269
#define ALPHANUMERIC_EDITED 270
#define ALSO 271
#define ALTER 272
#define ALTERNATE 273
#define AND 274
#define ANY 275
#define ARE 276
#define AREA 277
#define AREAS 278
#define ASCENDING 279
#define AS 280
#define ASSIGN 281
#define AT 282
#define AUTHOR 283
#define AUTO 284
#define AUTOMATIC 285
#define BACKGROUND 286
#define BACKGROUNDCOLOR 287
#define BEEP 288
#define BEFORE 289
#define BEGINNING 290
#define BELL 291
#define BINARY 292
#define BLANK 293
#define BLINK 294
#define BLOCK 295
#define BOTTOM 296
#define BY 297
#define CALL 298
#define CALL_CONV_C 299
#define CALL_CONV_STDCALL 300
#define CALL_LOADLIB 301
#define CANCEL 302
#define CD 303
#define CENTER 304
#define CF 305
#define CH 306
#define CHAIN 307
#define CHAINING 308
#define CHARACTER 309
#define CHARACTERS 310
#define CLASS 311
#define CLOSE 312
#define CMD_LINE 313
#define COBWORD 314
#define CODE 315
#define CODE_SET 316
#define COLLATING 317
#define COLOR 318
#define COLUMN 319
#define COLUMNS 320
#define COMMA 321
#define COMMON 322
#define COMMUNICATION 323
#define COMP 324
#define COMP1 325
#define COMP2 326
#define COMP3 327
#define COMP4 328
#define COMP5 329
#define COMP6 330
#define COMPX 331
#define COMPUTE 332
#define CONDITIONAL 333
#define CONFIGURATION 334
#define CONSOLE 335
#define CONTAINS 336
#define CONTENT 337
#define CONTINUE 338
#define CONTROL 339
#define CONTROLS 340
#define CONVERT 341
#define CONVERTING 342
#define COPY 343
#define CORRESPONDING 344
#define COUNT 345
#define CURRENCY 346
#define CURSOR 347
#define CYCLE 348
#define DARK 349
#define DATA 350
#define DATA_POINTER 351
#define DATE_COMPILED 352
#define DATE_WRITTEN 353
#define DATE_TIME 354
#define DE 355
#define DEBUGGING 356
#define DECIMAL_POINT 357
#define DECLARATIVES 358
#define _DEFAULT 359
#define DELETE 360
#define DELIMITED 361
#define DELIMITER 362
#define DEPENDING 363
#define DESCENDING 364
#define DETAIL 365
#define DISK 366
#define DISPLAY 367
#define DISPLAY_SCREEN 368
#define DIRECTION 369
#define DIVIDE 370
#define DIVISION 371
#define DOWN 372
#define DUPLICATES 373
#define DYNAMIC 374
#define DBCS 375
#define ECHOTOKEN 376
#define ELSE 377
#define END 378
#define END_ACCEPT 379
#define END_ADD 380
#define END_CALL 381
#define END_CALL_LOADLIB 382
#define END_CHAIN 383
#define END_COMPUTE 384
#define END_DELETE 385
#define END_DISPLAY 386
#define END_DIVIDE 387
#define END_EVALUATE 388
#define END_FUNCTION 389
#define END_IF 390
#define END_MULTIPLY 391
#define END_OF_PAGE 392
#define END_PERFORM 393
#define END_PROGRAM 394
#define END_READ 395
#define END_RETURN 396
#define END_REWRITE 397
#define END_SEARCH 398
#define END_START 399
#define END_STRINGCMD 400
#define END_SUBTRACT 401
#define END_UNSTRING 402
#define END_WRITE 403
#define ENTER 404
#define ENVIRONMENT 405
#define ENVIRONMENT_VARIABLE 406
#define EOL 407
#define EOS 408
#define EQUAL 409
#define EQUALS 410
#define ERASE 411
#define ERROR_TOK 412
#define EVALUATE 413
#define EXCEPTION 414
#define EXIT 415
#define EXCLUSIVE 416
#define EXTEND 417
#define EXTERNAL 418
#define FALSE_TOK 419
#define FD 420
#define FILEX 421
#define FILE_CONTROL 422
#define FILE_ID 423
#define FILE_TOK 424
#define FILLER 425
#define FINAL 426
#define FIRST 427
#define FOOTING 428
#define FOR 429
#define FOREVER 430
#define FOREGROUND 431
#define FOREGROUNDCOLOR 432
#define FROM 433
#define FULL 434
#define FUNCTION 435
#define FUNCTION_ID 436
#define GENERATE 437
#define GIVING 438
#define GLOBAL 439
#define GO 440
#define GOBACK 441
#define GREATER 442
#define GROUP 443
#define HEADING 444
#define HIGH 445
#define HIGHLIGHT 446
#define HIGHVALUES 447
#define IDENTIFICATION 448
#define IF 449
#define IGNORE 450
#define IN 451
#define INDEX 452
#define INDEXED 453
#define INDICATE 454
#define INITIALIZE 455
#define INITIAL_TOK 456
#define INKEY 457
#define INITIATE 458
#define INPUT 459
#define INPUT_OUTPUT 460
#define INSPECT 461
#define INSTALLATION 462
#define INTO 463
#define INVALID 464
#define I_O 465
#define I_O_CONTROL 466
#define IS 467
#define JUSTIFIED 468
#define KEY 469
#define LABEL 470
#define LAST 471
#define LEADING 472
#define LEFT 473
#define LENGTH 474
#define LESS 475
#define LIMIT 476
#define LIMITS 477
#define LINAGE 478
#define LINE 479
#define LINES 480
#define LINKAGE 481
#define LISTSEP 482
#define LITERAL 483
#define LOCK 484
#define LOCAL_STORAGE 485
#define LOW 486
#define LOWER 487
#define LOWLIGHT 488
#define LOWVALUES 489
#define LPAR 490
#define MANUAL 491
#define MEMORY 492
#define MERGE 493
#define MINUS 494
#define MODE 495
#define MODULES 496
#define MOVE 497
#define MULTIPLE 498
#define MULTIPLY 499
#define NATIVE 500
#define NEGATIVE 501
#define NEXT 502
#define NO 503
#define NOECHO 504
#define NOT 505
#define NOTEXCEP 506
#define NULL_TOK 507
#define NUMBER 508
#define NUMBERS 509
#define NUMERIC 510
#define NUMERIC_EDITED 511
#define OBJECT_COMPUTER 512
#define OCCURS 513
#define OF 514
#define OFF 515
#define OMITTED 516
#define ON 517
#define ONLY 518
#define OPEN 519
#define OPTIONAL 520
#define OR 521
#define ORDER 522
#define ORGANIZATION 523
#define OTHER 524
#define OUTPUT 525
#define OVERFLOW_TOK 526
#define PACKED_DECIMAL 527
#define PADDING 528
#define PAGE_TOK 529
#define PARAGRAPH 530
#define PERIOD 531
#define PERFORM 532
#define PF 533
#define PH 534
#define PICTURE 535
#define PLUS 536
#define POINTER 537
#define POSITION 538
#define POSITIVE 539
#define PREVIOUS 540
#define PRINTER 541
#define PROCEDURE 542
#define PROCEDURES 543
#define PROCEED 544
#define PROGRAM 545
#define PROGRAM_ID 546
#define PURGE 547
#define QUOTES 548
#define RANDOM 549
#define RD 550
#define READ 551
#define READY 552
#define RECORD 553
#define RECORDS 554
#define RECURSIVE 555
#define REDEFINES 556
#define REEL 557
#define REFERENCE 558
#define REFERENCES 559
#define RELATIVE 560
#define RELEASE 561
#define REMAINDER 562
#define REMARK 563
#define REMOVAL 564
#define RENAMES 565
#define REPLACING 566
#define REPORT 567
#define REPORTING 568
#define REPORTS 569
#define REQUIRED 570
#define RESERVE 571
#define RESERVED 572
#define RESERVED_VIDEO 573
#define RESET 574
#define RETURN_TOK 575
#define RETURNING 576
#define REVERSEVIDEO 577
#define REWIND 578
#define REWRITE 579
#define RF 580
#define RH 581
#define RIGHT 582
#define ROUNDED 583
#define RUN 584
#define SAME 585
#define SCREEN 586
#define SD 587
#define SEARCH 588
#define SECTION 589
#define SECURE 590
#define SECURITY 591
#define SEGMENT_LIMIT 592
#define SELECT 593
#define SENTENCE 594
#define SEPARATE 595
#define SEQUENCE 596
#define SEQUENTIAL 597
#define SET 598
#define SIGN 599
#define SIZE 600
#define SORT 601
#define SORT_MERGE 602
#define SOURCE 603
#define SOURCE_COMPUTER 604
#define SPACES 605
#define SPECIAL_NAMES 606
#define STANDARD 607
#define STANDARD_1 608
#define STANDARD_2 609
#define START 610
#define STATUS 611
#define STD_ERROR 612
#define STD_INPUT 613
#define STD_OUTPUT 614
#define STOP 615
#define STRINGCMD 616
#define SUBTRACT 617
#define SUM 618
#define SYNCHRONIZED 619
#define TALLYING 620
#define TAPE 621
#define TCOBPROTO1 622
#define TCOBPROTO2 623
#define TELLYING 624
#define TERMINATE 625
#define TEST 626
#define THAN 627
#define THEN 628
#define THRU 629
#define TIMES 630
#define TO 631
#define TOKDUMMY 632
#define TOP 633
#define TRACE 634
#define TRAILING 635
#define TRUE_TOK 636
#define TYPE 637
#define UNDERLINE 638
#define UNIT 639
#define UNLOCK 640
#define _UNSIGNED 641
#define UNSTRING 642
#define UNTIL 643
#define UP 644
#define UPDATE 645
#define UPON 646
#define UPPER 647
#define USAGE 648
#define USAGENUM 649
#define USE 650
#define USING 651
#define VALUE 652
#define VALUE_LITERAL 653
#define VARYING 654
#define WHEN 655
#define WITH 656
#define WORDS 657
#define WORKING_STORAGE 658
#define WRITE 659
#define LT 660
#define LE 661
#define GT 662
#define GE 663
#define EQ 664
#define NE 665
#define ZERO 666
#define REVERSED_VIDEO 667
#define REVERSE 668
#define _TIME 669
#define DATE_AND_TIME 670
#define YYYYDDD 671
#define YYYYMMDD 672
#define _DAY 673
#define _DATE 674
#define CENTURY_DAY 675
#define CENTURY_DATE 676
#define _ESCAPE 677
#define TAB 678
#define AUTO_SKIP 679
#define PROMPT 680
#define REVERSED 681
#define DAY_AND_TIME 682
#define _MESSAGE 683
#define DAY_OF_WEEK 684
#define LPARAN_SUB 685
#define RPARAN_SUB 686
#define _COLON 687
#define _PLUS 688
#define _MINUS 689
#define _POW_OP 690
#define UNARY_SIGN 691
#define _DIVIDE 692
#define _MULTIPLY 693
#define INTEGER_LITERAL 694
#define NUMBER_LITERAL 695
#define FLOAT_LITERAL 696
#define HEX_NUMBER_LITERAL 697
#define IDENTIFIER 698
#define DQUOTE_LITERAL 699
#define SQUOTE_LITERAL 700
#define TXTLINE 701
#define PICTURE_STR 702
#define HEX_STRING 703
/* Copy the first part of user declarations. */
#line 8 "token.y"
#include <stdio.h>
#include <stdlib.h>
#include "global.h"
#include "cobmain.h"
#include "util/reswords.h"
#include "procglobal.h"
/* Enabling traces. */
#ifndef YYDEBUG
# define YYDEBUG 0
#endif
/* Enabling verbose error messages. */
#ifdef YYERROR_VERBOSE
# undef YYERROR_VERBOSE
# define YYERROR_VERBOSE 1
#else
# define YYERROR_VERBOSE 0
#endif
/* Enabling the token table. */
#ifndef YYTOKEN_TABLE
# define YYTOKEN_TABLE 0
#endif
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE
#line 94 "token.y"
{