-
Notifications
You must be signed in to change notification settings - Fork 2
/
_conform.map
3175 lines (3175 loc) · 60 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
F000801 remotemail
F003175 8½start
D000024 c++
F000025 libregexp.a
F000027 libC.a
F000026 libregexp.a
D000023 c++
F000014 LDE
F000015 kollmorgen
F000021 Boot
D000006 c++
F000011 changekey
F000012 ahddisplay
F000013 typepasswd
F000001 dviselect
F000002 showimage
F000003 Rpush
F000004 8½
F000005 Rpull
F000020 fireworks
F000007 printnetkey
F000008 renameuser
F000009 removeuser
F000010 changeuser
F000017 picnegate
F000018 transpose
F000019 hysteresis
F000022 aliasmail
F000016 newkernel
D000890 c++
F000895 libC.a
D000891 c++
F000892 libregexp.a
F000893 libA.a
F000894 libregexp.a
D000869 c++
F000888 Boot
F000868 showimage
F000870 Rpush
F000871 Rpull
F000872 8½
F000873 dviselect
F000887 fireworks
F000878 changekey
F000879 ahddisplay
F000880 typepasswd
F000884 picnegate
F000885 transpose
F000886 hysteresis
F000881 LDE
F000882 kollmorgen
F000874 printnetkey
F000875 renameuser
F000876 removeuser
F000877 changeuser
F000883 newkernel
F000889 aliasmail
F000867 kwinstart
F000858 personalize
F000854 dkrexauth
F000855 dkchangekey
F000862 dkexportfs0
F000863 dkrexexec
F000864 dkexportfs
F000865 dkdiscard
F000866 dkcpunote
F000850 CC
D000844 service.auth
D000848 nextstation
F000843 B
F000845 yesterday
F000846 membername
F000847 kana8½
F000849 uncompress
F000857 personalize
F000860 smallupdate
F000861 personalize
F000856 Disclabel
F000859 personalize
F000851 cdmglob.errors
F000852 uromnotes
F000853 mkaperture
D000842 8½
D000093 c++
F000092 libregexp.a
F000094 libregexp.a
F000095 libC.a
D000091 c++
F000089 Boot
F000079 changekey
F000080 ahddisplay
F000081 typepasswd
D000073 c++
F000088 fireworks
F000068 dviselect
F000069 Rpush
F000070 Rpull
F000071 8½
F000072 showimage
F000084 newkernel
F000090 aliasmail
F000082 LDE
F000083 kollmorgen
F000074 changekey
F000075 printnetkey
F000076 renameuser
F000077 changeuser
F000078 removeuser
F000085 picnegate
F000086 transpose
F000087 hysteresis
F000802 9powerboot
F000833 135.104.9.31
F000834 135.104.9.32
F000835 192.0.2.1
F000803 9magnumdisk
F000804 9magnumcd
F000805 9magnumcpu
F000806 9magnumfs
D000836 c++
D000837 c++
F000838 libregexp.a
F000841 libC.a
F000840 libregexp.a
F000839 libA.a
F000831 Boot
F000820 v.act2
F000821 kollmorgen
F000822 LDE
D000807 c++
F000823 CCS=8c
F000824 CCS=kc
F000825 CCS=2c
F000830 fireworks
F000808 dviselect
F000809 Rpush
F000810 8½
F000811 showimage
F000812 Rpull
F000813 printnetkey
F000814 renameuser
F000815 removeuser
F000816 changeuser
F000817 changekey
F000818 ahddisplay
F000819 typepasswd
F000827 picnegate
F000828 transpose
F000829 hysteresis
F000826 newkernel
F000832 aliasmail
F000067 Boot
F000066 nextkstack
F000028 9nextstation
F000045 picnegate
F000046 transpose
F000047 hysteresis
F000050 dkbrilisten
F000051 briserver
F000049 Boot
D000030 c++
F000042 LDE
F000043 kollmorgen
F000029 8½
F000031 Rpush
F000032 dviselect
F000033 showimage
F000034 Rpull
F000048 fireworks
F000039 changekey
F000040 ahddisplay
F000041 typepasswd
F000052 aliasmail
F000044 newkernel
F000035 printnetkey
F000036 renameuser
F000037 removeuser
F000038 changeuser
D000054 c++
F000055 libstring.a
F000056 libregexp.a
F000058 libC.a
F000057 libregexp.a
D000053 c++
F000896 README.ms
F000908 tree.pout
F000897 toy.draw.r
F000898 toy.wx.l
F000899 toy.w.l
F000900 toy.pins.l
F000901 toy.pins
F000902 schroff.board
F000903 schroff.board.l
F000904 toy.fx.l
F000905 my.pins
F000906 io.pins
F000907 README
F000909 tmac.soft
F000964 strstream.h
F000965 stdiostream.h
F000966 streamdefs.h
D000962 c++
F000963 a.out.h
F000957 seq-hard
F000958 seq-easy
F000959 locomotive
F000960 collectives
F000961 INDEX
F000911 weird.wheel
F000912 virus.lives
F000913 virus.dies
F000914 time.bomb
F000915 thunderbird
F000916 switch.engine
F000917 switch.block
F000918 still.lives
F000919 ships.vanish
F000920 ships.gliders
F000921 ships.appear
F000922 s.glider
F000923 r.pentomino
F000924 puffer.train
F000925 pi.heptomino
F000926 pentadecathlon
F000927 penta.shuttle
F000928 penta.kill
F000929 penta.death
F000930 penta.bounce
F000931 overw8.ship
F000932 middle.ship
F000933 methuselah
F000934 mathematician
F000935 light.ship
F000936 hepto.shuttle
F000937 heavy.ship
F000938 harvester
F000939 h.heptomino
F000940 gun.gliders
F000941 gun.builder
F000942 gosper.flop
F000943 glider.thing2
F000944 glider.thing1
F000945 glider.step
F000946 glider.havoc
F000947 flip.flop
F000948 flare.path
F000949 dirty.fuse
F000950 cp.48-56-72
F000951 clean.fuse
F000952 catherinewheel
F000953 candelabra
F000954 boat.factory
F000955 barber.pole
F000956 2.eaters
F000910 fortunes.index
F002709 ex1.drills.def
F002710 ex1.drills
F002711 ex1.gerber
F002712 oldlayout.c
F002713 ex1.fizz-lay
F002714 ex1.fizz
F002715 ex1.silk.ger
F002716 gerberfont.c
F002717 ex1.cu.ger
F002718 gerberfill.c
F002734 LG.lgr
F002735 gerberout.c
F002736 Ogerberout.c
F002737 Ogerber.c
D002697 LDE
F002731 parser.tab.c
F002732 parser.tab.h
F002733 parser.output
F002698 act.c.old
F002700 ny.tab.c
F002701 QUINE.c
F002702 LDE.c
F002703 picmacros
F002722 quickdiff.c
F002724 broken.paddle
F002725 PLS501.paddle
F002726 M110.paddle
F002727 AMD.paddle
F002728 7C361.paddle
F002729 7C330.paddle
F002730 20L10.paddle
F002720 fizz.debug
F002721 transform.c
F002719 Bpal.e
F002704 kollmorgen.c
F002705 positions.c
F002706 nn.lin.c
F002707 nn.kd.c
F002708 fizzprewrap.c
F002699 Gmatch.c
F002723 README
F003166 executable.c
F003146 frptofchar.c
F003147 polysegment.c
F003148 subfalloc.c
F003149 rdfontfile.c
F003150 wrbitmapfile.c
F003151 wrsubfontfile.c
F003152 rdbitmapfile.c
F003153 rdsubfontfile.c
F003154 cursorswitch.c
F003155 cursorset.c
F003156 bscreenrect.c
F003157 bitbltclip.c
F003170 testipinfo.c
F003171 ndbgetval.c
F003109 README
F003110 9magnumfs.c
F003122 bbuffered.c
D002404 libregexp
F003161 classmask.c
F003162 myetheraddr.c
F003163 parseether.c
F003119 namespace
F003120 passtokey.c
F003121 testnewns.c
F002452 faultsparc.c
F002429 ether8390.c
F002430 boot9pcdisk.c
F002431 devpcmcia.c
F002432 ether8003.c
F002433 archncr3170.c
F002434 inconsubs.s
F002435 archnsx20.c
F002436 archgeneric.c
F002437 devconfig.c
F002438 devfloppy.c
F002439 ether2000.c
F002413 termlocal
F002414 fpihobbit.c
F002405 userpasswd.c
F002406 getpasswd.c
F002407 nopsession.c
F002408 newkernel.c
F002422 nextaudio
F002423 nextstation
F002424 devfloppy.c
F002425 nextstationdisk
F002426 mkfile.boot
F002427 fault68040.c
F002428 nextstationnofs
F002415 faultmips.c
F002416 magnumcpu
F002417 magnumbrk.c
F002418 magnumboot
F002419 magnumlcd
F002420 faultmips.c
F002421 magnumdisk
F002440 tcpoutput.c
F002441 mkextract
F002442 mkstreamlist
F002443 netXXX.c
F002444 deviproute.c
F002445 mkmisclist
F002446 mkdevlist
F002447 devXXX.c
F002448 portmkfile
F002409 9gnotdisk.c
F002410 instructions
F002411 fault68020.c
F002412 gnotlbpdisk
F002449 powerterm
F002450 faultmips.c
F002451 powerboot
F003172 _IO_putc.c
F003173 _IO_getc.c
F003174 Stdio.h
F003111 fireworks.c
F003117 README
F003118 History
F003112 player1.icon
F003113 player0.icon
F003114 missile.icon
F003115 deathstar.icon
F003116 boom.icon
F002683 rexauth.srv.c
F002684 renameuser.c
F002685 removeuser.c
F002686 guard.srv.c
F002687 getauthkey.c
F002688 fsauth.srv.c
F002689 check.srv.c
F002690 changeuser.c
F002691 changekey.srv.c
F002692 chal.srv.c
F002693 printnetkey.c
F002694 auth.srv.c
F003133 wrpicfile.c
F003134 pic.pl9.c
F003135 rdpicfile.c
F003136 picunpack.c
F003137 picputprop.c
F003138 picopen_w.c
F003139 picopen_r.c
F003140 picgetprop.c
F003141 pic.run.c
F003142 pic.pco.c
F003143 pic.dmp.c
F003144 pic.bit.c
F003145 pic.601.c
F003108 rdtypeface.c
F003105 transpose.c
F003106 picnegate.r
F003107 hysteresis.c
F003164 polysegment.c
F003165 subfontstring.c
F002695 mips.out.h
F002696 b.com-T0x80080100
F003167 getS.c
F003168 convS2M.c
F003169 convM2S.c
F002472 segdetach.c
F002473 segattach.c
F002474 rendezvous.c
F002674 wrfontfile.c
F002675 wrbitmapfile.c
F002676 rdfontfile.c
F002677 rdbitmapfile.c
F002678 cursorswitch.c
F002679 cursorset.c
F002680 bscreenrect.c
F002681 bitbltclip.c
F002682 getfields.c
D002475 plan9hobbit
F002481 _WAIT.s
F002482 _UNMOUNT.s
F002483 _RENDEZVOUS.s
F002484 _SEGFLUSH.s
F002485 _SEGFREE.s
F002486 _SEGDETACH.s
F002487 _SEGATTACH.s
F002488 _NOTED.s
F002489 _NOTIFY.s
F002490 _FWSTAT.s
F002491 _WSTAT.s
F002492 _REMOVE.s
F002493 _BRK_.s
F002494 _CREATE.s
F002495 _PIPE.s
F002496 _WRITE.s
F002497 _RFORK.s
F002498 _STAT.s
F002499 _SLEEP.s
F002500 _SEEK.s
F002501 _READ.s
F002502 _OPEN.s
F002503 _MOUNT.s
F002504 _SEGBRK.s
F002505 _FSTAT.s
F002506 _FORKPGRP.s
F002507 _EXITS.s
F002508 _EXEC.s
F002509 _ALARM.s
F002510 _DUP.s
F002511 _CLOSE.s
F002512 _CHDIR.s
F002513 _BIND.s
F002514 _ERRSTR.s
F002515 _SYSR1.s
D002476 plan968020
F002635 _WAIT.s
F002636 _UNMOUNT.s
F002637 _RENDEZVOUS.s
F002638 _SEGFLUSH.s
F002639 _SEGFREE.s
F002640 _SEGDETACH.s
F002641 _SEGATTACH.s
F002642 _NOTED.s
F002643 _NOTIFY.s
F002644 _FWSTAT.s
F002645 _WSTAT.s
F002646 _REMOVE.s
F002647 _BRK_.s
F002648 _CREATE.s
F002649 _PIPE.s
F002650 _WRITE.s
F002651 _RFORK.s
F002652 _STAT.s
F002653 _SLEEP.s
F002654 _SEEK.s
F002655 _READ.s
F002656 _OPEN.s
F002657 _MOUNT.s
F002658 _SEGBRK.s
F002659 _FSTAT.s
F002660 _FORKPGRP.s
F002661 _EXITS.s
F002662 _EXEC.s
F002663 _ALARM.s
F002664 _DUP.s
F002665 _CLOSE.s
F002666 _CHDIR.s
F002667 _BIND.s
F002668 _ERRSTR.s
F002669 _SYSR1.s
D002477 plan9mips
F002516 _WAIT.s
F002517 _UNMOUNT.s
F002518 _RENDEZVOUS.s
F002519 _SEGFLUSH.s
F002520 _SEGFREE.s
F002521 _SEGDETACH.s
F002522 _SEGATTACH.s
F002523 _NOTED.s
F002524 _NOTIFY.s
F002525 _FWSTAT.s
F002526 _WSTAT.s
F002527 _REMOVE.s
F002528 _BRK_.s
F002529 _CREATE.s
F002530 _PIPE.s
F002531 _WRITE.s
F002532 _RFORK.s
F002533 _STAT.s
F002534 _SLEEP.s
F002535 _SEEK.s
F002536 _READ.s
F002537 _OPEN.s
F002538 _MOUNT.s
F002539 _SEGBRK.s
F002540 _FSTAT.s
F002541 _FORKPGRP.s
F002542 _EXITS.s
F002543 _EXEC.s
F002544 _ALARM.s
F002545 _DUP.s
F002546 _CLOSE.s
F002547 _CHDIR.s
F002548 _BIND.s
F002549 _ERRSTR.s
F002550 _SYSR1.s
D002479 plan9sparc
F002551 _WAIT.s
F002552 _UNMOUNT.s
F002553 _RENDEZVOUS.s
F002554 _SEGFLUSH.s
F002555 _SEGFREE.s
F002556 _SEGDETACH.s
F002557 _SEGATTACH.s
F002558 _NOTED.s
F002559 _NOTIFY.s
F002560 _FWSTAT.s
F002561 _WSTAT.s
F002562 _REMOVE.s
F002563 _BRK_.s
F002564 _CREATE.s
F002565 _PIPE.s
F002566 _WRITE.s
F002567 _RFORK.s
F002568 _STAT.s
F002569 _SLEEP.s
F002570 _SEEK.s
F002571 _READ.s
F002572 _OPEN.s
F002573 _MOUNT.s
F002574 _SEGBRK.s
F002575 _FSTAT.s
F002576 _FORKPGRP.s
F002577 _EXITS.s
F002578 _EXEC.s
F002579 _ALARM.s
F002580 _DUP.s
F002581 _CLOSE.s
F002582 _CHDIR.s
F002583 _BIND.s
F002584 _ERRSTR.s
F002585 _SYSR1.s
F002478 extraobjs
F002480 Notes
F002586 _WAIT.s
F002587 _UNMOUNT.s
F002588 _RENDEZVOUS.s
F002589 _SEGFLUSH.s
F002590 _SEGFREE.s
F002591 _SEGDETACH.s
F002592 _SEGATTACH.s
F002593 _NOTED.s
F002594 _NOTIFY.s
F002595 _FWSTAT.s
F002596 _WSTAT.s
F002597 _REMOVE.s
F002598 _BRK_.s
F002599 _CREATE.s
F002600 _PIPE.s
F002601 _WRITE.s
F002602 _RFORK.s
F002603 _STAT.s
F002604 _SLEEP.s
F002605 _SEEK.s
F002606 _READ.s
F002607 _OPEN.s
F002608 _MOUNT.s
F002609 _SEGBRK.s
F002610 _FSTAT.s
F002611 _FORKPGRP.s
F002612 _EXITS.s
F002613 _EXEC.s
F002614 _ALARM.s
F002615 _DUP.s
F002616 _CLOSE.s
F002617 _CHDIR.s
F002618 _BIND.s
F002619 _ERRSTR.s
F002620 _SYSR1.s
F002621 Xunlink.c
F002622 Xstat.c
F002623 Xopen.c
F002624 Xlink.c
F002625 Xcreat.c
F002626 Xchdir.c
F002627 Xaccess.c
F002628 dirtostat.c
F002629 sigsuspend.c
F002630 sigpending.c
F002631 sigprocmask.c
F002632 sigaction.c
F002633 _envsetup.c
F002634 tcgetattr.c
F002672 _IO_putc.c
F002673 _IO_getc.c
F002670 setlocale.c
F002671 rewinddir.c
F003131 netmkaddr.c
F003132 getfields.c
F003123 dirfwstat.c
F003124 convM2S.c
F003125 convM2D.c
F003126 convD2M.c
F003127 convS2M.c
F003128 getS.c
F003129 fcallconv.c
F003130 dirmodeconv.c
D002471 Y
F002453 bbuffered.l
F002454 frptofchar.l
F002465 convD2M.l
F002466 fcallconv.l
F002467 netmkaddr.l
F002468 convS2M.l
F002469 convM2S.l
F002470 convM2D.l
F002455 wrsubfontfile.l
F002456 wrbitmapfile.l
F002457 subfalloc.l
F002458 rdsubfontfile.l
F002459 rdfontfile.l
F002460 rdbitmapfile.l
F002461 cursorswitch.l
F002462 cursorset.l
F002463 bscreenrect.l
F002464 bitbltclip.l
F002770 newkernel.c
F002742 6.out.h
F002773 funcgetflags.c
F003087 README
F003088 README
F003089 sam.unix
F003090 README
F002743 8.out.h
D002738 8½
F002797 MAP
F002739 sh.C
F002740 showimage.c
F002883 Makefile
F002886 texc.lpro
F002887 dvips.mips
F002888 config.epsf
F002889 config.post3x3
F002890 config.gnot
F002891 forms.lpro
F002892 config.lino
F002893 crop.lpro
F002894 CHANGES
F002895 color.lpro
F002896 APEREADME
F002897 finclude.lpro
F002898 README.plan9
F002899 virtualfont.c
F002900 texps.lpro
F002901 texc.script
F002902 tex.lpro
F002903 structures.h
F002904 special.lpro
F002905 config.bigmem
F002906 scalewidth.c
F002907 rotsample.tex
F002908 drawPS.c
F002909 dospecial.c
F002910 dosection.c
F002911 README
F002912 Makefile
F002913 MakeTeXPK
F002914 INSTALLATION
D002876 ourafm-extra
D002877 PSvfs
D002878 afm-extra
F002884 Makefile
D002879 PSlatex
F002885 avantgarde.sty
D002880 PStfms
F002881 addgreekcaps
F002882 README
F003071 v.web2c
F003072 v.splitup
F003073 y.acts.058074
F003074 README.plan9
F003075 y.tmp.058074
F003076 y.tab.h
F003077 v.regfix
F003078 v.fixwrites
F003079 web2c.yacc
F003080 fixwrites.c
F003081 Makefile
F003021 stamp-tangle.mips
F003065 tangleboot.mips
F003066 convert.orig
F003067 web.defines
F003068 tangleboot.pas
F003069 tangleboot.c
F003070 Makefile
F003022 stamp-web2c.mips
F003061 texwarext.c
F003062 texware.define
F003063 dvitypext.c
F003064 Makefile
F003023 site.h.orig
D003059 TeXtrip
F003052 v.triptex
F003053 tex.defines
F003054 tex.pool
F003055 ini_to_trip
F003056 fixcoerce.h
F003057 ctex.ch.orig
F003058 bigtex.diff
F003060 Makefile
F003024 README.ape
F003025 README
F003026 PROJECTS
F003027 PROBLEMS
F003050 mfware.defines
F003051 Makefile
F003028 Makefile.orig
D003044 MFwindow
D003045 MFtrap
F003037 mf.pool
F003038 mf.defines
F003039 ini_to_trap
F003040 fixcoerce.h
F003041 cmf.ch.orig
F003042 bigmf.diff
F003043 Makefile
F003046 .gdbinit
F003047 x11-Xt.c
F003048 x11-Xlib.c
F003049 Makefile
F003029 Makefile
F003034 CONTENTS.tex
F003035 futil.defines
F003036 Makefile
F003030 MACHINES
F003031 ChangeLog
F003032 bibtex.defines
F003033 Makefile
F003016 y.tab.h
F003017 Changes
F002978 vouchform.tex
F002979 voucher90.sty
F002980 voucher.README
F002981 vouch.Makefile
F002982 tmexample.toc
F002983 tmexample.tex
F002984 tmexample.aux
F002985 showvoucher
F002986 my-tm.el
F002987 my-latex.el
F002988 mm2textr2.tex
F002989 mm2textr1.tex
F002990 mm2texsym.tex
F002991 mm2texmac2.tex
F002992 mm2texmac1.tex
F002993 mm2tex.sed2
F002994 man.1.tex
F002995 localpatch.sty
F002996 letexample.tex
F002997 attslides.sty
F002998 letexample.aux
F002999 README.hwt
F003000 expicture.sty
F003001 bitmap2tex
F003002 attletter.sty
F003003 att36.tfm.10line
F003004 att36.mf.10line
F003005 att36.300pk.10
F003006 att36.300pk
F003007 att36.300gf
F003008 att36.170pk
F003009 att36.170gf
F003010 att36.142pk
F003011 att36.142gf
F003012 att36.118pk.10
F003013 att36.118pk
F003014 att36.118gf
F003015 README.tla
F002975 gnotfonts
F002976 linofonts
F002977 canonfonts
F002968 web.defines
F002969 tangleboot.pas
F002970 tangleboot.c
F002971 Makefile
F002964 texwarext.c
F002965 texware.define
F002966 dvitypext.c
F002967 Makefile
F002920 site.h.orig
D002962 TeXtrip
F002957 tex.defines
F002958 ini_to_trip
F002959 fixcoerce.h
F002960 ctex.ch.orig
F002961 bigtex.diff
F002963 Makefile
F002921 Makefile
F002922 MP.README
F002939 mfware.defines
F002940 Makefile
D002933 MFwindow
D002934 MFtrap
F002927 mf.defines
F002928 ini_to_trap
F002929 fixcoerce.h
F002930 cmf.ch.orig
F002931 bigmf.diff
F002932 Makefile
F002935 .gdbinit
F002936 x11-Xt.c
F002937 x11-Xlib.c
F002938 Makefile
F002923 futil.defi..a
F002924 futil.defines
F002925 Makefile
F002926 .gdbinit
F002972 web2c.yacc
F002973 fixwrites.c
F002974 Makefile
F002954 mpware.defines
F002955 dvitompext.c
F002956 Makefile
F002946 ~=
F002947 Sl
F002948 Lb
F002949 LH
F002950 L1
F002951 Fl
F002952 Fi
F002953 Ao
F002945 README
F002941 mp.defines
F002942 ini_to_trap
F002943 fixcoerce.h
F002944 Makefile
F002916 lex.yy.c
F002919 test1-23.dvi
F002917 Readme
F002918 dviselect.c
F002915 dviselect.1
F003018 README
F003019 tr2tex.9-tex-orig
F003020 testfile.tex-orig
F002873 errata.three
F002874 errata.four
F002875 errata.five
F003094 String.h
F003095 s_tolower.c
F003096 s_read_line.c
F003097 s_nappend.c
F003098 s_getline.c
D003091 libString
F003100 translate.c
F003101 authorize.c
F003092 README
F003093 aliasmail.c
F003099 gone.fishing
F002795 doublebuffer.c
F002776 newyorker.c
F002777 trapezoidal.c
F002778 sinusoidal.c
F002779 simpleconic.c
F002780 rectangular.c
F002781 polyconic.c
F002782 perspective.c
F002783 orthographic.c
F002784 mollweide.c
F002785 cylindrical.c
F002786 cylequalarea.c
F002787 bicentric.c
F002788 azequidist.c
F002789 azequalarea.c
F002796 README
F002871 README
D002862 txt.chinese
F002859 jef.errata
F002860 big5.presotto
F002861 gb.weird
F002872 README-DIR.gb
F002863 cclib16st.bdf
F002864 cclib16fs.bdf
F002865 big5.16.bits
F002866 README
F002867 jis.weird
F002868 big5.weird
F002869 jis16.bits
F002870 jis.bits
F002855 ex3.cyr1
F002856 README
F002857 ex1.kio8
F002858 ex2.kio8x
F002852 conv_big5.c
F002853 desc.latin
F002854 README
F003082 rawwalker.libc
F003083 README
F003084 rawwalker.ex
F003085 rawwalker.ansi
F003086 rawwalker.stdio
F002752 fs-6
F002753 fs-5
F002754 fs-4
F002755 fs-3
F002756 fs-2
F002757 fs-1
F003104 lcsection
F003103 z.out.h
F002771 prevy.tab.h
F002749 README
F002748 typepasswd.c
F002758 untarmail
F002759 USERMEM
F002760 README3.0
F002763 compressdir.1
F002761 README
F002762 Makefile
F003102 v.out.h
F002772 exportsrv.c
F002774 k.out.h
F002764 68020optab.h
F002765 hobbitdas.c
F002766 68020optab.c
F002767 mipscodas.c
F002768 68020optab
F002769 README
F002790 v.dumphash
F002791 dnresolve.c
F002792 convM2DNS.c
F002793 convDNS2M.c
F002832 SSn.tbl.c
F002833 SSn.bits.c
F002834 Rn.tbl.c
F002835 Rn.bits.c
F002836 In.tbl.c
F002837 In.bits.c
F002838 Hn.tbl.c
F002839 Hn.bits.c
F002840 HIn.tbl.c
F002841 HIn.bits.c
F002842 HBn.tbl.c
F002843 HBn.bits.c
F002844 HBOn.tbl.c
F002845 HBOn.bits.c
F002846 CWn.tbl.c
F002847 CWn.bits.c
F002848 Bn.tbl.c
F002849 Bn.bits.c
F002850 BIn.tbl.c
F002851 BIn.bits.c
F002807 HBLn.tbl.c
F002808 HBLn.bits.c
F002809 Bn.bits.c
F002810 Bn.tbl.c
F002811 HBOn.bits.c
F002812 HBOn.tbl.c
F002813 HBn.bits.c
F002814 HBn.tbl.c
F002815 HIn.bits.c
F002816 HIn.tbl.c
F002817 Hn.bits.c
F002818 Hn.tbl.c
F002819 CWn.bits.c
F002820 CWn.tbl.c
F002821 BIn.bits.c
F002822 BIn.tbl.c
F002823 In.bits.c
F002824 In.tbl.c
F002825 Rn.bits.c
F002826 Rn.tbl.c