-
Notifications
You must be signed in to change notification settings - Fork 3
/
_conform.map
3283 lines (3283 loc) · 62.2 KB
/
_conform.map
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
F001058 names.last
F001059 names.local
F001060 namefiles
F001061 remotemail
D001109 bootesother
D001110 c:
D001111 b:
D001112 a:
F003283 first.window
F003282 8½start
F000001 9pccpudisk
D000030 c++
F000029 libregexp.a
F000031 libgeometry.a
F000032 libA.a
F000033 libregexp.a
F000035 libC.a
F000034 libregexp.a
D000028 c++
D000006 c++
F000009 gopher2html
F000010 text2post
F000011 postreverse
F000012 postprint
F000013 p9bitpost
F000014 pppserver
F000015 pppclient
F000016 nfsserver
F000017 portmapper
F000018 typepasswd
F000019 LOCK
F000020 consolefs
F000021 faxreceive
F000002 dviselect
F000003 showimage
F000004 ½char
F000005 8½
F000026 fireworks
F000007 printnetkey
F000008 changeuser
F000022 targa2pic
F000023 picnegate
F000024 transpose
F000025 hysteresis
F000027 aliasmail
D001160 c++
F001167 libC.a
D001161 c++
F001162 libregexp.a
F001163 libgeometry.a
F001164 libA.a
F001165 libregexp.a
F001166 libregexp.a
D001135 c++
F001134 showimage
F001136 ½char
F001137 8½
F001138 dviselect
F001158 fireworks
F001141 gopher2html
F001142 text2post
F001143 postreverse
F001144 postprint
F001145 p9bitpost
F001146 pppserver
F001147 pppclient
F001148 nfsserver
F001149 portmapper
F001150 LOCK
F001151 consolefs
F001152 typepasswd
F001153 faxreceive
F001154 targa2pic
F001155 picnegate
F001156 transpose
F001157 hysteresis
F001139 printnetkey
F001140 changeuser
F001159 aliasmail
F001133 kwinstart
F001125 personalize
F001128 telcodata
F001129 dkrexexec
F001130 dkexportfs
F001131 dkdiscard
F001132 dkcpunote
D001117 service.auth
D001120 nextstation
F001122 CC
F001113 c:
F001114 b:
F001115 a:
F001116 B
F001118 yesterday
F001119 membername
F001121 C
F001124 personalize
F001127 personalize
F001123 Disclabel
F001126 personalize
D001107 8½
D001108 apeselect
F001062 9magnumcpu
F001063 9magnumboot
F001064 9magnumfs
F001065 9powerboot
F001066 9magnumdisk
F001067 9indigo3k
F001096 135.104.9.31
F001097 135.104.9.32
F001098 192.0.2.1
F001068 9magnumcd
F001069 9indigo4k
D001099 c++
D001101 c++
F001100 libregexp.a
F001102 libgeometry.a
F001106 libC.a
F001105 libregexp.a
F001103 libA.a
F001104 libregexp.a
D001072 c++
F001070 8½
F001071 ½char
F001073 dviselect
F001074 showimage
F001094 fireworks
F001075 printnetkey
F001076 changeuser
F001077 gopher2html
F001078 text2post
F001079 pppserver
F001080 pppclient
F001081 p9bitpost
F001082 nfsserver
F001083 portmapper
F001084 postreverse
F001085 postprint
F001086 LOCK
F001087 consolefs
F001088 typepasswd
F001089 faxreceive
F001090 targa2pic
F001091 picnegate
F001092 transpose
F001093 hysteresis
F001095 aliasmail
F000069 Acid
F000072 Acid
F000071 Acid
F000070 Acid
F000073 Mail
F000074 Mail
F000075 Mail
F000036 9nextstationdisk
F000037 9nextstation
F000038 9nextstationnofs
F000039 9gnotdisk
F000057 targa2pic
F000058 picnegate
F000059 transpose
F000060 hysteresis
D000041 c++
F000040 8½
F000042 dviselect
F000043 ½char
F000044 showimage
F000061 fireworks
F000047 gopher2html
F000048 postreverse
F000049 postprint
F000050 text2post
F000051 p9bitpost
F000052 nfsserver
F000053 portmapper
F000054 typepasswd
F000055 LOCK
F000056 faxreceive
F000062 aliasmail
F000045 printnetkey
F000046 changeuser
D000065 c++
F000064 libregexp.a
F000066 libgeometry.a
F000068 libC.a
F000067 libregexp.a
D000063 c++
F001182 transition.pic
F001183 transition.art
F001184 transition.fig
F001186 not.done
F001187 from.macbeth
D001168 8½
F001169 acidpaper.ps
F001170 README.ps
F001171 acidpaper.ms
F001172 README.ms
F001176 8½.ps
F001177 8½.ms
F001173 trademarks.ps
F001178 pjw.rgba
F001179 pjw.blam
F001180 9ball.down
F001181 .comfile
F001174 acme.fig2
F001175 acme.fig1
F001185 tree.pout
F001296 a.out.h
D001294 c++
F001295 a.out.h
F001297 Plan9libnet.h
F001298 strstream.h
F001299 stdiostream.h
F001300 streamdefs.h
F001189 washerwoman
F001190 thunderbirdfus
F001191 stargaterepeat
F001192 squaredance
F001193 squarecap
F001194 squareblinker
F001195 sparktopifuse
F001196 sparkfuse
F001197 smallfish
F001198 sixgliders
F001199 shiningflower
F001200 rpentomino
F001201 pulsar-48-56-7
F001202 piecollection
F001203 pentadecathlon
F001204 oscillator3
F001205 oscillator2
F001206 oscillator1
F001207 mediumfishgun
F001208 mediumfish
F001209 longfuse2
F001210 largefish
F001211 lambdabomb
F001212 horizfuse
F001213 gunandeater
F001214 greymatter1
F001215 glidergun2
F001216 glidergun
F001217 gliderglidergu
F001218 glidercap5
F001219 glidercap4
F001220 glidercap3
F001221 glidercap2
F001222 glidercap1
F001223 gliderarmyof25
F001224 fuzzcapsule
F001225 fusehinge
F001226 fusecorner
F001227 fusebranch
F001228 fisheater
F001229 collapsecap
F001230 billiard.clock
F001231 clappinghands
F001232 cheshirecat
F001233 breeder4753
F001234 boatmaker
F001235 blinkership
F001236 billiardsmall
F001237 billiardgeorge
F001238 billiard6
F001239 billiard5
F001240 billiard4
F001241 billiard3
F001242 billiard2
F001243 billiard1
F001244 bheptomino
F001245 benchmark
F001246 beaconmaker
F001247 barberpole
F001248 background1
F001249 weird.wheel
F001250 virus.lives
F001251 virus.dies
F001252 time.bomb
F001253 thunderbird
F001254 switch.engine
F001255 switch.block
F001256 still.lives
F001257 ships.vanish
F001258 ships.gliders
F001259 ships.appear
F001260 s.glider
F001261 r.pentomino
F001262 puffer.train
F001263 pi.heptomino
F001264 penta.shuttle
F001265 penta.kill
F001266 penta.death
F001267 penta.bounce
F001268 overw8.ship
F001269 middle.ship
F001270 methuselah
F001271 mathematician
F001272 light.ship
F001273 hepto.shuttle
F001274 heavy.ship
F001275 harvester
F001276 h.heptomino
F001277 gun.gliders
F001278 gun.builder
F001279 gosper.flop
F001280 glider.thing2
F001281 glider.thing1
F001282 glider.step
F001283 glider.havoc
F001284 flip.flop
F001285 flare.path
F001286 dirty.fuse
F001287 cp.48-56-72
F001288 clean.fuse
F001289 catherinewheel
F001290 candelabra
F001291 boat.factory
F001292 barber.pole
F001293 2.eaters
F001188 fortunes.index
F003250 sparclock.c
F003251 68020lock.c
F003259 tiffioP.h
F003260 tiffcompat.h
F003261 tif_write.c
F003262 tif_warning.c
F003263 tif_version.c
F003264 tif_thunder.c
F003265 tif_strip.c
F003266 tif_print.c
F003267 tif_packbits.c
F003268 tif_machdep.c
F003269 tif_getimage.c
F003270 tif_flush.c
F003271 tif_error.c
F003272 tif_dumpmode.c
F003273 tif_dirwrite.c
F003274 tif_dirread.c
F003275 tif_dirinfo.c
F003276 tif_compress.c
F003277 tif_compat.c
F003278 tif_close.c
F003279 tif_ccittrle.c
F003280 prototypes.h
F003281 mkg3states.c
F003252 executable.c
F003230 frptofchar.c
F003231 polysegment.c
F003232 subfalloc.c
F003233 rdfontfile.c
F003234 wrbitmapfile.c
F003235 wrsubfontfile.c
F003236 rdbitmapfile.c
F003237 rdsubfontfile.c
F003238 cursorswitch.c
F003239 cursorset.c
F003240 bscreenrect.c
F003241 bitbltclip.c
F003253 testipinfo.c
F003254 ndbgetval.c
D002503 libregexp
F003176 ether2000.c
F003177 ether8003.c
F003178 ether8390.c
F003174 README
F003175 9magnumfs.c
D002504 libgeometry
F003202 bbuffered.c
F003245 classmask.c
F003246 myetheraddr.c
F003247 parseether.c
F003187 passtokey.c
F003188 namespace
F003189 convTR2M.c
F003190 convT2M.c
F003191 convPR2M.c
F003192 convM2TR.c
F003193 convM2T.c
F003194 convM2PR.c
F003195 convM2A.c
F003196 convA2M.c
F003197 authlocal.h
F003198 authenticate.c
F003199 _asrdresp.c
F003200 _asrdfile.c
F003201 _asgetticket.c
F002508 faultmips.c
F002555 faultsparc.c
F002513 faultmips.c
F002510 indigomkfile
F002511 faultmips.c
F002512 NOTICE
F002525 vgaclgd542x.c
F002526 ether83905.c
F002527 devi82365.c
F002528 ether4100.c
F002529 pccpudisk
F002530 ether8390.c
F002531 ultrastor.c
F002532 ether8003.c
F002533 archncr3170.c
F002534 inconsubs.s
F002535 archnsx20.c
F002536 archgeneric.c
F002537 ether2000.c
F002538 vgamach32.c
F002539 vgatvp3020.c
F002540 vgaet4000.c
F002505 doauthenticate.c
F002506 userpasswd.c
F002507 getpasswd.c
F002518 bootnextaudio.c
F002519 nextstation
F002520 devnextfloppy.c
F002521 nextstationdisk
F002522 mkfile.boot
F002523 fault68040.c
F002524 nextstationnofs
F002556 faultsparc.c
F002514 magnumboot
F002515 faultmips.c
F002516 magnumdisk
F002517 magnumcpu
F002541 devreboot.c
F002542 mklinklist
F002543 tcpoutput.c
F002544 mkextract
F002545 mkstreamlist
F002546 netXXX.c
F002547 deviproute.c
F002548 mkmisclist
F002549 mkdevlist
F002550 devXXX.c
F002551 devfloppy.c
F002552 portmkfile
F002509 fault68020.c
F002553 faultmips.c
F002554 powerboot
F003256 _IO_putc.c
F003257 _IO_getc.c
F003258 Stdio.h
F003179 fireworks.c
F003182 player1.icon
F003183 player0.icon
F003184 missile.icon
F003185 deathstar.icon
F003186 boom.icon
F003181 smileyfont
F003180 pieces.nada
F003165 transform.c
F003166 quaternion.c
F003217 wrpicfile.c
F003218 pic.pl9.c
F003219 rdpicfile.c
F003220 picunpack.c
F003221 picputprop.c
F003222 picopen_w.c
F003223 picopen_r.c
F003224 picgetprop.c
F003225 pic.run.c
F003226 pic.pco.c
F003227 pic.dmp.c
F003228 pic.bit.c
F003229 pic.601.c
F003172 CHANGES
F003173 README
F003167 targa2pic.c
F003168 nul.card
F003169 transpose.c
F003170 picnegate.r
F003171 hysteresis.c
F003248 polysegment.c
F003249 subfontstring.c
F002807 mips.out.h
F002808 ether8390.c
F002809 ether8003.c
F002810 ether2000.c
F002811 plan9boot.c
F002812 ether3210.c
F003255 scrollbar.c
F002775 endhostent.c
F002776 setlinebuf.c
F002777 strncasecmp.c
F002778 _sock_ingetaddr.c
F002779 gethostname.c
F002780 strcasecmp.c
F002781 gettimeofday.c
F002782 rresvport.c
F002783 getservbyaddr.c
F002784 gethostbyaddr.c
F002785 getsockname.c
F002786 getservbyname.c
F002787 getdtablesize.c
F002788 _sock_ipattr.c
F002789 gethostbyname.c
F002790 inet_addr.c
F002791 inet_ntoa.c
F002792 getpeername.c
F002793 _sock_srv.c
F002794 socketpair.c
F002607 segdetach.c
F002608 segattach.c
F002609 rendezvous.c
F002795 wrsubfontfile.c
F002796 wrbitmapfile.c
F002797 subfalloc.c
F002798 rdsubfontfile.c
F002799 rdfontfile.c
F002800 rdbitmapfile.c
F002801 polysegment.c
F002802 cursorswitch.c
F002803 cursorset.c
F002804 bscreenrect.c
F002805 bitbltclip.c
F002806 getfields.c
F002611 sigsetjmp.s
F002612 _WAIT.s
F002613 _UNMOUNT.s
F002614 _RENDEZVOUS.s
F002615 _SEGFLUSH.s
F002616 _SEGFREE.s
F002617 _SEGDETACH.s
F002618 _SEGATTACH.s
F002619 _NOTED.s
F002620 _NOTIFY.s
F002621 _FWSTAT.s
F002622 _WSTAT.s
F002623 _REMOVE.s
F002624 _BRK_.s
F002625 notetramp.c
F002626 _CREATE.s
F002627 _PIPE.s
F002628 _WRITE.s
F002629 _RFORK.s
F002630 _STAT.s
F002631 _SLEEP.s
F002632 _SEEK.s
F002633 _READ.s
F002634 _OPEN.s
F002635 _MOUNT.s
F002636 _SEGBRK.s
F002637 _FSTAT.s
F002638 _FAUTH.s
F002639 _FSESSION.s
F002640 _EXITS.s
F002641 _EXEC.s
F002642 _ALARM.s
F002643 _DUP.s
F002644 _CLOSE.s
F002645 _CHDIR.s
F002646 _BIND.s
F002647 _ERRSTR.s
F002648 _SYSR1.s
F002649 sigsetjmp.s
F002650 _FAUTH.s
F002651 _WAIT.s
F002652 _UNMOUNT.s
F002653 _RENDEZVOUS.s
F002654 _SEGFLUSH.s
F002655 _SEGFREE.s
F002656 _SEGDETACH.s
F002657 _SEGATTACH.s
F002658 _FSESSION.s
F002659 _NOTED.s
F002660 _NOTIFY.s
F002661 _FWSTAT.s
F002662 _WSTAT.s
F002663 _REMOVE.s
F002664 _BRK_.s
F002665 _CREATE.s
F002666 _PIPE.s
F002667 _WRITE.s
F002668 _RFORK.s
F002669 _STAT.s
F002670 _SLEEP.s
F002671 _SEEK.s
F002672 _READ.s
F002673 _OPEN.s
F002674 _MOUNT.s
F002675 _SEGBRK.s
F002676 _FSTAT.s
F002677 notetramp.c
F002678 _EXITS.s
F002679 _EXEC.s
F002680 _ALARM.s
F002681 _DUP.s
F002682 _CLOSE.s
F002683 _CHDIR.s
F002684 _BIND.s
F002685 _ERRSTR.s
F002686 _SYSR1.s
F002687 sigsetjmp.s
F002688 _WAIT.s
F002689 _UNMOUNT.s
F002690 _RENDEZVOUS.s
F002691 _SEGFLUSH.s
F002692 _SEGFREE.s
F002693 _SEGDETACH.s
F002694 _SEGATTACH.s
F002695 _NOTED.s
F002696 _NOTIFY.s
F002697 _FWSTAT.s
F002698 _WSTAT.s
F002699 _REMOVE.s
F002700 _BRK_.s
F002701 notetramp.c
F002702 _CREATE.s
F002703 _PIPE.s
F002704 _WRITE.s
F002705 _RFORK.s
F002706 _STAT.s
F002707 _SLEEP.s
F002708 _SEEK.s
F002709 _READ.s
F002710 _OPEN.s
F002711 _MOUNT.s
F002712 _SEGBRK.s
F002713 _FSTAT.s
F002714 _FAUTH.s
F002715 _FSESSION.s
F002716 _EXITS.s
F002717 _EXEC.s
F002718 _ALARM.s
F002719 _DUP.s
F002720 _CLOSE.s
F002721 _CHDIR.s
F002722 _BIND.s
F002723 _ERRSTR.s
F002724 _SYSR1.s
F002610 extraobjs
F002735 sigsetjmp.s
F002736 _FAUTH.s
F002737 _WAIT.s
F002738 _UNMOUNT.s
F002739 _RENDEZVOUS.s
F002740 _SEGFLUSH.s
F002741 _SEGFREE.s
F002742 _SEGDETACH.s
F002743 _SEGATTACH.s
F002744 _NOTED.s
F002745 _NOTIFY.s
F002746 _FWSTAT.s
F002747 _WSTAT.s
F002748 _REMOVE.s
F002749 _BRK_.s
F002750 _FSESSION.s
F002751 _CREATE.s
F002752 _PIPE.s
F002753 _WRITE.s
F002754 _RFORK.s
F002755 _STAT.s
F002756 _SLEEP.s
F002757 _SEEK.s
F002758 _READ.s
F002759 _OPEN.s
F002760 _MOUNT.s
F002761 _SEGBRK.s
F002762 _FSTAT.s
F002763 notetramp.c
F002764 _EXITS.s
F002765 _EXEC.s
F002766 _ALARM.s
F002767 _DUP.s
F002768 _CLOSE.s
F002769 _CHDIR.s
F002770 _BIND.s
F002771 _ERRSTR.s
F002772 _SYSR1.s
F002725 cfgetospeed.c
F002726 buf.prom
F002727 dirtostat.c
F002728 sigsuspend.c
F002729 sigpending.c
F002730 sigprocmask.c
F002731 _envsetup.c
F002732 tcgetattr.c
F002773 _IO_putc.c
F002774 _IO_getc.c
F002733 setlocale.c
F002734 rewinddir.c
F002605 README
F002606 Makefile
F003211 crypt.k.save
F003212 netmkaddr.c
F003213 getfields.c
F003214 crypt.8.save
F003215 crypt.2.save
F003216 crypt.v.save
F003203 dirfwstat.c
F003204 convM2S.c
F003205 convM2D.c
F003206 convD2M.c
F003207 convS2M.c
F003208 getS.c
F003209 fcallconv.c
F003210 dirmodeconv.c
D002604 Y
F002559 passtokey.l
F002560 convTR2M.l
F002561 convT2M.l
F002562 convPR2M.l
F002563 convM2TR.l
F002564 convM2T.l
F002565 convM2PR.l
F002566 convM2A.l
F002567 convA2M.l
F002568 authlocal.h
F002569 authenticate.l
F002570 _asrdresp.l
F002571 _asrdfile.l
F002572 _asgetticket.l
D002557 libregexp
F002573 bbuffered.l
F002585 parseether.l
F002586 myetheraddr.l
F002587 classmask.l
F002588 ndbgetval.l
F002574 frptofchar.l
F002558 acid.mips
F002589 dirmodeconv.l
F002590 acid.sparc
F002591 acid.mips
F002592 convD2M.l
F002593 dirfwstat.l
F002594 fcallconv.l
F002595 netmkaddr.l
F002596 convS2M.l
F002597 convM2S.l
F002598 convM2D.l
F002575 wrsubfontfile.l
F002576 wrbitmapfile.l
F002577 subfalloc.l
F002578 rdsubfontfile.l
F002579 rdfontfile.l
F002580 rdbitmapfile.l
F002581 cursorswitch.l
F002582 cursorset.l
F002583 bscreenrect.l
F002584 bitbltclip.l
F002599 crypt.k.save
F002600 crypt.8.save
F002601 crypt.v.save
F002602 acid.sparc
F002603 acid.mips
F002824 printnetkey.c
F002825 guard.srv.c
F002826 auth.srv.c
F002827 changeuser.c
F002828 readwrite.c
F002829 getauthkey.c
F003164 convfloat.c
F003163 x.out.h
F002972 pppserver.l
F002973 pppclient.l
F002947 translate.c
F003162 v.out.h
F002945 filetypes
F002819 6.out.h
F002904 funcgetflags.c
D002814 8½
D002817 postscript
F003145 spin2.Xspin.tar.Z
F003146 spin2.Src.tar.Z
F003147 spin2.Other.tar.Z
F003139 tcs.shar.Z
F003140 README
F003141 unix.bootp.tar
F003142 README
F003143 README
F003144 sam.unix
F003148 README
F002820 8.out.h
D002934 jpeg-5
F002905 vms-gcc.mak
F002906 vms-decc.mak
F002907 vms-cc.mak
F002908 unix-lpr.sh
F002909 unix-lpr.doc
F002910 unix-gcc.mak
F002911 unix-end.mak
F002912 unix-cc.mak
F002913 pj-gs.sh
F002914 README.Plan9
F002915 gcc-head.mak
F002916 dvx-tail.mak
F002917 dvx-head.mak
F002918 dvx-gcc.mak
F002919 dgc-head.mak
F002920 cc-head.mak
F002921 README
F002922 PUBLIC
F002923 NEWS
F002924 Fontmap.VMS
F002925 Fontmap.Ult
F002926 Fontmap.OSF
F002927 Fontmap.OS2
F002928 Fontmap.GS
F002929 Fontmap.ATM
F002930 Fontmap.ATB
F002931 Fontmap
F002932 COPYLEFT
F002933 COPYING
F002935 structure.doc
F002936 makefile.unix
F002937 makefile.manx
F002938 makefile.auto
F002939 makefile.ansi
F002940 jconfig.manx
F002941 jconfig.auto
F002942 configure
F002943 coderules.doc
F002944 README
F002895 thesaurus.c
F002896 pcollinsg.c
F002899 recipients
F002900 receiverc
F002901 fax2receive.c
F002902 fax2modem.c
F002813 ½char.c
F002815 sh.C
F002816 showimage.c
F003048 README.ape
F003049 config.status
F003050 Makefile
F003051 README.local
F003052 VERSION
F003053 ChangeLog.W2C
F003054 configure.in
F003055 configure
F003056 README.W2C
F003057 PROJECTS.W2C
F003058 PROBLEMS.W2C
F003059 MACHINES.W2C
F003060 AUTHORS.W2C
F003061 Makefile.in
F003062 COPYING.LIB
F003128 fixwrites.c
F003129 web2c.yacc
F003130 ChangeLog
F003131 Makefile
F003063 COPYING
F003123 tangleboot.c
F003124 tangleboot.p
F003125 tangleboot.h
F003126 ChangeLog
F003127 Makefile
F003121 ChangeLog
F003122 Makefile
D003120 TeXtrip
F003113 Makes
F003114 tex.pool
F003115 ChangeLog
F003116 small.diff
F003117 ini_to_trip
F003118 fixcoerce.h
F003119 Makefile
F003111 ChangeLog
F003112 Makefile
D003103 MFtrap
D003104 MFwindow
F003097 mf.pool
F003098 ChangeLog
F003099 small.diff
F003100 ini_to_trap
F003101 fixcoerce.h
F003102 Makefile
F003105 x11-Xt.c
F003106 x11-Xlib.c
F003107 sun-sunview.c
F003108 sun-suntools.c
F003109 ChangeLog
F003110 Makefile
F003095 ChangeLog
F003096 Makefile
F003071 c-auto.h
F003072 site.h.in
F003073 c-auto.h.in
F003074 c-std.h
F003075 c-seek.h
F003076 c-proto.h
F003077 c-pathmx.h
F003078 c-pathch.h
F003079 c-namemx.h
F003080 c-minmax.h
F003081 c-memstr.h
F003082 c-limits.h
F003083 c-fopen.h
F003084 c-errno.h
F003085 xfopen-pas.c
F003086 strpascal.c
F003087 openinout.c
F003088 fprintreal.c
F003089 file-p.c
F003090 dir-p.c
F003091 texmf.defines
F003092 common.defines
F003093 ChangeLog
F003094 Makefile
F003069 ChangeLog
F003070 Makefile
F003067 ChangeLog
F003068 Makefile
F003064 ChangeLog
F003065 small.diff
F003066 Makefile
F003015 makefile.atari
F003027 README
F003028 DC.enc
F003029 EC.enc
F002984 texc.lpro
F002985 config.xante
F002986 psfonts.map.orig
F002987 config.bigmem
F002988 config.ljfour
F002989 config.gnot
F002990 MakeTeXPK.orig
F002991 forms.lpro
F002992 README.plan9
F002993 APEREADME
F003016 colorsep.lpro
F003017 PSTricks
F003018 MakeTeXPK.pl
F003024 ps_lfonts.tex
F003019 whichinpath
F003025 pspic.readme
F003021 README
F003022 lprep70.procs
F003023 lprep68.procs
F003020 INSTALLATION
F002994 emspecial.c
F002995 config.epsf
F003030 maketexp.exec
F003031 afm2tfm.exec
F003032 texc.exec
F003033 mkdvips.exec
F003034 dvips.exec
F003035 README.VMCMS
F003036 Makefile.IBM
F002996 config.post3x3
F002997 config.lino
F002998 crop.lpro
F002999 color.lpro
F003000 finclude.lpro
F003001 virtualfont.c
F003002 texps.lpro
F003003 texc.script
F003037 vms_gcc_paths.h
F003038 Makefile
F003039 README.VMS
F003040 MAKETEXPK.COM
F003004 tex.lpro
F003005 special.lpro
F003006 scalewidth.c
F003007 rotsample.tex
F003026 README.pc
F003008 drawPS.c
F003009 dospecial.c
F003010 dosection.c
F003011 README
F003012 Makefile
F003013 MakeTeXPK
F003014 INSTALLATION
F003045 picy.y.tab.c
F003046 picy.y.tab.h
F003047 Changes
F003044 test1-23.dvi
F003041 lex.yy.c
F003042 Readme
F003043 dviselect.c
F003152 String.h
F003153 s_tolower.c
F003154 s_read_line.c
F003155 s_nappend.c
F003156 s_getline.c
D003149 libString
F003160 translate.c
F003161 authorize.c
F003150 README
F003151 aliasmail.c
F003157 remotemail
F003158 namefiles
F003159 gone.fishing
F002970 doublebuffer.c
F002949 trapezoidal.c
F002950 sinusoidal.c
F002951 simpleconic.c
F002952 rectangular.c
F002953 polyconic.c
F002954 perspective.c
F002955 orthographic.c
F002956 newyorker.c
F002957 mollweide.c
F002958 cylindrical.c
F002959 cylequalarea.c
F002960 bicentric.c
F002961 azequidist.c
F002962 azequalarea.c
F002983 telcodata
F002971 README
F003134 rawwalker.libc