-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathupgrade3.4
802 lines (802 loc) · 50.8 KB
/
upgrade3.4
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
x ./etc/ifconfig.c, 7019 bytes, 14 tape blocks
x ./etc/in.routed/Makefile, 390 bytes, 1 tape blocks
x ./etc/in.routed/af.c, 2788 bytes, 6 tape blocks
x ./etc/in.routed/af.h, 1196 bytes, 3 tape blocks
x ./etc/in.routed/defs.h, 1720 bytes, 4 tape blocks
x ./etc/in.routed/inet.c, 5109 bytes, 10 tape blocks
x ./etc/in.routed/input.c, 5259 bytes, 11 tape blocks
x ./etc/in.routed/interface.h, 2416 bytes, 5 tape blocks
x ./etc/in.routed/main.c, 3486 bytes, 7 tape blocks
x ./etc/in.routed/output.c, 2946 bytes, 6 tape blocks
x ./etc/in.routed/startup.c, 10647 bytes, 21 tape blocks
x ./etc/in.routed/table.h, 2280 bytes, 5 tape blocks
x ./etc/in.routed/tables.c, 6677 bytes, 14 tape blocks
x ./etc/in.routed/trace.c, 5665 bytes, 12 tape blocks
x ./etc/in.routed/trace.h, 1610 bytes, 4 tape blocks
x ./etc/getty/main.c, 6768 bytes, 14 tape blocks
x ./lib/compile/Makefile, 3621 bytes, 8 tape blocks
x ./lib/compile/compile.c, 20018 bytes, 40 tape blocks
x ./lib/compile/data.c, 13241 bytes, 26 tape blocks
x ./lib/compile/driver.h, 14497 bytes, 29 tape blocks
x ./lib/compile/setup.c, 20399 bytes, 40 tape blocks
x ./lib/libc/rpc/xdr_mbuf.c, 5105 bytes, 10 tape blocks
x ./lib/libc/rpc/clnt_kudp.c, 13608 bytes, 27 tape blocks
x ./lib/libc/rpc/pmap_rmt.c, 9419 bytes, 19 tape blocks
x ./lib/libc/rpc/svc_auth.c, 2655 bytes, 6 tape blocks
x ./lib/libc/gen-4.2/Makefile, 571 bytes, 2 tape blocks
x ./lib/libc/gen-4.2/ctime.c, 13831 bytes, 28 tape blocks
x ./lib/libc/gen-4.2/putpwent.c, 447 bytes, 1 tape blocks
x ./lib/libc/gen-sys5/ctime.c, 17756 bytes, 35 tape blocks
x ./lib/libc/gen-sys5/putpwent.c, 532 bytes, 2 tape blocks
x ./lib/libc/stdio-4.2/doscan.c, 6565 bytes, 13 tape blocks
x ./lib/libc/sun/stdio/Makefile, 1445 bytes, 3 tape blocks
x ./lib/libc/sys-sys5/ioctl.c, 11354 bytes, 23 tape blocks
x ./lib/libc/sys/shmsys.c, 2637 bytes, 6 tape blocks
x ./sun/mon3/carrera/Makefile, 16977 bytes, 34 tape blocks
x ./sun/mon3/diag/diag.s, 106616 bytes, 209 tape blocks
x ./sun/mon3/m25/Makefile, 16095 bytes, 32 tape blocks
x ./sun/mon3/prism/Makefile, 16724 bytes, 33 tape blocks
x ./sun/mon3/sirius/Makefile, 17451 bytes, 35 tape blocks
x ./sun/mon3/sys/finit.c, 3989 bytes, 8 tape blocks
x ./sun/mon3/sys/fwritestr.c, 17799 bytes, 35 tape blocks
x ./sun/mon3/h/globram.h, 6570 bytes, 13 tape blocks
x ./sun/mon3/h/idprom.h, 1418 bytes, 3 tape blocks
x ./sun/mon3/h/led.h, 3510 bytes, 7 tape blocks
x ./sun/mon3/sun3/cpu.addrs.h, 5679 bytes, 12 tape blocks
x ./sun/mon3/sun3/cpu.map.h, 9790 bytes, 20 tape blocks
x ./sun/sys/conf.common/RELEASE, 4 bytes, 1 tape blocks
x ./sun/sys/conf.common/Makefile, 1987 bytes, 4 tape blocks
x ./sun/sys/h/ioctl.h, 14031 bytes, 28 tape blocks
x ./sun/sys/h/vmmeter.h, 3781 bytes, 8 tape blocks
x ./sun/sys/net/if.c, 10193 bytes, 20 tape blocks
x ./sun/sys/net/netisr.h, 1065 bytes, 3 tape blocks
x ./sun/sys/net/route.c, 8002 bytes, 16 tape blocks
x ./sun/sys/net/route.h, 2247 bytes, 5 tape blocks
x ./sun/sys/netinet/if_ether.c, 15377 bytes, 31 tape blocks
x ./sun/sys/netinet/in.c, 7385 bytes, 15 tape blocks
x ./sun/sys/netinet/in.h, 3322 bytes, 7 tape blocks
x ./sun/sys/netinet/in_pcb.c, 8583 bytes, 17 tape blocks
x ./sun/sys/netinet/ip_icmp.c, 9637 bytes, 19 tape blocks
x ./sun/sys/netinet/ip_input.c, 16538 bytes, 33 tape blocks
x ./sun/sys/netinet/ip_output.c, 8585 bytes, 17 tape blocks
x ./sun/sys/netinet/udp_usrreq.c, 8279 bytes, 17 tape blocks
x ./sun/sys/netinet/if_loop.c, 2244 bytes, 5 tape blocks
x ./sun/sys/netinet/in_proto.c, 2295 bytes, 5 tape blocks
x ./sun/sys/netinet/ip.h, 3252 bytes, 7 tape blocks
x ./sun/sys/netinet/tcp.h, 1375 bytes, 3 tape blocks
x ./sun/sys/netinet/tcp_input.c, 28007 bytes, 55 tape blocks
x ./sun/sys/netinet/tcp_output.c, 11425 bytes, 23 tape blocks
x ./sun/sys/netinet/tcp_subr.c, 6904 bytes, 14 tape blocks
x ./sun/sys/netinet/tcp_timer.c, 5533 bytes, 11 tape blocks
x ./sun/sys/netinet/tcp_timer.h, 4369 bytes, 9 tape blocks
x ./sun/sys/netinet/tcp_var.h, 3167 bytes, 7 tape blocks
x ./sun/sys/nfs/nfs_vnodeops.c, 37840 bytes, 74 tape blocks
x ./sun/sys/nfs/nfs_xdr.c, 19077 bytes, 38 tape blocks
x ./sun/sys/sun3/eccreg.h, 3767 bytes, 8 tape blocks
x ./sun/sys/sun3/machdep.c, 45766 bytes, 90 tape blocks
x ./sun/sys/sun3/autoconf.c, 18935 bytes, 37 tape blocks
x ./sun/sys/sun3/cpu.h, 3113 bytes, 7 tape blocks
x ./sun/sys/sun3/mem.c, 8478 bytes, 17 tape blocks
x ./sun/sys/sun3/scb.s, 5870 bytes, 12 tape blocks
x ./sun/sys/sun3/trap.c, 22694 bytes, 45 tape blocks
x ./sun/sys/sun3/vm_machdep.c, 26539 bytes, 52 tape blocks
x ./sun/sys/sundev/sc.c, 16346 bytes, 32 tape blocks
x ./sun/sys/sundev/sc_conf.c, 2206 bytes, 5 tape blocks
x ./sun/sys/sundev/scsi.h, 13260 bytes, 26 tape blocks
x ./sun/sys/sundev/sd.c, 24804 bytes, 49 tape blocks
x ./sun/sys/sundev/si.c, 68133 bytes, 134 tape blocks
x ./sun/sys/sundev/sireg.h, 10933 bytes, 22 tape blocks
x ./sun/sys/sundev/st.c, 36164 bytes, 71 tape blocks
x ./sun/sys/sundev/streg.h, 7455 bytes, 15 tape blocks
x ./sun/sys/sundev/xt.c, 27617 bytes, 54 tape blocks
x ./sun/sys/sundev/bwtwo.c, 11180 bytes, 22 tape blocks
x ./sun/sys/sundev/cg4reg.h, 1997 bytes, 4 tape blocks
x ./sun/sys/sundev/cgfour.c, 25861 bytes, 51 tape blocks
x ./sun/sys/sundev/cgtwo.c, 14986 bytes, 30 tape blocks
x ./sun/sys/sundev/gpone.c, 29938 bytes, 59 tape blocks
x ./sun/sys/sundev/kbd.c, 35631 bytes, 70 tape blocks
x ./sun/sys/sundev/sdreg.h, 425 bytes, 1 tape blocks
x ./sun/sys/sundev/vpc.c, 10682 bytes, 21 tape blocks
x ./sun/sys/sundev/zs_async.c, 18645 bytes, 37 tape blocks
x ./sun/sys/sundev/zs_common.c, 9876 bytes, 20 tape blocks
x ./sun/sys/sundist/Copyright, 45 bytes, 1 tape blocks
x ./sun/sys/sundist/MAKEDEV, 21586 bytes, 43 tape blocks
x ./sun/sys/sundist/buildmini.20.config, 93 bytes, 1 tape blocks
x ./sun/sys/sundist/maketape.20.config, 198 bytes, 1 tape blocks
x ./sun/sys/sundist/exclude.lists/usr.profiled, 243 bytes, 1 tape blocks
x ./sun/sys/sundist/exclude.lists/usr.sunview_prog, 7002 bytes, 14 tape blocks
x ./sun/sys/conf.sun2/GENERIC, 5093 bytes, 10 tape blocks
x ./sun/sys/conf.sun2/LINT, 4857 bytes, 10 tape blocks
x ./sun/sys/conf.sun2/SDST160, 1284 bytes, 3 tape blocks
x ./sun/sys/conf.sun2/XYMT160, 2023 bytes, 4 tape blocks
x ./sun/sys/conf.sun2/files.sun2, 4557 bytes, 9 tape blocks
x ./sun/sys/conf.sun2/makefile.obj.sun2, 4321 bytes, 9 tape blocks
x ./sun/sys/conf.sun2/makefile.sun2, 5500 bytes, 11 tape blocks
x ./sun/sys/conf.sun3/GENERIC, 4523 bytes, 9 tape blocks
x ./sun/sys/conf.sun3/LINT, 4388 bytes, 9 tape blocks
x ./sun/sys/conf.sun3/MACHINES, 130 bytes, 1 tape blocks
x ./sun/sys/conf.sun3/ND60, 833 bytes, 2 tape blocks
x ./sun/sys/conf.sun3/SDST110, 1468 bytes, 3 tape blocks
x ./sun/sys/conf.sun3/SDST160, 1430 bytes, 3 tape blocks
x ./sun/sys/conf.sun3/SDST260, 1431 bytes, 3 tape blocks
x ./sun/sys/conf.sun3/SDST60, 1086 bytes, 3 tape blocks
x ./sun/sys/conf.sun3/XYMT160, 2198 bytes, 5 tape blocks
x ./sun/sys/conf.sun3/XYMT260, 2199 bytes, 5 tape blocks
x ./sun/sys/conf.sun3/files.sun3, 4414 bytes, 9 tape blocks
x ./sun/sys/conf.sun3/makefile.obj.sun3, 4328 bytes, 9 tape blocks
x ./sun/sys/conf.sun3/makefile.sun3, 5242 bytes, 11 tape blocks
x ./sun/sys/specfs/spec_vnodeops.c, 10703 bytes, 21 tape blocks
x ./sun/sys/sun/cons.c, 7828 bytes, 16 tape blocks
x ./sun/sys/sun/fbio.h, 3249 bytes, 7 tape blocks
x ./sun/sys/sun/movc.s, 9849 bytes, 20 tape blocks
x ./sun/sys/sun/stubs.c, 2254 bytes, 5 tape blocks
x ./sun/sys/sun2/scb.s, 5684 bytes, 12 tape blocks
x ./sun/sys/sun2/vm_machdep.c, 21539 bytes, 43 tape blocks
x ./sun/sys/sunif/if_ie.c, 76558 bytes, 150 tape blocks
x ./sun/sys/sunif/if_iereg.h, 12926 bytes, 26 tape blocks
x ./sun/sys/sunif/if_ievar.h, 4997 bytes, 10 tape blocks
x ./sun/sys/sunif/if_lereg.h, 6433 bytes, 13 tape blocks
x ./sun/sys/sunif/if_subr.c, 14952 bytes, 30 tape blocks
x ./sun/sys/sunstand/genassym.c, 367 bytes, 1 tape blocks
x ./sun/sys/sunstand/if_ie.c, 16323 bytes, 32 tape blocks
x ./sun/sys/sunstand/if_le.c, 11646 bytes, 23 tape blocks
x ./sun/sys/sunstand/si.c, 14496 bytes, 29 tape blocks
x ./sun/sys/sunstand/srt0.s, 2697 bytes, 6 tape blocks
x ./sun/sys/sunwindowdev/win.c, 20036 bytes, 40 tape blocks
x ./sun/sys/sunwindowdev/windt.c, 50457 bytes, 99 tape blocks
x ./sun/sys/sunwindowdev/winioctl.c, 50924 bytes, 100 tape blocks
x ./sun/sys/sunwindowdev/wintree.h, 23573 bytes, 47 tape blocks
x ./sun/sys/sunwindowdev/ws.c, 15037 bytes, 30 tape blocks
x ./sun/sys/sunwindowdev/ws_dispense.c, 30331 bytes, 60 tape blocks
x ./sun/sys/sunwindowdev/ws_interrupt.c, 14872 bytes, 30 tape blocks
x ./sun/sys/sys/heap_kmem.c, 20725 bytes, 41 tape blocks
x ./sun/sys/sys/kern_exec.c, 12916 bytes, 26 tape blocks
x ./sun/sys/sys/kern_resource.c, 4397 bytes, 9 tape blocks
x ./sun/sys/sys/tty_pty.c, 14995 bytes, 30 tape blocks
x ./sun/sys/sys/uipc_syscalls.c, 16749 bytes, 33 tape blocks
x ./sun/sys/ufs/ufs_dir.c, 35652 bytes, 70 tape blocks
x ./sun/usr.etc/3.3/3.3UPGRADE, 18091 bytes, 36 tape blocks
x ./sun/usr.etc/3.3/extracting, 708 bytes, 2 tape blocks
x ./sun/usr.etc/3.3/verify_tapevol_arch, 1288 bytes, 3 tape blocks
x ./sun/usr.etc/3.4/3.4UPGRADE, 31471 bytes, 62 tape blocks
x ./sun/usr.etc/3.4/extracting, 709 bytes, 2 tape blocks
x ./sun/usr.etc/3.4/verify_tapevol_arch, 1282 bytes, 3 tape blocks
x ./sun/usr.etc/gpconfig.c, 10448 bytes, 21 tape blocks
x ./sun/usr.etc/eeprom/eeprom.c, 14841 bytes, 29 tape blocks
x ./sun/usr.etc/gpone/pp/setlineatts.pp.u, 2708 bytes, 6 tape blocks
x ./sun/usr.etc/gpone/pp/texvector.pp.u, 18020 bytes, 36 tape blocks
x ./sun/usr.etc/gpone/pp/xflineinit.pp.u, 2492 bytes, 5 tape blocks
x ./sun/usr.etc/gpone/vp/2Dfp.vp.u, 21462 bytes, 42 tape blocks
x ./sun/usr.etc/gpone/vp/3Dfp.vp.u, 27298 bytes, 54 tape blocks
x ./sun/usr.etc/gpone/vp/vp.h, 3472 bytes, 7 tape blocks
x ./sun/usr.bin/suntool/Makefile, 26298 bytes, 52 tape blocks
x ./sun/usr.bin/suntool/adjacentscreens.c, 3114 bytes, 7 tape blocks
x ./sun/usr.bin/suntool/basetools.h, 650 bytes, 2 tape blocks
x ./sun/usr.bin/suntool/bouncedemo.c, 2131 bytes, 5 tape blocks
x ./sun/usr.bin/suntool/canvas_demo.c, 13333 bytes, 27 tape blocks
x ./sun/usr.bin/suntool/clock.c, 14344 bytes, 29 tape blocks
x ./sun/usr.bin/suntool/cmdtool.c, 6102 bytes, 12 tape blocks
x ./sun/usr.bin/suntool/cursor_demo.c, 13890 bytes, 28 tape blocks
x ./sun/usr.bin/suntool/demo_merge.c, 1199 bytes, 3 tape blocks
x ./sun/usr.bin/suntool/framedemo.c, 4552 bytes, 9 tape blocks
x ./sun/usr.bin/suntool/gfxtool.c, 4315 bytes, 9 tape blocks
x ./sun/usr.bin/suntool/jumpdemo.c, 5322 bytes, 11 tape blocks
x ./sun/usr.bin/suntool/lockscreen.c, 27723 bytes, 55 tape blocks
x ./sun/usr.bin/suntool/lockscreen_default.c, 21023 bytes, 42 tape blocks
x ./sun/usr.bin/suntool/meter.c, 7448 bytes, 15 tape blocks
x ./sun/usr.bin/suntool/misc_merge.c, 1120 bytes, 3 tape blocks
x ./sun/usr.bin/suntool/overview.c, 18087 bytes, 36 tape blocks
x ./sun/usr.bin/suntool/perfmeter.c, 20581 bytes, 41 tape blocks
x ./sun/usr.bin/suntool/perfmon.c, 22218 bytes, 44 tape blocks
x ./sun/usr.bin/suntool/selection_svc.c, 614 bytes, 2 tape blocks
x ./sun/usr.bin/suntool/shelltool.c, 8565 bytes, 17 tape blocks
x ./sun/usr.bin/suntool/spheresdemo.c, 4407 bytes, 9 tape blocks
x ./sun/usr.bin/suntool/suntools.c, 34079 bytes, 67 tape blocks
x ./sun/usr.bin/suntool/suntools_menu.c, 5784 bytes, 12 tape blocks
x ./sun/usr.bin/suntool/swin.c, 8250 bytes, 17 tape blocks
x ./sun/usr.bin/suntool/switcher.c, 13406 bytes, 27 tape blocks
x ./sun/usr.bin/suntool/tektool.c, 2953 bytes, 6 tape blocks
x ./sun/usr.bin/suntool/textedit.c, 20332 bytes, 40 tape blocks
x ./sun/usr.bin/suntool/toolmerge.c, 2243 bytes, 5 tape blocks
x ./sun/usr.bin/suntool/toolplaces.c, 18089 bytes, 36 tape blocks
x ./sun/usr.bin/suntool/view_surface.c, 2280 bytes, 5 tape blocks
x ./sun/usr.bin/suntool/defaults/d2m_main.c, 5798 bytes, 12 tape blocks
x ./sun/usr.bin/suntool/defaults/defaults_from_input.c, 8427 bytes, 17 tape blocks
x ./sun/usr.bin/suntool/defaults/defaults_merge.c, 1725 bytes, 4 tape blocks
x ./sun/usr.bin/suntool/defaults/defaults_to_indentpro.c, 4115 bytes, 9 tape blocks
x ./sun/usr.bin/suntool/defaults/defaultsedit.c, 74570 bytes, 146 tape blocks
x ./sun/usr.bin/suntool/defaults/indentpro_to_defaults.c, 7701 bytes, 16 tape blocks
x ./sun/usr.bin/suntool/defaults/input_from_defaults.c, 9871 bytes, 20 tape blocks
x ./sun/usr.bin/suntool/defaults/m2d_def.h, 8714 bytes, 18 tape blocks
x ./sun/usr.bin/suntool/defaults/m2d_defaults.c, 1199 bytes, 3 tape blocks
x ./sun/usr.bin/suntool/defaults/m2d_execute.c, 7528 bytes, 15 tape blocks
x ./sun/usr.bin/suntool/defaults/m2d_main.c, 1419 bytes, 3 tape blocks
x ./sun/usr.bin/suntool/defaults/m2d_vars.c, 4840 bytes, 10 tape blocks
x ./sun/usr.bin/suntool/defaults/scrolldefaults.c, 33992 bytes, 67 tape blocks
x ./sun/usr.bin/suntool/defaults/stty_from_defaults.c, 1363 bytes, 3 tape blocks
x ./sun/usr.bin/suntool/defaults/sun2+_tables.c, 2648 bytes, 6 tape blocks
x ./sun/usr.bin/suntool/defaults/lib/Menu.d, 4122 bytes, 9 tape blocks
x ./sun/usr.bin/suntool/defaults/lib/SunView.d, 3067 bytes, 6 tape blocks
x ./sun/usr.bin/suntool/defaults/lib/Input.d, 2650 bytes, 6 tape blocks
x ./sun/usr.bin/suntool/defaults/Makefile, 8474 bytes, 17 tape blocks
x ./sun/usr.bin/suntool/iconedit/iconedit_browse.c, 11945 bytes, 24 tape blocks
x ./sun/usr.bin/suntool/iconedit/iconedit_canvas.c, 32542 bytes, 64 tape blocks
x ./sun/usr.bin/suntool/iconedit/iconedit_main.c, 5744 bytes, 12 tape blocks
x ./sun/usr.bin/suntool/iconedit/iconedit_panel.c, 45501 bytes, 89 tape blocks
x ./sun/usr.bin/suntool/iconedit/Makefile, 6847 bytes, 14 tape blocks
x ./sun/usr.bin/suntool/images/life.icon, 2021 bytes, 4 tape blocks
x ./sun/usr.bin/suntool/lib/suntools, 332 bytes, 1 tape blocks
x ./sun/usr.bin/suntool/lib/textswrc, 2408 bytes, 5 tape blocks
x ./sun/usr.bin/suntool/mailtool/cmds.c, 23884 bytes, 47 tape blocks
x ./sun/usr.bin/suntool/mailtool/mail.c, 13263 bytes, 26 tape blocks
x ./sun/usr.bin/suntool/mailtool/main.c, 2754 bytes, 6 tape blocks
x ./sun/usr.bin/suntool/mailtool/selection.c, 2699 bytes, 6 tape blocks
x ./sun/usr.bin/suntool/mailtool/subr.c, 590 bytes, 2 tape blocks
x ./sun/usr.bin/suntool/mailtool/tool.c, 24323 bytes, 48 tape blocks
x ./sun/usr.bin/suntool/mailtool/vars.c, 3144 bytes, 7 tape blocks
x ./sun/usr.bin/suntool/mailtool/Makefile, 4950 bytes, 10 tape blocks
x ./sun/usr.bin/suntool/misc/align_equals.c, 1585 bytes, 4 tape blocks
x ./sun/usr.bin/suntool/misc/capitalize.c, 3288 bytes, 7 tape blocks
x ./sun/usr.bin/suntool/misc/clear_functions.c, 655 bytes, 2 tape blocks
x ./sun/usr.bin/suntool/misc/get_selection.c, 2168 bytes, 5 tape blocks
x ./sun/usr.bin/suntool/misc/insert_brackets.c, 4569 bytes, 9 tape blocks
x ./sun/usr.bin/suntool/misc/setkeys.c, 23037 bytes, 45 tape blocks
x ./sun/usr.bin/suntool/misc/shift_lines.c, 2773 bytes, 6 tape blocks
x ./sun/usr.bin/suntool/misc/Makefile, 4738 bytes, 10 tape blocks
x ./sun/usr.bin/suntool/misc/test_client.c, 10547 bytes, 21 tape blocks
x ./sun/usr.bin/suntool/traffic/traffic.c, 17379 bytes, 34 tape blocks
x ./sun/usr.bin/suntool/traffic/Makefile, 1875 bytes, 4 tape blocks
x ./sun/usr.bin/suntool/Makefile.master, 2415 bytes, 5 tape blocks
x ./sun/usr.bin/suntool/examples/Makefile, 2149 bytes, 5 tape blocks
x ./sun/usr.bin/suntool/examples/confirm.c, 2987 bytes, 6 tape blocks
x ./sun/usr.bin/suntool/examples/seln_demo.c, 17624 bytes, 35 tape blocks
x ./sun/usr.bin/suntool/examples/typein.c, 3233 bytes, 7 tape blocks
x ./sun/usr.bin/suntool/fontedit/Makefile, 3800 bytes, 8 tape blocks
x ./sun/usr.bin/Makefile, 2935 bytes, 6 tape blocks
x ./sun/usr.bin/screendump/Makefile, 1434 bytes, 3 tape blocks
x ./sun/usr.bin/screendump/clear_colormap.c, 1677 bytes, 4 tape blocks
x ./sun/usr.bin/screendump/rasfilter8to1.c, 7317 bytes, 15 tape blocks
x ./sun/usr.bin/screendump/rastrepl.c, 6871 bytes, 14 tape blocks
x ./sun/usr.bin/screendump/screendump.c, 1357 bytes, 3 tape blocks
x ./sun/usr.bin/screendump/screendump.h, 527 bytes, 2 tape blocks
x ./sun/usr.bin/screendump/screenload.c, 5045 bytes, 10 tape blocks
x ./sun/usr.bin/screendump/screenmerge.c, 887 bytes, 2 tape blocks
x ./sun/usr.bin/screendump/screenutil.c, 615 bytes, 2 tape blocks
x ./sun/usr.lib/libsuntool/cursor_confirm.c, 1848 bytes, 4 tape blocks
x ./sun/usr.lib/libsuntool/emptysw.c, 5240 bytes, 11 tape blocks
x ./sun/usr.lib/libsuntool/expand_name.c, 5026 bytes, 10 tape blocks
x ./sun/usr.lib/libsuntool/expand_name.h, 1140 bytes, 3 tape blocks
x ./sun/usr.lib/libsuntool/expand_path.c, 2153 bytes, 5 tape blocks
x ./sun/usr.lib/libsuntool/fullscreen.c, 7878 bytes, 16 tape blocks
x ./sun/usr.lib/libsuntool/gfxsw.c, 12476 bytes, 25 tape blocks
x ./sun/usr.lib/libsuntool/gfxsw_input.c, 2012 bytes, 4 tape blocks
x ./sun/usr.lib/libsuntool/gfxsw_nocur.c, 1411 bytes, 3 tape blocks
x ./sun/usr.lib/libsuntool/gfxswimpl.h, 885 bytes, 2 tape blocks
x ./sun/usr.lib/libsuntool/icon.c, 2202 bytes, 5 tape blocks
x ./sun/usr.lib/libsuntool/icon_load.c, 7068 bytes, 14 tape blocks
x ./sun/usr.lib/libsuntool/icon_object.c, 4581 bytes, 9 tape blocks
x ./sun/usr.lib/libsuntool/menu.c, 15507 bytes, 31 tape blocks
x ./sun/usr.lib/libsuntool/msgsw.c, 3919 bytes, 8 tape blocks
x ./sun/usr.lib/libsuntool/msgsw.h, 1409 bytes, 3 tape blocks
x ./sun/usr.lib/libsuntool/prompt.c, 3450 bytes, 7 tape blocks
x ./sun/usr.lib/libsuntool/scrollbar_event.c, 19091 bytes, 38 tape blocks
x ./sun/usr.lib/libsuntool/scrollbar_impl.h, 4772 bytes, 10 tape blocks
x ./sun/usr.lib/libsuntool/scrollbar_paint.c, 18241 bytes, 36 tape blocks
x ./sun/usr.lib/libsuntool/scrollbar_public.c, 30007 bytes, 59 tape blocks
x ./sun/usr.lib/libsuntool/sel_appl.c, 3186 bytes, 7 tape blocks
x ./sun/usr.lib/libsuntool/sel_clnt.c, 21099 bytes, 42 tape blocks
x ./sun/usr.lib/libsuntool/sel_common.c, 14660 bytes, 29 tape blocks
x ./sun/usr.lib/libsuntool/sel_debug.c, 7940 bytes, 16 tape blocks
x ./sun/usr.lib/libsuntool/sel_policy.c, 4268 bytes, 9 tape blocks
x ./sun/usr.lib/libsuntool/sel_svc.c, 23844 bytes, 47 tape blocks
x ./sun/usr.lib/libsuntool/sel_xdr.c, 4219 bytes, 9 tape blocks
x ./sun/usr.lib/libsuntool/selection.c, 2984 bytes, 6 tape blocks
x ./sun/usr.lib/libsuntool/selection_impl.h, 3865 bytes, 8 tape blocks
x ./sun/usr.lib/libsuntool/tek.c, 14865 bytes, 30 tape blocks
x ./sun/usr.lib/libsuntool/tek.h, 3856 bytes, 8 tape blocks
x ./sun/usr.lib/libsuntool/teksw.c, 6905 bytes, 14 tape blocks
x ./sun/usr.lib/libsuntool/teksw.h, 859 bytes, 2 tape blocks
x ./sun/usr.lib/libsuntool/teksw_imp.h, 695 bytes, 2 tape blocks
x ./sun/usr.lib/libsuntool/teksw_ui.c, 24912 bytes, 49 tape blocks
x ./sun/usr.lib/libsuntool/tla_find.c, 2173 bytes, 5 tape blocks
x ./sun/usr.lib/libsuntool/tla_freelist.c, 1284 bytes, 3 tape blocks
x ./sun/usr.lib/libsuntool/tla_get.c, 3494 bytes, 7 tape blocks
x ./sun/usr.lib/libsuntool/tla_make.c, 7819 bytes, 16 tape blocks
x ./sun/usr.lib/libsuntool/tla_parse.c, 9833 bytes, 20 tape blocks
x ./sun/usr.lib/libsuntool/tla_set.c, 10696 bytes, 21 tape blocks
x ./sun/usr.lib/libsuntool/tla_storage.c, 5266 bytes, 11 tape blocks
x ./sun/usr.lib/libsuntool/tla_usage.c, 1021 bytes, 2 tape blocks
x ./sun/usr.lib/libsuntool/tool_bdry.c, 19169 bytes, 38 tape blocks
x ./sun/usr.lib/libsuntool/tool_begin.c, 6417 bytes, 13 tape blocks
x ./sun/usr.lib/libsuntool/tool_impl.h, 1573 bytes, 4 tape blocks
x ./sun/usr.lib/libsuntool/tool_create.c, 3296 bytes, 7 tape blocks
x ./sun/usr.lib/libsuntool/tool_destroy.c, 2886 bytes, 6 tape blocks
x ./sun/usr.lib/libsuntool/tool_display.c, 11654 bytes, 23 tape blocks
x ./sun/usr.lib/libsuntool/tool_draw_box.c, 1461 bytes, 3 tape blocks
x ./sun/usr.lib/libsuntool/tool_input.c, 8554 bytes, 17 tape blocks
x ./sun/usr.lib/libsuntool/tool_install.c, 2942 bytes, 6 tape blocks
x ./sun/usr.lib/libsuntool/tool_kbd.c, 1565 bytes, 4 tape blocks
x ./sun/usr.lib/libsuntool/tool_layout.c, 4052 bytes, 8 tape blocks
x ./sun/usr.lib/libsuntool/tool_pos.c, 3016 bytes, 6 tape blocks
x ./sun/usr.lib/libsuntool/tool_select.c, 6180 bytes, 13 tape blocks
x ./sun/usr.lib/libsuntool/wmgr.h, 4160 bytes, 9 tape blocks
x ./sun/usr.lib/libsuntool/wmgr_attic.c, 1739 bytes, 4 tape blocks
x ./sun/usr.lib/libsuntool/wmgr_cursors.c, 3062 bytes, 6 tape blocks
x ./sun/usr.lib/libsuntool/wmgr_findspace.c, 2349 bytes, 5 tape blocks
x ./sun/usr.lib/libsuntool/wmgr_menu.c, 6874 bytes, 14 tape blocks
x ./sun/usr.lib/libsuntool/wmgr_policy.c, 18200 bytes, 36 tape blocks
x ./sun/usr.lib/libsuntool/wmgr_policy.h, 1420 bytes, 3 tape blocks
x ./sun/usr.lib/libsuntool/wmgr_rect.c, 21569 bytes, 43 tape blocks
x ./sun/usr.lib/libsuntool/wmgr_state.c, 8658 bytes, 17 tape blocks
x ./sun/usr.lib/libsuntool/wmgr_walkmenu.c, 6959 bytes, 14 tape blocks
x ./sun/usr.lib/libsuntool/menu/image.c, 9216 bytes, 18 tape blocks
x ./sun/usr.lib/libsuntool/menu/image.h, 3425 bytes, 7 tape blocks
x ./sun/usr.lib/libsuntool/menu/image_impl.h, 1615 bytes, 4 tape blocks
x ./sun/usr.lib/libsuntool/menu/walkmenu.h, 8205 bytes, 17 tape blocks
x ./sun/usr.lib/libsuntool/menu/walkmenu_get.c, 8164 bytes, 16 tape blocks
x ./sun/usr.lib/libsuntool/menu/walkmenu_impl.h, 4226 bytes, 9 tape blocks
x ./sun/usr.lib/libsuntool/menu/walkmenu_public.c, 21778 bytes, 43 tape blocks
x ./sun/usr.lib/libsuntool/menu/walkmenu_render.c, 24028 bytes, 47 tape blocks
x ./sun/usr.lib/libsuntool/menu/walkmenu_set.c, 16215 bytes, 32 tape blocks
x ./sun/usr.lib/libsuntool/menu/Makefile, 3358 bytes, 7 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_attr.c, 15225 bytes, 30 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_button.c, 3806 bytes, 8 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_choice.c, 42699 bytes, 84 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_create.c, 11966 bytes, 24 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_image.c, 3495 bytes, 7 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_impl.h, 15462 bytes, 31 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_line.c, 3526 bytes, 7 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_menu.c, 18739 bytes, 37 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_message.c, 2330 bytes, 5 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_notify.c, 3789 bytes, 8 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_paint.c, 4955 bytes, 10 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_public.c, 13848 bytes, 28 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_scroll.c, 27064 bytes, 53 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_select.c, 11550 bytes, 23 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_seln.c, 11721 bytes, 23 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_slider.c, 13462 bytes, 27 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_sw.c, 3993 bytes, 8 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_text.c, 29758 bytes, 59 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_tio.c, 4333 bytes, 9 tape blocks
x ./sun/usr.lib/libsuntool/panel/panel_util.c, 14777 bytes, 29 tape blocks
x ./sun/usr.lib/libsuntool/panel/Makefile, 18818 bytes, 37 tape blocks
x ./sun/usr.lib/libsuntool/text/copy_file.c, 2131 bytes, 5 tape blocks
x ./sun/usr.lib/libsuntool/text/ei_attr.c, 584 bytes, 2 tape blocks
x ./sun/usr.lib/libsuntool/text/ei_plain_text.c, 26700 bytes, 53 tape blocks
x ./sun/usr.lib/libsuntool/text/entity_interpreter.h, 5258 bytes, 11 tape blocks
x ./sun/usr.lib/libsuntool/text/entity_stream.h, 5316 bytes, 11 tape blocks
x ./sun/usr.lib/libsuntool/text/entity_view.h, 8994 bytes, 18 tape blocks
x ./sun/usr.lib/libsuntool/text/es_attr.c, 575 bytes, 2 tape blocks
x ./sun/usr.lib/libsuntool/text/es_file.c, 18700 bytes, 37 tape blocks
x ./sun/usr.lib/libsuntool/text/es_mem.c, 5602 bytes, 11 tape blocks
x ./sun/usr.lib/libsuntool/text/es_util.c, 3499 bytes, 7 tape blocks
x ./sun/usr.lib/libsuntool/text/ev_attr.c, 11025 bytes, 22 tape blocks
x ./sun/usr.lib/libsuntool/text/ev_display.c, 51527 bytes, 101 tape blocks
x ./sun/usr.lib/libsuntool/text/ev_edit.c, 27577 bytes, 54 tape blocks
x ./sun/usr.lib/libsuntool/text/ev_impl.h, 13230 bytes, 26 tape blocks
x ./sun/usr.lib/libsuntool/text/ev_once.c, 14373 bytes, 29 tape blocks
x ./sun/usr.lib/libsuntool/text/ev_op_bdry.c, 13810 bytes, 27 tape blocks
x ./sun/usr.lib/libsuntool/text/finger_table.c, 10523 bytes, 21 tape blocks
x ./sun/usr.lib/libsuntool/text/finger_table.h, 6924 bytes, 14 tape blocks
x ./sun/usr.lib/libsuntool/text/primal.h, 1732 bytes, 4 tape blocks
x ./sun/usr.lib/libsuntool/text/ps_impl.c, 38085 bytes, 75 tape blocks
x ./sun/usr.lib/libsuntool/text/ps_impl.h, 3563 bytes, 7 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw.h, 12306 bytes, 25 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_again.c, 18625 bytes, 37 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_attr.c, 27611 bytes, 54 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_dbx.c, 5981 bytes, 12 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_display.c, 4110 bytes, 9 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_edit.c, 13290 bytes, 26 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_event.c, 6467 bytes, 13 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_file.c, 28504 bytes, 56 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_filter.c, 22793 bytes, 45 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_find.c, 6161 bytes, 13 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_get_key.c, 13256 bytes, 26 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_impl.h, 18447 bytes, 37 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_input.c, 27532 bytes, 54 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_menu.c, 35017 bytes, 69 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_once.c, 23931 bytes, 47 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_put_key.c, 6583 bytes, 13 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_scroll.c, 2261 bytes, 5 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_selection.c, 18551 bytes, 37 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_seln_svc.c, 42623 bytes, 84 tape blocks
x ./sun/usr.lib/libsuntool/text/textsw_tool.c, 3744 bytes, 8 tape blocks
x ./sun/usr.lib/libsuntool/text/Makefile, 16638 bytes, 33 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/charimage.h, 693 bytes, 2 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/charscreen.h, 1120 bytes, 3 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/cim_change.c, 5238 bytes, 11 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/cim_size.c, 4876 bytes, 10 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/csr_change.c, 7861 bytes, 16 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/csr_init.c, 2116 bytes, 5 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/csr_sig.c, 1707 bytes, 4 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttyansi.c, 30510 bytes, 60 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttyselect.c, 30099 bytes, 59 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttysw.h, 1837 bytes, 4 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttysw_gtty.c, 3565 bytes, 7 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttysw_impl.h, 6695 bytes, 14 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttysw_init.c, 19955 bytes, 39 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttysw_main.c, 15678 bytes, 31 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttysw_mapkey.c, 9419 bytes, 19 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttysw_menu.c, 15650 bytes, 31 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttysw_notify.c, 40962 bytes, 81 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttysw_stty.c, 1910 bytes, 4 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttysw_tio.c, 4144 bytes, 9 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttysw_tsw.c, 1010 bytes, 2 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttytlsw.c, 7636 bytes, 15 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttytlsw_notify.c, 1986 bytes, 4 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttytlsw_tio.c, 1731 bytes, 4 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/Makefile, 12370 bytes, 25 tape blocks
x ./sun/usr.lib/libsuntool/ttysw/ttysw_modes.c, 8981 bytes, 18 tape blocks
x ./sun/usr.lib/libsuntool/window/canvas.c, 15754 bytes, 31 tape blocks
x ./sun/usr.lib/libsuntool/window/canvas.h, 1494 bytes, 3 tape blocks
x ./sun/usr.lib/libsuntool/window/canvas_impl.h, 3503 bytes, 7 tape blocks
x ./sun/usr.lib/libsuntool/window/canvas_repaint.c, 7611 bytes, 15 tape blocks
x ./sun/usr.lib/libsuntool/window/canvas_resize.c, 4527 bytes, 9 tape blocks
x ./sun/usr.lib/libsuntool/window/canvas_scroll.c, 11030 bytes, 22 tape blocks
x ./sun/usr.lib/libsuntool/window/demo.c, 6911 bytes, 14 tape blocks
x ./sun/usr.lib/libsuntool/window/frame.c, 11411 bytes, 23 tape blocks
x ./sun/usr.lib/libsuntool/window/frame.h, 3981 bytes, 8 tape blocks
x ./sun/usr.lib/libsuntool/window/frame_get.c, 6210 bytes, 13 tape blocks
x ./sun/usr.lib/libsuntool/window/frame_layout.c, 15112 bytes, 30 tape blocks
x ./sun/usr.lib/libsuntool/window/frame_set.c, 8208 bytes, 17 tape blocks
x ./sun/usr.lib/libsuntool/window/panel.c, 3245 bytes, 7 tape blocks
x ./sun/usr.lib/libsuntool/window/text.c, 3076 bytes, 7 tape blocks
x ./sun/usr.lib/libsuntool/window/tty.c, 10263 bytes, 21 tape blocks
x ./sun/usr.lib/libsuntool/window/tty.h, 3660 bytes, 8 tape blocks
x ./sun/usr.lib/libsuntool/window/window.c, 10710 bytes, 21 tape blocks
x ./sun/usr.lib/libsuntool/window/window.h, 8621 bytes, 17 tape blocks
x ./sun/usr.lib/libsuntool/window/window_get.c, 11316 bytes, 23 tape blocks
x ./sun/usr.lib/libsuntool/window/window_impl.h, 2198 bytes, 5 tape blocks
x ./sun/usr.lib/libsuntool/window/window_loop.c, 4305 bytes, 9 tape blocks
x ./sun/usr.lib/libsuntool/window/window_set.c, 19254 bytes, 38 tape blocks
x ./sun/usr.lib/libsuntool/window/Makefile, 10820 bytes, 22 tape blocks
x ./sun/usr.lib/libsuntool/Makefile, 32422 bytes, 64 tape blocks
x ./sun/usr.lib/libsuntool/Makefile.master, 3029 bytes, 6 tape blocks
x ./sun/usr.lib/libsuntool/icon_load.h, 5112 bytes, 10 tape blocks
x ./sun/usr.lib/libsuntool/llib-lsuntool, 35495 bytes, 70 tape blocks
x ./sun/usr.lib/libsuntool/llib-lsuntool-private, 87784 bytes, 172 tape blocks
x ./sun/usr.lib/libsunwindow/Makefile, 15933 bytes, 32 tape blocks
x ./sun/usr.lib/libsunwindow/attr.c, 11782 bytes, 24 tape blocks
x ./sun/usr.lib/libsunwindow/attr.h, 11199 bytes, 22 tape blocks
x ./sun/usr.lib/libsunwindow/attr_copy.c, 2570 bytes, 6 tape blocks
x ./sun/usr.lib/libsunwindow/attr_cu.c, 8094 bytes, 16 tape blocks
x ./sun/usr.lib/libsunwindow/cursor.c, 8942 bytes, 18 tape blocks
x ./sun/usr.lib/libsunwindow/getlogindir.c, 997 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/pixwin.h, 14881 bytes, 30 tape blocks
x ./sun/usr.lib/libsunwindow/pw_access.c, 20419 bytes, 40 tape blocks
x ./sun/usr.lib/libsunwindow/pw_batch.c, 3826 bytes, 8 tape blocks
x ./sun/usr.lib/libsunwindow/pw_batchrop.c, 1877 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/pw_cms.c, 39792 bytes, 78 tape blocks
x ./sun/usr.lib/libsunwindow/pw_copy.c, 8134 bytes, 16 tape blocks
x ./sun/usr.lib/libsunwindow/pw_curve.c, 1698 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/pw_get.c, 1737 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/pw_line.c, 1527 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/pw_minlock.c, 1456 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/pw_polygon2.c, 1737 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/pw_polyline.c, 1869 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/pw_polypoint.c, 1688 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/pw_put.c, 970 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/pw_read.c, 2328 bytes, 5 tape blocks
x ./sun/usr.lib/libsunwindow/pw_rop.c, 4988 bytes, 10 tape blocks
x ./sun/usr.lib/libsunwindow/pw_rotcmap.c, 1088 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/pw_shared.c, 13299 bytes, 26 tape blocks
x ./sun/usr.lib/libsunwindow/pw_text.c, 3946 bytes, 8 tape blocks
x ./sun/usr.lib/libsunwindow/pw_traprop.c, 1646 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/pw_util.c, 955 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/pw_util.h, 3289 bytes, 7 tape blocks
x ./sun/usr.lib/libsunwindow/pw_vector.c, 1538 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/rect.c, 3902 bytes, 8 tape blocks
x ./sun/usr.lib/libsunwindow/rect.h, 3507 bytes, 7 tape blocks
x ./sun/usr.lib/libsunwindow/rectlist.c, 16150 bytes, 32 tape blocks
x ./sun/usr.lib/libsunwindow/setenv.c, 2168 bytes, 5 tape blocks
x ./sun/usr.lib/libsunwindow/sun.h, 1165 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/win_axe_ind.c, 879 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/win_bell.c, 2640 bytes, 6 tape blocks
x ./sun/usr.lib/libsunwindow/win_blanket.c, 2007 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/win_central.c, 30035 bytes, 59 tape blocks
x ./sun/usr.lib/libsunwindow/win_cms.c, 1371 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/win_cursor.c, 2440 bytes, 5 tape blocks
x ./sun/usr.lib/libsunwindow/win_enum.c, 5038 bytes, 10 tape blocks
x ./sun/usr.lib/libsunwindow/win_environ.c, 1997 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/win_geometry.c, 1820 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/win_getscr.c, 665 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/win_global.c, 2280 bytes, 5 tape blocks
x ./sun/usr.lib/libsunwindow/win_input.c, 6096 bytes, 12 tape blocks
x ./sun/usr.lib/libsunwindow/win_input.h, 8901 bytes, 18 tape blocks
x ./sun/usr.lib/libsunwindow/win_ioctl.h, 17420 bytes, 35 tape blocks
x ./sun/usr.lib/libsunwindow/win_is_ind.c, 925 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/win_lock.h, 4266 bytes, 9 tape blocks
x ./sun/usr.lib/libsunwindow/win_misc.c, 2389 bytes, 5 tape blocks
x ./sun/usr.lib/libsunwindow/win_notify.h, 2307 bytes, 5 tape blocks
x ./sun/usr.lib/libsunwindow/win_screen.c, 9620 bytes, 19 tape blocks
x ./sun/usr.lib/libsunwindow/win_screen.h, 1515 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/win_screenadj.c, 1714 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/win_set_ind.c, 896 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/win_treeop.c, 3392 bytes, 7 tape blocks
x ./sun/usr.lib/libsunwindow/win_ttyenv.c, 5234 bytes, 11 tape blocks
x ./sun/usr.lib/libsunwindow/defaults/defaults.c, 57293 bytes, 112 tape blocks
x ./sun/usr.lib/libsunwindow/defaults/defaults_test.c, 2435 bytes, 5 tape blocks
x ./sun/usr.lib/libsunwindow/defaults/hash.c, 12733 bytes, 25 tape blocks
x ./sun/usr.lib/libsunwindow/defaults/hash.h, 2724 bytes, 6 tape blocks
x ./sun/usr.lib/libsunwindow/defaults/hash_test.c, 2041 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/defaults/parse.c, 8565 bytes, 17 tape blocks
x ./sun/usr.lib/libsunwindow/defaults/Makefile, 2164 bytes, 5 tape blocks
x ./sun/usr.lib/libsunwindow/filter/filter.c, 4801 bytes, 10 tape blocks
x ./sun/usr.lib/libsunwindow/filter/Makefile, 1684 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/io_stream/file_streams.c, 4938 bytes, 10 tape blocks
x ./sun/usr.lib/libsunwindow/io_stream/input.c, 5941 bytes, 12 tape blocks
x ./sun/usr.lib/libsunwindow/io_stream/io.c, 1088 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/io_stream/other_streams.c, 3353 bytes, 7 tape blocks
x ./sun/usr.lib/libsunwindow/io_stream/string_streams.c, 4667 bytes, 10 tape blocks
x ./sun/usr.lib/libsunwindow/io_stream/Makefile, 2093 bytes, 5 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet.h, 15556 bytes, 31 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_auto.c, 5663 bytes, 12 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_death.c, 1391 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_die.c, 1299 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_do_dis.c, 541 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_event.c, 662 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_fcntl.c, 1361 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_fd.c, 617 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_g_death.c, 439 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_g_event.c, 611 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_g_except.c, 417 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_g_fd.c, 597 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_g_in.c, 397 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_g_itimer.c, 549 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_g_out.c, 402 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_g_pri.c, 763 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_g_sig.c, 632 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_g_wait.c, 518 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_get_func.c, 1075 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_itimer.c, 5757 bytes, 12 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_loop.c, 24407 bytes, 48 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndis.h, 4408 bytes, 9 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_no_dis.c, 530 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_p_death.c, 2129 bytes, 5 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_p_event.c, 6509 bytes, 13 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_read.c, 2506 bytes, 5 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_remove.c, 1121 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_s_death.c, 1582 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_s_event.c, 1509 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_s_except.c, 448 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_s_fd.c, 1627 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_s_in.c, 428 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_s_itimer.c, 2532 bytes, 5 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_s_out.c, 433 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_s_pri.c, 966 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_s_sig.c, 1801 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_s_wait.c, 1939 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_select.c, 5202 bytes, 11 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_sig.c, 820 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_single.c, 996 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_value.c, 1951 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_veto.c, 437 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndet_wait.c, 445 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndis_d_pri.c, 3568 bytes, 7 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndis_d_sched.c, 840 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndis_d_wait.c, 470 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndis_dispatch.c, 16857 bytes, 33 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndis_g_sched.c, 339 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ndis_s_sched.c, 597 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint.h, 4504 bytes, 9 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_copy.c, 758 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_get.c, 514 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_i_death.c, 506 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_i_event.c, 624 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_i_except.c, 476 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_i_fd.c, 589 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_i_in.c, 457 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_i_itimer.c, 617 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_i_out.c, 462 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_i_sig.c, 806 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_i_wait.c, 582 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_inter.c, 1792 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_n_death.c, 651 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_n_event.c, 713 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_n_except.c, 448 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_n_fd.c, 615 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_n_in.c, 428 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_n_itimer.c, 646 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_n_out.c, 433 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_n_sig.c, 704 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_n_wait.c, 657 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_next.c, 1195 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_r_death.c, 497 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_r_event.c, 615 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_r_except.c, 467 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_r_fd.c, 585 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_r_in.c, 448 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_r_itimer.c, 608 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_r_out.c, 453 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_r_sig.c, 688 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_r_wait.c, 550 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_remove.c, 1859 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_set.c, 691 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/nint_stack.c, 2908 bytes, 6 tape blocks
x ./sun/usr.lib/libsunwindow/notify/notify.h, 6382 bytes, 13 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ntfy.h, 18027 bytes, 36 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ntfy_client.c, 2867 bytes, 6 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ntfy_cond.c, 6987 bytes, 14 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ntfy_dump.c, 4623 bytes, 10 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ntfy_debug.c, 1336 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ntfy_list.c, 1471 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ntfy_node.c, 1844 bytes, 4 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ntfy_perror.c, 1206 bytes, 3 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ntfy_protect.c, 2257 bytes, 5 tape blocks
x ./sun/usr.lib/libsunwindow/notify/ntfy_test.c, 49566 bytes, 97 tape blocks
x ./sun/usr.lib/libsunwindow/notify/sys_fcntl.c, 356 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/sys_read.c, 372 bytes, 1 tape blocks
x ./sun/usr.lib/libsunwindow/notify/sys_select.c, 768 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/notify/Makefile, 14171 bytes, 28 tape blocks
x ./sun/usr.lib/libsunwindow/string_utils/string_utils.c, 7186 bytes, 15 tape blocks
x ./sun/usr.lib/libsunwindow/string_utils/white_space.c, 702 bytes, 2 tape blocks
x ./sun/usr.lib/libsunwindow/Makefile.master, 2745 bytes, 6 tape blocks
x ./sun/usr.lib/libsunwindow/pw_dbl.c, 3274 bytes, 7 tape blocks
x ./sun/usr.lib/libsunwindow/pw_dblbuf.h, 1016 bytes, 2 tape blocks
x ./sun/usr.lib/Makefile, 2248 bytes, 5 tape blocks
x ./sun/usr.lib/ilfiles/common.s, 16517 bytes, 33 tape blocks
x ./sun/usr.lib/libcore/bw1dd.c, 19830 bytes, 39 tape blocks
x ./sun/usr.lib/libcore/coretypes.h, 10657 bytes, 21 tape blocks
x ./sun/usr.lib/libcore/corevars.h, 4255 bytes, 9 tape blocks
x ./sun/usr.lib/libcore/inprims.c, 25174 bytes, 50 tape blocks
x ./sun/usr.lib/libcore/inputdds.c, 9420 bytes, 19 tape blocks
x ./sun/usr.lib/libcore/polygon2.c, 9630 bytes, 19 tape blocks
x ./sun/usr.lib/libcore/polygon3.c, 18607 bytes, 37 tape blocks
x ./sun/usr.lib/rasfilters/Makefile, 935 bytes, 2 tape blocks
x ./sun/usr.lib/rasfilters/convert.c, 1967 bytes, 4 tape blocks
x ./sun/demo/GP1/VIEWPORT/Makefile, 2416 bytes, 5 tape blocks
x ./sun/demo/GP1/VIEWPORT/Makefile.release, 2294 bytes, 5 tape blocks
x ./sun/demo/GP1/VIEWPORT/bitmap.c, 7594 bytes, 15 tape blocks
x ./sun/demo/GP1/VIEWPORT/gpbuf.c, 139501 bytes, 273 tape blocks
x ./sun/demo/GP1/VIEWPORT/matrix.c, 14752 bytes, 29 tape blocks
x ./sun/demo/GP1/VIEWPORT/vp.c, 22076 bytes, 44 tape blocks
x ./sun/demo/Makefile, 2517 bytes, 5 tape blocks
x ./sun/demo/goban.c, 8583 bytes, 17 tape blocks
x ./sun/demo/goban.h, 2647 bytes, 6 tape blocks
x ./sun/demo/goboard.c, 15953 bytes, 32 tape blocks
x ./sun/demo/gocapture.c, 12342 bytes, 25 tape blocks
x ./sun/demo/gocircle.c, 1964 bytes, 4 tape blocks
x ./sun/demo/gomaster.c, 5875 bytes, 12 tape blocks
x ./sun/demo/gopanel.c, 17681 bytes, 35 tape blocks
x ./sun/demo/goprint.c, 5091 bytes, 10 tape blocks
x ./sun/demo/goservice.c, 16841 bytes, 33 tape blocks
x ./sun/demo/maze.c, 15754 bytes, 31 tape blocks
x ./sun/etc/dkinfo.c, 2894 bytes, 6 tape blocks
x ./sun/lib/boot/Makefile, 6591 bytes, 13 tape blocks
x ./sun/lib/cgrdr/Makefile, 4398 bytes, 9 tape blocks
x ./sun/lib/cgrdr/pcc.c, 30376 bytes, 60 tape blocks
x ./sun/stand/src/diag/machdep.c, 5857 bytes, 12 tape blocks
x ./sun/stand/src/diag/sd.c, 57608 bytes, 113 tape blocks
x ./usr.bin/tbl/tm.c, 1249 bytes, 3 tape blocks
x ./usr.bin/refer/inv1.c, 3633 bytes, 8 tape blocks
x ./usr.etc/termcap/termcap.src, 94680 bytes, 185 tape blocks
x ./usr.etc/Makefile, 26510 bytes, 52 tape blocks
x ./usr.etc/in.telnetd.c, 11272 bytes, 23 tape blocks
x ./usr.etc/ping.c, 10339 bytes, 21 tape blocks
x ./usr.etc/rarpd.c, 13034 bytes, 26 tape blocks
x ./usr.etc/rpcinfo.c, 10727 bytes, 21 tape blocks
x ./usr.etc/in.named/Makefile, 5151 bytes, 11 tape blocks
x ./5include/sys/ioctl.h, 2863 bytes, 6 tape blocks
x ./5lib/libcurses/screen/makefile, 6150 bytes, 13 tape blocks
x ./5lib/libcurses/screen/nttychktrm.c, 3191 bytes, 7 tape blocks
x ./5lib/libcurses/screen/setupterm.c, 6774 bytes, 14 tape blocks
x ./5lib/libcurses/terminfo/pc.ti, 4202 bytes, 9 tape blocks
x ./Makefile, 1303 bytes, 3 tape blocks
x ./bin/csh/sh.exp.c, 10076 bytes, 20 tape blocks
x ./bin/csh/sh.time.c, 3981 bytes, 8 tape blocks
x ./bin/make/defs, 5130 bytes, 11 tape blocks
x ./games/Makefile, 4576 bytes, 9 tape blocks
x ./games/tool/chesstool/Makefile, 643 bytes, 2 tape blocks
x ./games/tool/chesstool/chessprog.c, 8644 bytes, 17 tape blocks
x ./games/tool/chesstool/chesstool.c, 16431 bytes, 33 tape blocks
x ./games/tool/chesstool/chesstool.h, 1028 bytes, 3 tape blocks
x ./games/tool/chesstool/clock.c, 3316 bytes, 7 tape blocks
x ./games/tool/life/Makefile, 558 bytes, 2 tape blocks
x ./games/tool/life/cursor.pr, 193 bytes, 1 tape blocks
x ./games/tool/life/lifetool.c, 15555 bytes, 31 tape blocks
x ./games/tool/life/mouse.pr, 194 bytes, 1 tape blocks
x ./games/tool/life/prompt.c, 13451 bytes, 27 tape blocks
x ./include/Makefile, 4166 bytes, 9 tape blocks
x ./include/ctype.h, 808 bytes, 2 tape blocks
x ./include/prof.h, 901 bytes, 2 tape blocks
x ./include/protocols/routed.h, 2200 bytes, 5 tape blocks
x ./sccs/libPW/lockit.c, 3069 bytes, 6 tape blocks
x ./sunpro/Makefile, 911 bytes, 2 tape blocks
x ./sunpro/install_sunpro, 874 bytes, 2 tape blocks
x ./sunpro/install_sunpro.sun2, 874 bytes, 2 tape blocks
x ./sunpro/install_sunpro.sun3, 874 bytes, 2 tape blocks
x ./sunpro/compile/Makefile, 4008 bytes, 8 tape blocks
x ./sunpro/compile/compile.c, 19952 bytes, 39 tape blocks
x ./sunpro/compile/data.c, 13241 bytes, 26 tape blocks
x ./sunpro/compile/driver.h, 14540 bytes, 29 tape blocks
x ./sunpro/compile/run_pass.c, 11627 bytes, 23 tape blocks
x ./sunpro/compile/setup.c, 20398 bytes, 40 tape blocks
x ./sunpro/cpp/Makefile, 2372 bytes, 5 tape blocks
x ./sunpro/cpp/README, 8503 bytes, 17 tape blocks
x ./sunpro/cpp/cpp.c, 49950 bytes, 98 tape blocks
x ./sunpro/cpp/cpy.y, 1278 bytes, 3 tape blocks
x ./sunpro/cpp/yyfix.sh, 341 bytes, 1 tape blocks
x ./sunpro/cpp/yylex.c, 3926 bytes, 8 tape blocks
x ./sunpro/filemerge/Makefile, 17149 bytes, 34 tape blocks
x ./sunpro/filemerge/estream.c, 1834 bytes, 4 tape blocks
x ./sunpro/filemerge/filemerge.1, 7165 bytes, 14 tape blocks
x ./sunpro/filemerge/filemerge.c, 34223 bytes, 67 tape blocks
x ./sunpro/filemerge/glyph.c, 9480 bytes, 19 tape blocks
x ./sunpro/filemerge/popup.c, 14804 bytes, 29 tape blocks
x ./sunpro/filemerge/sdiff.c, 9557 bytes, 19 tape blocks
x ./sunpro/filemerge/util.c, 9537 bytes, 19 tape blocks
x ./sunpro/ld/Makefile, 1867 bytes, 4 tape blocks
x ./sunpro/ld/incl.c, 7015 bytes, 14 tape blocks
x ./sunpro/ld/ld.c, 59315 bytes, 116 tape blocks
x ./sunpro/m4/Makefile, 1311 bytes, 3 tape blocks
x ./sunpro/m4/m4.c, 17141 bytes, 34 tape blocks
x ./sunpro/m4/m4y.y, 1687 bytes, 4 tape blocks
x ./sunpro/make/Makefile, 5606 bytes, 11 tape blocks
x ./sunpro/make/ar.c, 14329 bytes, 28 tape blocks
x ./sunpro/make/default.mk, 3351 bytes, 7 tape blocks
x ./sunpro/make/defs.h, 15265 bytes, 30 tape blocks
x ./sunpro/make/doname.c, 64313 bytes, 126 tape blocks
x ./sunpro/make/dosys.c, 5122 bytes, 11 tape blocks
x ./sunpro/make/files.c, 10588 bytes, 21 tape blocks
x ./sunpro/make/funny.h, 2176 bytes, 5 tape blocks
x ./sunpro/make/macro.c, 17921 bytes, 36 tape blocks
x ./sunpro/make/main.c, 23214 bytes, 46 tape blocks
x ./sunpro/make/make.1, 39910 bytes, 78 tape blocks
x ./sunpro/make/misc.c, 15392 bytes, 31 tape blocks
x ./sunpro/make/read.c, 64142 bytes, 126 tape blocks
x ./sunpro/make/state.c, 8801 bytes, 18 tape blocks
x ./sunpro/vroot/Makefile, 12881 bytes, 26 tape blocks
x ./sunpro/vroot/access.c, 619 bytes, 2 tape blocks
x ./sunpro/vroot/args.h, 951 bytes, 2 tape blocks
x ./sunpro/vroot/chdir.c, 516 bytes, 2 tape blocks
x ./sunpro/vroot/chmod.c, 587 bytes, 2 tape blocks
x ./sunpro/vroot/chown.c, 663 bytes, 2 tape blocks
x ./sunpro/vroot/chroot.c, 521 bytes, 2 tape blocks
x ./sunpro/vroot/creat.c, 588 bytes, 2 tape blocks
x ./sunpro/vroot/execve.c, 648 bytes, 2 tape blocks
x ./sunpro/vroot/lstat.c, 605 bytes, 2 tape blocks
x ./sunpro/vroot/mkdir.c, 588 bytes, 2 tape blocks
x ./sunpro/vroot/mount.c, 666 bytes, 2 tape blocks
x ./sunpro/vroot/open.c, 707 bytes, 2 tape blocks
x ./sunpro/vroot/readlink.c, 732 bytes, 2 tape blocks
x ./sunpro/vroot/report.c, 2256 bytes, 5 tape blocks
x ./sunpro/vroot/report.h, 291 bytes, 1 tape blocks
x ./sunpro/vroot/rmdir.c, 516 bytes, 2 tape blocks
x ./sunpro/vroot/setenv.c, 1097 bytes, 3 tape blocks
x ./sunpro/vroot/stat.c, 598 bytes, 2 tape blocks
x ./sunpro/vroot/statfs.c, 614 bytes, 2 tape blocks
x ./sunpro/vroot/truncate.c, 618 bytes, 2 tape blocks
x ./sunpro/vroot/unlink.c, 521 bytes, 2 tape blocks
x ./sunpro/vroot/unmount.c, 526 bytes, 2 tape blocks
x ./sunpro/vroot/utimes.c, 606 bytes, 2 tape blocks
x ./sunpro/vroot/vroot.c, 7395 bytes, 15 tape blocks
x ./sunpro/vroot/vroot.h, 566 bytes, 2 tape blocks
x ./ucb/Mail/optim.c, 17323 bytes, 34 tape blocks
x ./ucb/gprof/Makefile, 1320 bytes, 3 tape blocks
x ./ucb/indent/Makefile, 1712 bytes, 4 tape blocks
x ./ucb/indent/args.c, 8281 bytes, 17 tape blocks
x ./ucb/indent/indent.c, 33933 bytes, 67 tape blocks
x ./ucb/indent/indent_codes.h, 1113 bytes, 3 tape blocks
x ./ucb/indent/indent_globs.h, 10739 bytes, 21 tape blocks
x ./ucb/indent/io.c, 14945 bytes, 30 tape blocks
x ./ucb/indent/lexi.c, 13527 bytes, 27 tape blocks
x ./ucb/indent/parse.c, 8467 bytes, 17 tape blocks
x ./ucb/indent/pr_comment.c, 11063 bytes, 22 tape blocks
x ./ucb/rdist/server.c, 29642 bytes, 58 tape blocks
x ./ucb/vgrind/vgrindefs.src, 5398 bytes, 11 tape blocks
x ./usr.lib/f77pass1/gram.dcl, 10651 bytes, 21 tape blocks
x ./usr.lib/f77pass1/gram.io, 3252 bytes, 7 tape blocks
x ./usr.lib/f77pass1/intr.c, 19577 bytes, 39 tape blocks
x ./usr.lib/f77pass1/intr_map.c, 3434 bytes, 7 tape blocks
x ./usr.lib/f77pass1/io.c, 24499 bytes, 48 tape blocks
x ./usr.lib/f77pass1/lex.c, 20017 bytes, 40 tape blocks
x ./usr.lib/f77pass1/machine.c, 16018 bytes, 32 tape blocks
x ./usr.lib/f77pass1/proc.c, 24238 bytes, 48 tape blocks
x ./usr.lib/libm/FFtrigd.ff, 6601 bytes, 13 tape blocks
x ./usr.lib/libm/FFtrigs.ff, 4965 bytes, 10 tape blocks
x ./usr.lib/libm/FStrigd.fs, 6588 bytes, 13 tape blocks
x ./usr.lib/libmp/madd.c, 2928 bytes, 6 tape blocks
x ./usr.lib/libmp/mdiv.c, 3036 bytes, 6 tape blocks
x ./usr.lib/libmp/mult.c, 1877 bytes, 4 tape blocks
x ./usr.lib/sendmail/src/main.c, 21903 bytes, 43 tape blocks
x ./usr.lib/tmac/tmac.an, 6268 bytes, 13 tape blocks