summaryrefslogtreecommitdiffstats
path: root/lang/hla/pkg-plist
blob: 31839b3ace6a6b4ce5fe03de1618d63386e75aa5 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
bin/hla
bin/hlaparse
lib/hlalib.a
include/hla/RADbg.hhf
include/hla/args.hhf
include/hla/arrays.hhf
include/hla/bits.hhf
include/hla/bsd.hhf
include/hla/chars.hhf
include/hla/console.hhf
include/hla/conv.hhf
include/hla/coroutines.hhf
include/hla/cset.hhf
include/hla/datetime.hhf
include/hla/dtClass.hhf
include/hla/env.hhf
include/hla/excepts.hhf
include/hla/fileclass.hhf
include/hla/fileio.hhf
include/hla/filesys.hhf
include/hla/getversion.hhf
include/hla/hla.hhf
include/hla/linux.hhf
include/hla/lists.hhf
include/hla/mac.hhf
include/hla/math.hhf
include/hla/memory.hhf
include/hla/misctypes.hhf
include/hla/mmap.hhf
include/hla/os.hhf
include/hla/os/aout.hhf
include/hla/os/atomic.hhf
include/hla/os/dirent.hhf
include/hla/os/errno.hhf
include/hla/os/fcntl.hhf
include/hla/os/fs.hhf
include/hla/os/ioport.hhf
include/hla/os/ipc.hhf
include/hla/os/kernel.hhf
include/hla/os/lists.hhf
include/hla/os/mm.hhf
include/hla/os/mman.hhf
include/hla/os/module.hhf
include/hla/os/msg.hhf
include/hla/os/net.hhf
include/hla/os/param.hhf
include/hla/os/poll.hhf
include/hla/os/prctl.hhf
include/hla/os/processor.hhf
include/hla/os/ptrace.hhf
include/hla/os/quota.hhf
include/hla/os/reboot.hhf
include/hla/os/resource.hhf
include/hla/os/sched.hhf
include/hla/os/semaphore.hhf
include/hla/os/shm.hhf
include/hla/os/signals.hhf
include/hla/os/socket.hhf
include/hla/os/spinlock.hhf
include/hla/os/stat.hhf
include/hla/os/syscall.hhf
include/hla/os/sysctl.hhf
include/hla/os/system.hhf
include/hla/os/time.hhf
include/hla/os/timer.hhf
include/hla/os/tqueue.hhf
include/hla/os/types.hhf
include/hla/os/uio.hhf
include/hla/os/unistd.hhf
include/hla/os/utsname.hhf
include/hla/os/wait.hhf
include/hla/osbsd.hhf
include/hla/oslinux.hhf
include/hla/osmac.hhf
include/hla/oswin.hhf
include/hla/patterns.hhf
include/hla/rand.hhf
include/hla/sockets.hhf
include/hla/stderr.hhf
include/hla/stdin.hhf
include/hla/stdio.hhf
include/hla/stdlib.hhf
include/hla/stdlibdata.hhf
include/hla/stdout.hhf
include/hla/stl.hhf
include/hla/strings.hhf
include/hla/switch.hhf
include/hla/tables.hhf
include/hla/timer.hhf
include/hla/w.hhf
include/hla/win32cons.hhf
include/hla/winmain.hhf
include/hla/wpa.hhf
include/hla/x86.hhf
include/hla/zstrings.hhf
%%PORTDOCS%%%%DOCSDIR%%/Reference/HLARef-1.gif
%%PORTDOCS%%%%DOCSDIR%%/Reference/HLARef.css
%%PORTDOCS%%%%DOCSDIR%%/Reference/HLARef.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/args.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/args_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/args_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/array.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/array_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/array_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image001.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image002.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image003.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image004.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image005.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image006.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image007.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image008.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image009.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image010.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image011.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image012.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image013.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image014.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image015.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image016.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image017.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/bits_files/image018.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/chars.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/chars_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/chars_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/console.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/console_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/console_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image001.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image002.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image003.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image004.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image005.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image006.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image007.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image008.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image009.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image010.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image011.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image012.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image013.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image014.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image015.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image016.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image017.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image018.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image019.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image020.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image021.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image022.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image023.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image024.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image025.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image026.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image027.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image028.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image029.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image030.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image031.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image032.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image033.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image034.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image035.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image036.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image037.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image038.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image039.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image040.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image041.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image042.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image043.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image044.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image045.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image046.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image047.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image048.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image049.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image050.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image051.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image052.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image053.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image054.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image055.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image056.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image057.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image058.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image059.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image060.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image061.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image062.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image063.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image064.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image065.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image066.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image067.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image068.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image069.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image070.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image071.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image072.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image073.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image074.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image075.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image076.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image077.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image078.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image079.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image080.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image081.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image082.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image083.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image084.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image085.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image086.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image087.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image088.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image089.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image090.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image091.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image092.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image093.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image094.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image095.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image096.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image097.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image098.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image099.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image100.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image101.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image102.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image103.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image104.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image105.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image106.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image107.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image108.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image109.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image110.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image111.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image112.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image113.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image114.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image115.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image116.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image117.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image118.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image119.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image120.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image121.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image122.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image123.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image124.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image125.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image126.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image127.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image128.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image129.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image130.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image131.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image132.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image133.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image134.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image135.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image136.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image137.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image138.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image139.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image140.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image141.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image142.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image143.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image144.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image145.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image146.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image147.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image148.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image149.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image150.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image151.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image152.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image153.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image154.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image155.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image156.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image157.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image158.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image159.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image160.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image161.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image162.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image163.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image164.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image165.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image166.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image167.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image168.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image169.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image170.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image171.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image172.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image173.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image174.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image175.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image176.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image177.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image178.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image179.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image180.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image181.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image182.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image183.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image184.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image185.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image186.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image187.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image188.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image189.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image190.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image191.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image192.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image193.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image194.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image195.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image196.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image197.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image198.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image199.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image200.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image201.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image202.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image203.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image204.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image205.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image206.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image207.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image208.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image209.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image210.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image211.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image212.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image213.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image214.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image215.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image216.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image217.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image218.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image219.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image220.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image221.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image222.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image223.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image224.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image225.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image226.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image227.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image228.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image229.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image230.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image231.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image232.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image233.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image234.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image235.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image236.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image237.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image238.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image239.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image240.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image241.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image242.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image243.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image244.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image245.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image246.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image247.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image248.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image249.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image250.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image251.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image252.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image253.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image254.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image255.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image256.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image257.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image258.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image259.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image260.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image261.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image262.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image263.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image264.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image265.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image266.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image267.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image268.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image269.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image270.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image271.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image272.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image273.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image274.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image275.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image276.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image277.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image278.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image279.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image280.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image281.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image282.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image283.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image284.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image285.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image286.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image287.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image288.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image289.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image290.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image291.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image292.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image293.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image294.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image295.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image296.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image297.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image298.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image299.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image300.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image301.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image302.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image303.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image304.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image305.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image306.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image307.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image308.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image309.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image310.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image311.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image312.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image313.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image314.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image315.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image316.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image317.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image318.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image319.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image320.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image321.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image322.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image323.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image324.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image325.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image326.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image327.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image328.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image329.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image330.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/conv_files/image331.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/coroutines.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/coroutines_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/coroutines_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image001.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image002.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image003.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image004.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image005.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image006.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image007.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image008.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image009.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image010.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image011.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image012.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image013.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image014.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image015.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image016.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image017.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image018.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image019.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image020.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image021.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image022.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image023.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image024.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image025.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image026.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image027.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image028.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image029.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image030.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image031.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image032.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image033.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image034.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image035.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image036.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image037.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image038.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image039.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image040.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image041.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image042.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image043.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image044.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image045.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image046.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image047.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image048.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image049.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image050.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image051.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image052.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image053.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image054.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image055.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image056.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image057.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image058.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image059.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image060.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image061.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image062.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image063.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image064.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image065.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image066.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image067.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image068.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image069.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image070.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image071.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image072.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image073.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image074.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/cset_files/image075.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/date.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/date_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/date_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/env.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/env_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/env_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/exceptions.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/exceptions_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/exceptions_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileclass.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileclass_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileclass_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileclass_files/image001.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileclass_files/image002.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileclass_files/image003.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileclass_files/image004.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileclass_files/image005.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileclass_files/image006.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileclass_files/image007.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileclass_files/image008.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileclass_files/image009.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image001.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image002.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image003.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image004.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image005.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image006.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image007.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image008.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image009.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image010.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image011.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image012.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image013.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image014.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image015.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image016.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image017.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image018.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image019.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image020.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image021.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image022.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image023.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image024.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image025.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image026.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image027.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image028.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image029.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image030.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image031.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image032.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image033.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image034.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image035.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image036.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image037.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image038.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image039.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image040.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image041.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image042.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image043.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image044.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image045.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image046.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image047.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image048.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image049.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image050.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image051.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image052.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image053.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image054.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image055.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image056.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image057.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image058.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image059.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image060.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image061.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image062.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image063.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image064.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image065.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image066.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image067.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image068.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image069.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image070.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image071.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image072.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image073.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image074.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image075.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image076.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image077.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image078.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image079.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image080.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image081.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image082.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image083.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image084.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image085.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image086.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image087.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image088.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image089.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image090.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image091.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image092.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image093.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image094.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image095.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image096.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image097.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image098.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image099.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image100.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image101.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image102.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image103.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image104.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image105.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image106.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image107.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image108.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image109.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image110.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image111.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image112.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image113.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image114.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image115.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image116.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image117.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image118.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image119.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image120.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image121.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image122.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image123.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image124.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image125.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image126.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image127.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image128.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image129.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image130.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image131.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image132.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image133.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image134.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image135.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image136.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image137.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image138.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image139.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image140.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image141.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image142.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image143.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image144.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image145.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image146.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image147.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image148.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image149.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image150.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image151.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image152.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image153.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image154.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image155.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image156.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image157.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image158.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image159.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image160.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image161.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image162.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image163.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image164.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image165.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image166.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image167.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image168.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image169.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image170.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image171.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image172.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image173.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image174.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image175.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image176.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image177.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image178.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image179.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image180.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image181.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image182.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image183.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image184.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image185.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image186.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image187.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image188.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image189.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image190.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image191.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image192.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image193.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image194.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image195.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image196.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image197.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image198.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image199.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image200.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image201.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image202.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image203.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image204.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image205.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image206.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image207.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image208.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image209.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image210.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image211.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image212.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image213.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image214.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image215.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image216.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image217.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image218.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image219.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image220.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image221.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image222.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image223.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image224.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image225.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image226.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image227.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image228.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image229.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image230.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image231.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image232.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image233.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image234.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image235.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image236.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image237.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image238.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image239.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image240.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image241.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image242.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image243.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image244.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image245.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image246.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image247.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image248.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image249.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image250.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image251.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image252.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image253.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image254.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image255.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image256.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image257.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image258.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image259.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image260.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image261.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image262.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image263.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image264.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image265.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image266.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image267.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image268.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image269.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/fileio_files/image270.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/filesys.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/filesys_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/filesys_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/hla.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/hla_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/hla_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/linux.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/linux_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/linux_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/lists.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/lists_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/lists_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/math.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/math_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/math_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/memmap.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/memmap_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/memmap_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/memory.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/memory_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/memory_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/parmpassing.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/parmpassing_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/parmpassing_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/patterns.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/patterns_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/patterns_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/random.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/random_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/random_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image001.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image002.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image003.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image004.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image005.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image006.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image007.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image008.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image009.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image010.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image011.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image012.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image013.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image014.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image015.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image016.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image017.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image018.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image019.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image020.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image021.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image022.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image023.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image024.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image025.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image026.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image027.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image028.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image029.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image030.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image031.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image032.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image033.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image034.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image035.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image036.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image037.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image038.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image039.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image040.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image041.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image042.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image043.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image044.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image045.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image046.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image047.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image048.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image049.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image050.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image051.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image052.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image053.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image054.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image055.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image056.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image057.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image058.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image059.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image060.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image061.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image062.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image063.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image064.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image065.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image066.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image067.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image068.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image069.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image070.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image071.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image072.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image073.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image074.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image075.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image076.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image077.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image078.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image079.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image080.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image081.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image082.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image083.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image084.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image085.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image086.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image087.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image088.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image089.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image090.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image091.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image092.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image093.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image094.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image095.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image096.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image097.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image098.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image099.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image100.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image101.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image102.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image103.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image104.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image105.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image106.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image107.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image108.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image109.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image110.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image111.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image112.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image113.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image114.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image115.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image116.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image117.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image118.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image119.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image120.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image121.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image122.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image123.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image124.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image125.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image126.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image127.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image128.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image129.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image130.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image131.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image132.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image133.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image134.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image135.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image136.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image137.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image138.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image139.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image140.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image141.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image142.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image143.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image144.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image145.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image146.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image147.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image148.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image149.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image150.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image151.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image152.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image153.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image154.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image155.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image156.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image157.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image158.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image159.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image160.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image161.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image162.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image163.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image164.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stderr_files/image165.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/image001.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/image002.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/image003.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/image004.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/image005.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/image006.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/image007.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/image008.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/image009.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/image010.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/image011.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/image012.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/image013.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/image014.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdin_files/image015.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image001.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image002.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image003.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image004.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image005.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image006.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image007.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image008.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image009.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image010.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image011.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image012.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image013.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image014.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image015.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image016.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image017.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image018.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image019.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image020.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image021.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image022.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image023.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image024.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image025.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image026.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image027.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image028.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image029.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image030.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image031.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image032.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image033.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image034.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image035.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image036.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image037.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image038.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image039.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image040.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image041.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image042.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image043.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image044.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image045.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image046.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image047.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image048.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image049.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image050.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image051.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image052.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image053.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image054.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image055.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image056.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image057.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image058.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image059.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image060.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image061.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image062.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image063.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image064.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image065.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image066.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image067.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image068.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image069.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image070.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image071.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image072.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image073.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image074.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image075.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image076.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image077.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image078.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image079.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image080.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image081.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image082.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image083.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image084.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image085.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image086.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image087.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image088.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image089.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image090.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image091.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image092.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image093.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image094.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image095.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image096.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image097.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image098.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image099.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image100.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image101.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image102.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image103.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image104.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image105.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image106.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image107.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image108.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image109.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image110.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image111.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image112.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image113.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image114.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image115.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image116.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image117.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image118.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image119.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image120.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image121.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image122.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image123.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image124.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image125.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image126.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image127.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image128.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image129.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image130.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image131.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image132.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image133.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image134.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image135.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image136.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image137.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image138.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image139.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image140.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image141.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image142.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image143.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image144.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image145.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image146.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image147.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image148.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image149.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image150.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image151.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image152.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image153.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image154.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image155.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image156.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image157.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image158.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image159.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image160.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image161.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image162.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image163.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image164.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/stdout_files/image165.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/strings.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/strings_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/strings_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/strings_files/image001.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/strings_files/image002.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/strings_files/image003.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/strings_files/image004.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/strings_files/image005.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/strings_files/image006.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/strings_files/image007.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/strings_files/image008.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/strings_files/image009.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/strings_files/image010.gif
%%PORTDOCS%%%%DOCSDIR%%/stdlib/strings_files/image011.pct
%%PORTDOCS%%%%DOCSDIR%%/stdlib/strings_files/image012.png
%%PORTDOCS%%%%DOCSDIR%%/stdlib/switch.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/switch_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/switch_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/tables.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/tables_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/tables_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/time.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/time_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/time_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/timer.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/timer_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/timer_files/header.htm
%%PORTDOCS%%%%DOCSDIR%%/stdlib/zstrings.html
%%PORTDOCS%%%%DOCSDIR%%/stdlib/zstrings_files/filelist.xml
%%PORTDOCS%%%%DOCSDIR%%/stdlib/zstrings_files/header.htm
OpenPOWER on IntegriCloud