├── :mk ├── :mk.addon ├── :mk.arch ├── :mk.csds ├── :mk.fnd ├── :mk.i386 ├── :mkcmd ├── :mkhead ├── :mklib ├── :mkoam ├── :mksyshead ├── :mkucb ├── :mkucbcmd ├── :mkucbhead ├── :mkucblib ├── :mkuts ├── :mkxcp ├── :mkxcpcmd ├── :mkxcplib ├── README.md ├── add-on ├── e503 │ ├── ID │ │ ├── Makefile │ │ ├── Master │ │ ├── Node │ │ ├── Space.c │ │ └── System │ ├── e503.mk │ ├── io │ │ ├── Makefile │ │ ├── e503io.s │ │ ├── e503li.c │ │ └── e503mac.c │ └── sys │ │ ├── Makefile │ │ └── e503.h ├── mouse │ ├── ID │ │ ├── IDlist.sh │ │ ├── Makefile │ │ ├── Master.bmse.sh │ │ ├── Master.m320.sh │ │ ├── Master.mse.sh │ │ ├── Master.smse.sh │ │ ├── Node.bmse.sh │ │ ├── Node.m320.sh │ │ ├── Node.mse.sh │ │ ├── Rc.smse.sh │ │ ├── Sd.smse.sh │ │ ├── System.bmse.sh │ │ ├── System.m320.sh │ │ ├── System.mse.sh │ │ └── System.smse.sh │ ├── cmd │ │ ├── Makefile │ │ ├── mouseadmin.c │ │ └── mousemgr.c │ ├── io │ │ ├── Makefile │ │ ├── Space.c.bmse │ │ ├── bmse.c │ │ ├── m320.c │ │ ├── mouse.c │ │ ├── mse.h │ │ ├── mse_subr.c │ │ ├── mymk │ │ ├── mymse.c │ │ └── smse.c │ └── mouse.mk ├── pc586 │ ├── ID │ │ ├── Makefile │ │ ├── Master │ │ ├── Node │ │ ├── Space.c │ │ └── System │ ├── io │ │ ├── Makefile │ │ ├── pc586.c │ │ └── pc586bcopy.s │ ├── pc586.mk │ └── sys │ │ ├── 82586.h │ │ ├── Makefile │ │ ├── lihdr.h │ │ └── pc586.h ├── pkg.compat │ ├── copyright │ ├── depend │ ├── pkginfo │ ├── postinstall │ └── prototype ├── pkg.dfs │ ├── copyright │ ├── pkginfo │ ├── postinstall │ ├── preremove │ └── prototype ├── pkg.e503 │ ├── depend │ ├── pkginfo │ ├── postinstall │ ├── preremove │ └── prototype ├── pkg.edit │ ├── copyright │ ├── pkginfo │ └── prototype ├── pkg.fmli │ ├── copyright │ ├── pkginfo │ └── prototype ├── pkg.gdbg │ ├── copyright │ ├── depend │ ├── pkginfo │ ├── postinstall │ ├── preremove │ └── prototype ├── pkg.inet │ ├── copyright │ ├── depend │ ├── pkginfo │ ├── postinstall │ ├── preinstall │ ├── preremove │ ├── prototype │ └── request ├── pkg.kdb │ ├── copyright │ ├── depend │ ├── pkginfo │ ├── postinstall │ ├── preremove │ └── prototype ├── pkg.kdbu │ ├── copyright │ ├── pkginfo │ ├── postinstall │ ├── preremove │ ├── prototype │ └── request ├── pkg.lp │ ├── copyright │ ├── depend │ ├── i.cron │ ├── lp.proto │ ├── oam.proto │ ├── pkginfo │ ├── post.proto │ ├── postinstall │ ├── preinstall │ ├── preremove │ ├── prototype │ ├── r.cron │ └── request ├── pkg.mse │ ├── copyright │ ├── pkginfo │ ├── postinstall │ ├── preinstall │ ├── preremove │ ├── prototype │ └── request ├── pkg.nfs │ ├── copyright │ ├── depend │ ├── pkginfo │ ├── postinstall │ ├── preremove │ ├── prototype │ └── request ├── pkg.nsu │ ├── copyright │ ├── pkginfo │ ├── postinstall │ ├── preremove │ ├── prototype │ └── request ├── pkg.oam │ ├── copyright │ ├── depend │ ├── pkginfo │ ├── postinstall │ ├── postremove │ ├── preinstall │ ├── preremove │ ├── prototype │ └── request ├── pkg.pc586 │ ├── address │ ├── copyright │ ├── depend │ ├── pkginfo │ ├── postinstall │ ├── preremove │ ├── prototype │ └── request ├── pkg.pci │ ├── copyright │ ├── depend │ ├── pkginfo │ └── prototype ├── pkg.pcieth │ ├── copyright │ ├── depend │ ├── pkginfo │ └── prototype ├── pkg.qt │ ├── address │ ├── copyright │ ├── pkginfo │ ├── postinstall │ ├── preremove │ ├── prototype │ └── request ├── pkg.rfs │ ├── copyright │ ├── crontab │ ├── depend │ ├── pkginfo │ ├── postinstall │ ├── preinstall │ ├── preremove │ ├── prototype │ └── request ├── pkg.rpc │ ├── copyright │ ├── depend │ ├── pkginfo │ ├── postinstall │ ├── preremove │ └── prototype ├── pkg.sec │ ├── copyright │ ├── pkginfo │ ├── postinstall │ ├── postremove │ └── prototype ├── pkg.termcap │ ├── copyright │ ├── pkginfo │ └── prototype ├── pkg.wd │ ├── copyright │ ├── depend │ ├── pkginfo │ ├── postinstall │ ├── preremove │ └── prototype ├── pkg.window │ ├── copyright │ ├── pkginfo │ └── prototype ├── pkg.xl │ ├── copyright │ ├── pkginfo │ ├── postinstall │ ├── preinstall │ ├── preremove │ └── prototype ├── pkg.xx │ ├── copyright │ ├── pkginfo │ ├── postinstall │ ├── postremove │ ├── preinstall │ ├── preremove │ └── prototype ├── qt │ ├── ID │ │ ├── Files.sh │ │ ├── Install │ │ ├── Makefile │ │ ├── Master.sh │ │ ├── Name.sh │ │ ├── Node.sh │ │ ├── Remove │ │ ├── Size.sh │ │ ├── Space.c │ │ ├── System.sh │ │ ├── address.sh │ │ └── address.sh.ori │ ├── README │ ├── cmd │ │ ├── Makefile │ │ └── tapecntl.c │ ├── io │ │ ├── Makefile │ │ ├── debug.h │ │ ├── driver.c │ │ ├── globals.h │ │ └── qt.h │ ├── pkg │ │ └── Makefile │ ├── qt.mk │ └── uface │ │ ├── Makefile │ │ ├── Menu.tape │ │ ├── Text.fop │ │ ├── Text.sop │ │ ├── Text.tape │ │ └── admin.sh ├── scsi.in │ ├── ID │ │ ├── Makefile │ │ ├── sc01 │ │ │ ├── Makefile │ │ │ ├── Master.sh │ │ │ ├── Node.sh │ │ │ ├── Space.c │ │ │ └── System.sh │ │ ├── scsi │ │ │ ├── Makefile │ │ │ ├── Master.sh │ │ │ ├── Space.c │ │ │ └── System.sh │ │ ├── sd01 │ │ │ ├── Makefile │ │ │ ├── Master.sh │ │ │ ├── Node.sh │ │ │ ├── System.sh │ │ │ └── space.c │ │ ├── st01 │ │ │ ├── Makefile │ │ │ ├── Master.sh │ │ │ ├── Node.sh │ │ │ ├── Space.c │ │ │ └── System.sh │ │ └── sw01 │ │ │ ├── Makefile │ │ │ ├── Master.sh │ │ │ ├── Node.sh │ │ │ ├── Space.c │ │ │ └── System.sh │ ├── doc │ │ ├── Release │ │ ├── cd-rom.7 │ │ └── worm.7 │ ├── install │ │ ├── Install │ │ ├── Makefile │ │ ├── Name.sh │ │ ├── Remove │ │ ├── Size.sh │ │ └── address.sh │ ├── io │ │ ├── Makefile │ │ ├── sc01 │ │ │ ├── Makefile │ │ │ ├── sc01.c │ │ │ └── sc01.h │ │ ├── scsi │ │ │ ├── Makefile │ │ │ ├── ad1542.c │ │ │ └── ad1542.h │ │ ├── sd01 │ │ │ ├── Makefile │ │ │ ├── sd01.c │ │ │ └── sd01.h │ │ ├── st01 │ │ │ ├── Makefile │ │ │ ├── st01.c │ │ │ └── st01.h │ │ └── sw01 │ │ │ ├── Makefile │ │ │ ├── sw01.c │ │ │ └── sw01.h │ ├── scsi.in.mk │ ├── sys │ │ ├── Makefile │ │ ├── cdrom.h │ │ └── worm.h │ └── test │ │ ├── Makefile │ │ ├── sc01qa │ │ ├── sc01qa.c │ │ └── sc01qa.mk │ │ ├── sw01qa │ │ ├── sw01qa.c │ │ └── sw01qa.mk │ │ └── tapecntl │ │ ├── tapecntl.c │ │ └── tapecntl.mk ├── scsi │ ├── ID │ │ ├── Makefile │ │ ├── scsi │ │ │ ├── Master.sh │ │ │ ├── System.sh │ │ │ ├── System2.sh │ │ │ ├── System3.sh │ │ │ └── space.c │ │ └── sd01 │ │ │ ├── Master.sh │ │ │ ├── System.sh │ │ │ └── space.c │ ├── cmd │ │ ├── DISK.c │ │ ├── Makefile │ │ ├── format.c │ │ ├── format.d │ │ │ ├── sd00.0 │ │ │ └── sd01.1 │ │ ├── scl.c │ │ ├── scl.h │ │ ├── script.c │ │ ├── scsicomm.c │ │ ├── scsicomm.h │ │ ├── tc.index │ │ └── tokens.h │ ├── io │ │ ├── Makefile │ │ ├── scsi │ │ │ ├── Driver2.c │ │ │ ├── Driver3.c │ │ │ ├── Makefile │ │ │ ├── had.h │ │ │ ├── scsi.c │ │ │ └── wd7000.h │ │ └── sd01 │ │ │ ├── Makefile │ │ │ ├── sd01.c │ │ │ └── sd01.h │ ├── scsi.mk │ └── sys │ │ ├── mirror.h │ │ ├── scsi.h │ │ ├── sd01_ioctl.h │ │ ├── sdi.h │ │ └── sdi_edt.h ├── source │ ├── .setup │ ├── Files.base │ ├── Files.scde │ ├── fixcode │ ├── prep │ └── source.mk ├── wd │ ├── ID │ │ ├── Makefile │ │ ├── Master │ │ ├── Node │ │ ├── Space.c │ │ └── System │ ├── README.wd │ ├── io │ │ ├── Makefile │ │ ├── wd.c │ │ └── wdbcopy.s │ ├── sys │ │ ├── Makefile │ │ ├── wd.h │ │ └── wdhdw.h │ └── wd.mk ├── xl │ ├── ID │ │ ├── Files.sh │ │ ├── Install │ │ ├── Makefile │ │ ├── Master.sh │ │ ├── Name.sh │ │ ├── Node.sh │ │ ├── Remove │ │ ├── Size.sh │ │ ├── Space.c │ │ └── System.sh │ ├── README │ ├── cmd │ │ ├── Makefile │ │ └── ftapecntl.c │ ├── io │ │ ├── Makefile │ │ ├── awk.sh │ │ ├── fd.c │ │ ├── xl.c │ │ ├── xl.h │ │ ├── xl_dec.c │ │ └── xla.orig.s │ ├── pkg │ │ └── Makefile │ ├── sys │ │ ├── Makefile │ │ └── ftape.h │ ├── uface │ │ ├── Makefile │ │ ├── Menu.tape │ │ ├── Text.fop │ │ ├── Text.sop │ │ ├── Text.tape │ │ └── admin.sh │ └── xl.mk └── xx │ ├── ID │ ├── Makefile │ ├── Master │ ├── Mfsys │ ├── Sfsys │ ├── Space.c │ ├── Stubs.c │ └── System │ ├── cmd │ ├── Makefile │ ├── fsck │ │ ├── fsck.h │ │ ├── fsck.mk │ │ ├── fsck1.c │ │ └── fsck2.c │ └── mount │ │ ├── mount.c │ │ └── mount.mk │ ├── io │ ├── Makefile │ ├── xxalloc.c │ ├── xxblklist.c │ ├── xxbmap.c │ ├── xxdir.c │ ├── xxgetsz.c │ ├── xxinode.c │ ├── xxrdwri.c │ ├── xxvfsops.c │ └── xxvnops.c │ ├── sys │ ├── Makefile │ └── fs │ │ ├── xxfblk.h │ │ └── xxfilsys.h │ └── xx.mk ├── arch ├── at │ ├── cmd │ │ └── fdisk │ │ │ ├── fdisk.c │ │ │ └── fdisk.mk │ └── uts │ │ └── i386 │ │ ├── io │ │ ├── asy.c │ │ ├── chanmux.c │ │ ├── cram.c │ │ ├── dma.c │ │ ├── fd.c │ │ ├── genvid.c │ │ ├── hd.c │ │ ├── io.AT386.mk │ │ ├── kd │ │ │ ├── btc.c │ │ │ ├── btc.h │ │ │ ├── evc.c │ │ │ ├── evga.c │ │ │ ├── kd.mk │ │ │ ├── kd_btc.h │ │ │ ├── kdkb.c │ │ │ ├── kdstr.c │ │ │ ├── kdv.c │ │ │ ├── kdvt.c │ │ │ ├── vdc.c │ │ │ └── vtables.c │ │ ├── kdvm │ │ │ ├── kdvm.c │ │ │ └── kdvm.mk │ │ ├── lp.c │ │ └── rtc.c │ │ └── master.d │ │ ├── asy │ │ ├── mdev │ │ ├── node │ │ ├── sdev │ │ └── space.c │ │ ├── cmux │ │ ├── mdev │ │ └── sdev │ │ ├── cram │ │ ├── mdev │ │ └── sdev │ │ ├── dma │ │ ├── mdev │ │ └── sdev │ │ ├── fd │ │ ├── mdev │ │ └── sdev │ │ ├── gvid │ │ ├── mdev │ │ ├── sdev │ │ └── stubs.c │ │ ├── hd │ │ ├── mdev │ │ └── sdev │ │ ├── kd │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ │ ├── kdvm │ │ ├── mdev │ │ ├── sdev │ │ └── stubs.c │ │ ├── lp │ │ ├── mdev │ │ ├── node │ │ ├── sdev │ │ └── space.c │ │ ├── master.AT386.mk │ │ └── rtc │ │ ├── mdev │ │ └── sdev ├── eisa │ ├── :mkuts.eisa │ ├── add-on │ │ ├── scsi.in │ │ │ ├── ID │ │ │ │ └── scsi │ │ │ │ │ └── Space.c │ │ │ ├── install │ │ │ │ ├── Install │ │ │ │ ├── Name.sh │ │ │ │ └── Remove │ │ │ └── io │ │ │ │ └── scsi │ │ │ │ ├── Makefile │ │ │ │ ├── esc.c │ │ │ │ └── esc.h │ │ ├── scsi │ │ │ └── io │ │ │ │ └── sd01 │ │ │ │ └── sd01.c │ │ └── ups │ │ │ ├── Init.sh │ │ │ ├── Install │ │ │ ├── Master.sh │ │ │ ├── Name.sh │ │ │ ├── Node.sh │ │ │ ├── Remove │ │ │ ├── S49ups │ │ │ ├── System.sh │ │ │ ├── fpan.c │ │ │ ├── fpan.h │ │ │ ├── packagelist │ │ │ ├── ups.mk │ │ │ └── ups_daem.c │ ├── proto │ │ └── i386 │ │ │ └── at386 │ │ │ ├── scsi.mk │ │ │ └── scsi │ │ │ └── INSTALL4 │ └── uts │ │ └── i386 │ │ ├── boot │ │ └── at386 │ │ │ ├── boot.c │ │ │ └── start.s │ │ ├── io │ │ ├── kd │ │ │ └── kd.mk │ │ └── kdvm │ │ │ └── kdvm.mk │ │ └── os │ │ ├── oem.c │ │ └── streamio.c ├── mb1 │ ├── proto │ │ └── i386 │ │ │ └── Plists │ │ │ ├── Plist.MB1 │ │ │ └── Plist.MB1.dev │ └── uts │ │ └── i386 │ │ ├── boot │ │ ├── mb1 │ │ │ ├── bboot.s │ │ │ ├── bload.c │ │ │ ├── checkbss │ │ │ ├── common.s │ │ │ ├── i214.c │ │ │ ├── i8251.c │ │ │ ├── ifile │ │ │ ├── llib-lboot.c │ │ │ ├── mapfile │ │ │ ├── mb1.mk │ │ │ ├── memsize.c │ │ │ ├── msa.s │ │ │ ├── printf.c │ │ │ ├── prot.s │ │ │ └── touchmem.s │ │ ├── msa │ │ │ └── pboot.c │ │ └── sys │ │ │ └── farcall.h │ │ ├── io │ │ ├── console.c │ │ ├── dma.c │ │ ├── i214.c │ │ ├── i214tp.c │ │ ├── i546.c │ │ ├── i8251.c │ │ ├── io.MBUS.mk │ │ ├── lma.c │ │ ├── physdsk.c │ │ └── ramd.c │ │ ├── master.d │ │ ├── console │ │ │ ├── mdev │ │ │ ├── sdev │ │ │ └── space.c │ │ ├── i214 │ │ │ ├── mdev │ │ │ ├── sdev │ │ │ └── space.c │ │ ├── i214tp │ │ │ ├── mdev │ │ │ └── sdev │ │ ├── i546 │ │ │ ├── init │ │ │ ├── mdev │ │ │ ├── node │ │ │ ├── sdev │ │ │ └── space.c │ │ ├── i8251 │ │ │ ├── mdev │ │ │ ├── sdev │ │ │ └── space.c │ │ ├── lma │ │ │ ├── mdev │ │ │ ├── sdev │ │ │ └── space.c │ │ └── master.MBUS.mk │ │ └── sys │ │ ├── i214.h │ │ ├── i546.h │ │ └── i8251.h └── mbus │ ├── add-on │ ├── pkg.enetdrv │ │ ├── copyright │ │ ├── depend │ │ ├── pkginfo │ │ ├── postinstall │ │ ├── preremove │ │ └── prototype │ ├── pkg.nsu │ │ ├── postinstall │ │ ├── preremove │ │ └── prototype │ ├── pkg.ots │ │ ├── copyright │ │ ├── depend │ │ ├── pkginfo │ │ ├── postinstall │ │ ├── preremove │ │ └── prototype │ └── pkg.xx │ │ └── prototype │ ├── cmd │ ├── .adm │ │ └── i386 │ │ │ ├── gettydefs │ │ │ ├── ttydefs │ │ │ └── ttytype │ ├── autopush │ │ └── i386 │ │ │ └── chan.ap │ ├── bootutils │ │ ├── bootserver.d │ │ │ ├── bootserver.c │ │ │ ├── bootserver.h │ │ │ ├── bootserver.mk │ │ │ ├── config.c │ │ │ └── logfile.c │ │ ├── bootutils.mk │ │ ├── config.d │ │ │ ├── config.520 │ │ │ ├── config.mdp │ │ │ ├── config.mk │ │ │ ├── config.tape │ │ │ ├── pci258.1msrc │ │ │ ├── pci258src │ │ │ ├── stand.cfg.520 │ │ │ └── stand.cfg.mdp │ │ ├── hdformat.d │ │ │ ├── hdformat.c │ │ │ ├── hdformat.mk │ │ │ └── mdl.c │ │ └── sgib.d │ │ │ ├── mkboot.c │ │ │ ├── mkbtblk.c │ │ │ ├── sgib.c │ │ │ ├── sgib.h │ │ │ ├── sgib.mk │ │ │ └── util.c │ ├── ckperms │ │ ├── ckperms.c │ │ ├── ckperms.mk │ │ ├── defs.h │ │ ├── mcsubr.c │ │ └── mkperms.c │ ├── devintf │ │ ├── devintf.mk │ │ └── mkdtab │ │ │ └── mkdtab.c │ ├── disksetup │ │ ├── boot.c │ │ ├── diskadd.sh │ │ └── diskinit.c │ ├── enet │ │ ├── Ina.d │ │ │ ├── Ina.mk │ │ │ ├── ina961.36.Msrc │ │ │ ├── ina961.36src │ │ │ ├── ina961.37.Msrc │ │ │ ├── ina961.37src │ │ │ └── ina961.data.2 │ │ ├── enet.mk │ │ ├── enetinfo.c │ │ ├── enetload.c │ │ ├── enetreset.c │ │ ├── ina961_530.sh │ │ └── ina_530.sh │ ├── format │ │ └── format.c │ ├── initpkg │ │ ├── init.d │ │ │ ├── bootserver │ │ │ ├── firstcheck │ │ │ └── mb2_init │ │ ├── inittab.sh │ │ └── rc2.d │ │ │ └── :mk.rc2.d.sh │ ├── mbusutils │ │ ├── mb2.d │ │ │ ├── cci.d │ │ │ │ ├── 410fw.d │ │ │ │ │ ├── 410.fwsrc │ │ │ │ │ ├── 410fw.mk │ │ │ │ │ ├── 450.fwsrc │ │ │ │ │ ├── common.h │ │ │ │ │ ├── lckld.c │ │ │ │ │ ├── mix.stg2src │ │ │ │ │ ├── mix386.fwsrc │ │ │ │ │ ├── mix450.btsrc │ │ │ │ │ ├── run450.fwsrc │ │ │ │ │ ├── ttyswitch.c │ │ │ │ │ └── utils.c │ │ │ │ ├── bin.d │ │ │ │ │ ├── bin.mk │ │ │ │ │ ├── cci.h │ │ │ │ │ ├── cciattach.c │ │ │ │ │ ├── ccibind.c │ │ │ │ │ ├── ccidetach.c │ │ │ │ │ ├── ccifree.c │ │ │ │ │ ├── ccildinfo.c │ │ │ │ │ ├── ccildlist.c │ │ │ │ │ ├── ccilinfo.c │ │ │ │ │ ├── cciload.c │ │ │ │ │ ├── ccisrvinfo.c │ │ │ │ │ ├── ccisubinfo.c │ │ │ │ │ ├── cciswitch.c │ │ │ │ │ ├── cciunbind.c │ │ │ │ │ ├── common.h │ │ │ │ │ ├── loader.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── msg.c │ │ │ │ │ ├── msg.h │ │ │ │ │ ├── utils.c │ │ │ │ │ └── utils.h │ │ │ │ ├── cci.mk │ │ │ │ ├── dl.d │ │ │ │ │ ├── 410.h │ │ │ │ │ ├── coff.h │ │ │ │ │ ├── com.c │ │ │ │ │ ├── dl.mk │ │ │ │ │ ├── down.c │ │ │ │ │ ├── download.dfl │ │ │ │ │ ├── ext.h │ │ │ │ │ ├── interface.c │ │ │ │ │ ├── lit.h │ │ │ │ │ ├── record.c │ │ │ │ │ ├── trans.h │ │ │ │ │ ├── util.c │ │ │ │ │ └── xprt.h │ │ │ │ ├── example.d │ │ │ │ │ ├── example.csd │ │ │ │ │ ├── example.lit │ │ │ │ │ ├── example.mk │ │ │ │ │ └── example.p86 │ │ │ │ └── server.d │ │ │ │ │ ├── ccisrc │ │ │ │ │ ├── mpifc.libsrc │ │ │ │ │ ├── mpifl.libsrc │ │ │ │ │ ├── rmx.ext │ │ │ │ │ ├── rpifc.libsrc │ │ │ │ │ ├── rpifl.libsrc │ │ │ │ │ └── server.mk │ │ │ ├── i279.d │ │ │ │ ├── i279.mk │ │ │ │ └── menusrc │ │ │ ├── ics.d │ │ │ │ ├── dbon.sh │ │ │ │ ├── ics.mk │ │ │ │ ├── icsgetrec.c │ │ │ │ ├── icsrd.c │ │ │ │ ├── icsslot.c │ │ │ │ ├── icswr.c │ │ │ │ ├── initbp.sh │ │ │ │ └── reset.d │ │ │ │ │ ├── reset.c │ │ │ │ │ ├── reset.h │ │ │ │ │ ├── reset.mk │ │ │ │ │ └── util.c │ │ │ ├── mb2.mk │ │ │ └── tai.d │ │ │ │ ├── examples │ │ │ │ ├── README │ │ │ │ ├── common.c │ │ │ │ ├── ft.h │ │ │ │ ├── makefile │ │ │ │ ├── rec.c │ │ │ │ └── send.c │ │ │ │ └── tai.mk │ │ ├── mbusutils.mk │ │ └── misc.d │ │ │ ├── cpout.c │ │ │ ├── cpunum.c │ │ │ ├── iasyports.c │ │ │ ├── misc.mk │ │ │ ├── mpscnv.l │ │ │ └── qtty │ ├── mt │ │ ├── mt.c │ │ └── mt.mk │ ├── oamintf │ │ └── machinemgmt │ │ │ ├── Makefile │ │ │ └── prtconf.c │ └── ots │ │ ├── ots.mk │ │ ├── otsdebug.c │ │ ├── otsreset.c │ │ └── otsstats.c │ ├── lib │ ├── libbps │ │ ├── libbps.c │ │ └── libbps.mk │ └── libmb2 │ │ ├── _def.h │ │ ├── _mb2_utility.c │ │ ├── icslib.c │ │ ├── libmb2.mk │ │ ├── mb2a_prim.c │ │ └── mb2s_prim.c │ ├── proto │ └── i386 │ │ ├── Plists │ │ ├── Plist.MB2 │ │ ├── Plist.MB2.dev │ │ ├── Plist.base.dev │ │ ├── Plists.mk │ │ └── get-new-plist │ │ ├── kern-install │ │ ├── kernel.mk │ │ ├── mdevice.sed │ │ ├── mtune.sed │ │ └── sdevice.sed │ │ └── mbus │ │ ├── cmd │ │ ├── AD.base │ │ ├── RM.base │ │ ├── addpkg │ │ ├── chan.ap │ │ ├── cmd.mk │ │ ├── disk.dfl │ │ ├── do_slinks │ │ ├── format.menu │ │ ├── format.sh │ │ ├── group │ │ ├── inittab │ │ ├── install.menu │ │ ├── install.sh │ │ ├── ioctl.syscon │ │ ├── lib.func │ │ ├── main.menu │ │ ├── main.sh │ │ ├── mkpkg │ │ ├── passwd │ │ ├── savefile │ │ ├── setup │ │ ├── shadow │ │ └── vfstab │ │ ├── proto.mk │ │ ├── proto.pci │ │ └── proto.tape │ ├── tools │ └── llib-lkernel.c │ └── uts │ └── i386 │ ├── boot │ └── msa │ │ ├── README │ │ ├── bpsmgr.s │ │ ├── bsfread.c │ │ ├── bsmgr.s │ │ ├── cfgfmgr.c │ │ ├── checkbss │ │ ├── disk.c │ │ ├── ics.s │ │ ├── ifile │ │ ├── mapfile │ │ ├── msa.mk │ │ ├── msg.s │ │ ├── omf286.c │ │ ├── omf386.c │ │ ├── pboot.c │ │ ├── pload.c │ │ ├── printf.c │ │ ├── s2main.s │ │ ├── string.c │ │ ├── tapemgr.c │ │ └── util.s │ ├── io │ ├── atcs.c │ ├── bps.c │ ├── cci.c │ ├── clock.c │ ├── console.c │ ├── csmclk.c │ ├── d258.c │ ├── dma.c │ ├── enetdrv │ │ ├── edlina.c │ │ ├── enetdrv.mk │ │ ├── enetl.c │ │ ├── enetm.c │ │ ├── enetrdwri.c │ │ ├── enetutil.c │ │ ├── i530hwdep.c │ │ ├── i530intr.c │ │ ├── iNA961.c │ │ ├── lci.c │ │ └── mhost.c │ ├── i258.c │ ├── i258tp.c │ ├── i350.c │ ├── i354.c │ ├── i410.c │ ├── iasy.c │ ├── ics.c │ ├── io.MBUS.mk │ ├── lp.c │ ├── mb2stai.c │ ├── mb2tsm.c │ ├── mpc.c │ ├── mps.c │ ├── ots │ │ ├── iMB2rd.c │ │ ├── iMB2utils.c │ │ ├── iMB2wri.c │ │ ├── iTLIrd.c │ │ ├── iTLIutils.c │ │ ├── iTLIwri.c │ │ ├── ots.c │ │ ├── ots.mk │ │ ├── otsdg.c │ │ ├── otsintr.c │ │ ├── otsutils.c │ │ └── otswri.c │ └── rci.c │ ├── master.d │ ├── atcs │ │ ├── init │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── bps │ │ ├── mdev │ │ ├── sdev │ │ ├── space.c │ │ └── stubs.c │ ├── cci │ │ ├── mdev │ │ └── sdev │ ├── clock │ │ ├── mdev │ │ ├── node │ │ └── sdev │ ├── console │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── csmclk │ │ ├── mdev │ │ └── sdev │ ├── d258 │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── dma │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── edlina │ │ ├── mdev │ │ ├── node │ │ ├── sdev │ │ └── space.c │ ├── i258 │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── i258tp │ │ ├── mdev │ │ └── sdev │ ├── i350 │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── i354 │ │ ├── init │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── i410 │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── i530 │ │ ├── mdev │ │ ├── node │ │ ├── sdev │ │ └── space.c │ ├── iasy │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── ics │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── init.base │ ├── master.MBUS.mk │ ├── mb2stai │ │ ├── mdev │ │ ├── node │ │ ├── sdev │ │ └── space.c │ ├── mb2tsm │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── mpc │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── mps │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── ots │ │ ├── mdev │ │ ├── node │ │ ├── sdev │ │ └── space.c │ ├── otsdg │ │ ├── mdev │ │ ├── node │ │ └── sdev │ ├── ramd │ │ └── node │ ├── rci │ │ ├── mdev │ │ └── sdev │ └── stune │ ├── os │ └── oem.c │ └── sys │ ├── atcs.h │ ├── atcsmp.h │ ├── bbh.h │ ├── bolt.h │ ├── bps.h │ ├── cci.h │ ├── ccimp.h │ ├── clockcal.h │ ├── edlina.h │ ├── enet.h │ ├── enetuser.h │ ├── i258.h │ ├── i350.h │ ├── i354.h │ ├── i82258.h │ ├── i82530.h │ ├── iasy.h │ ├── ics.h │ ├── ivlab.h │ ├── lcidef.h │ ├── lp_i350.h │ ├── mb2stai.h │ ├── mb2taiusr.h │ ├── mpc.h │ ├── mps.h │ ├── ots.h │ ├── otserror.h │ ├── otsprot.h │ ├── otsuser.h │ ├── rcimp.h │ └── serial.h ├── cmd ├── .adm │ ├── .adm.mk │ ├── .proto │ ├── TIMEZONE │ ├── _sysconfig │ ├── adm │ ├── ascii │ ├── at.allow │ ├── bsetdate │ ├── cleanup │ ├── cron.allow │ ├── cshrc │ ├── dfspace │ ├── filesave.sh │ ├── group │ ├── i386 │ │ ├── _sactab │ │ ├── _sysconfig │ │ ├── adduser.sh │ │ ├── adm │ │ ├── bupsched │ │ ├── checklist │ │ ├── deluser.sh │ │ ├── fd.c │ │ ├── filesave.sh │ │ ├── fsanck │ │ ├── gettydefs │ │ ├── ioctl.syscon │ │ ├── motd │ │ ├── passwd │ │ ├── queuedefs │ │ ├── stdprofile │ │ ├── ttydefs │ │ ├── ttysrch │ │ ├── ttytype │ │ └── uucp │ ├── issue │ ├── profile │ ├── queuedefs │ ├── rc0 │ ├── rc2 │ ├── root │ ├── sys │ └── tapesave.sh ├── acct │ ├── acct.mk │ ├── acct.sh │ ├── acctcms.c │ ├── acctcom.c │ ├── acctcon.c │ ├── acctcon1.c │ ├── acctcon2.c │ ├── acctdef.h │ ├── acctdisk.c │ ├── acctdusg.c │ ├── acctmerg.c │ ├── accton.c │ ├── acctprc.c │ ├── acctprc1.c │ ├── acctprc2.c │ ├── acctwtmp.c │ ├── chargefee.sh │ ├── ckpacct.sh │ ├── closewtmp.c │ ├── ctmp.h │ ├── diskusg.c │ ├── dodisk.sh │ ├── fwtmp.c │ ├── holidays │ ├── lastlogin.sh │ ├── lib │ │ ├── Makefile │ │ ├── copyn.c │ │ ├── devtolin.c │ │ ├── expand.c │ │ ├── lintodev.c │ │ ├── namtouid.c │ │ ├── pnpsplit.c │ │ ├── substr.c │ │ ├── tmless.c │ │ ├── tmsecs.c │ │ └── uidtonam.c │ ├── monacct.sh │ ├── nulladm.sh │ ├── prctmp.sh │ ├── prdaily.sh │ ├── prtacct.sh │ ├── ptecms.awk │ ├── ptelus.awk │ ├── ptmp.h │ ├── remove.sh │ ├── runacct.sh │ ├── shutacct.sh │ ├── startup.sh │ ├── tacct.h │ ├── turnacct.sh │ ├── utmp2wtmp.c │ └── wtmpfix.c ├── adv │ ├── adv.c │ └── adv.mk ├── autopush │ ├── autopush.c │ ├── autopush.mk │ └── i386 │ │ └── chan.ap ├── awk │ ├── awk.g.y │ ├── awk.h │ ├── awk.lx.l │ ├── awk.mk │ ├── b.c │ ├── lib.c │ ├── main.c │ ├── maketab.c │ ├── parse.c │ ├── run.c │ └── tran.c ├── backup │ ├── Backup.sh │ ├── Ignore.sh │ ├── backup.mk │ ├── backup.sh │ └── pwdmenu.c ├── banner │ ├── banner.c │ └── banner.mk ├── basename │ ├── basename.mk │ └── basename.sh ├── bc │ ├── bc.mk │ ├── bc.y │ └── lib.b.data ├── bdiff │ ├── bdiff.c │ └── bdiff.mk ├── bfs │ ├── bfs.c │ └── bfs.mk ├── bkrs │ ├── Prototype │ ├── README │ ├── backup.d │ │ ├── backup.c │ │ ├── bkregvalid.c │ │ ├── hdrs │ │ │ └── errors.h │ │ ├── makefile │ │ ├── msgs.c │ │ ├── print.c │ │ └── queue.c │ ├── basic.d │ │ ├── Help │ │ ├── Makefile │ │ ├── Menu.backup │ │ ├── Text.history │ │ ├── Text.privil │ │ ├── private │ │ │ ├── Form.files │ │ │ ├── Menu.backsel │ │ │ ├── Menu.backusr │ │ │ └── Menu.private │ │ ├── sched │ │ │ ├── Form.add │ │ │ ├── Form.chg │ │ │ ├── Menu.chg │ │ │ ├── Menu.day │ │ │ ├── Menu.del │ │ │ ├── Menu.hour │ │ │ ├── Menu.minute │ │ │ ├── Menu.month │ │ │ ├── Menu.sched │ │ │ ├── Menu.week │ │ │ ├── Text.addcfm │ │ │ ├── Text.already │ │ │ ├── Text.chgcfm │ │ │ ├── Text.delcfm │ │ │ ├── Text.display │ │ │ ├── Text.nocron │ │ │ ├── Text.nodel │ │ │ ├── Text.nosched │ │ │ ├── Text.notape │ │ │ └── Text.privil │ │ └── system │ │ │ ├── Form.files │ │ │ ├── Menu.backsel │ │ │ ├── Menu.backsys │ │ │ ├── Menu.backusr │ │ │ ├── Menu.system │ │ │ └── Menu.users │ ├── bkdaemon.d │ │ ├── bkdaemon.c │ │ ├── control.c │ │ ├── entry.c │ │ ├── eventq.c │ │ ├── events.c │ │ ├── file.c │ │ ├── hdrs │ │ │ └── bkdaemon.h │ │ ├── history.c │ │ ├── incoming.c │ │ ├── labels.c │ │ ├── mail.c │ │ ├── makefile │ │ ├── message.c │ │ ├── method.c │ │ ├── operator.c │ │ ├── owner.c │ │ ├── proc.c │ │ ├── queue.c │ │ ├── space.c │ │ ├── status.c │ │ ├── table.c │ │ └── utils.c │ ├── bkexcept.d │ │ ├── bkexcept.c │ │ ├── exconv.com │ │ ├── exconv.sed │ │ ├── hdrs │ │ │ └── errors.h │ │ ├── makefile │ │ ├── msgs.c │ │ └── table │ ├── bkhistory.d │ │ ├── bkhistory.c │ │ ├── hdrs │ │ │ └── errors.h │ │ ├── makefile │ │ └── msgs.c │ ├── bkintf.d │ │ ├── Makefile │ │ └── backups │ │ │ ├── 08455426588.mi │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── backup.menu │ │ │ ├── backup │ │ │ ├── Form.backup │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── Text.bkpnok │ │ │ └── Text.bkpok │ │ │ ├── bkhist │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── bkhist.menu │ │ │ ├── full │ │ │ │ ├── Form.full │ │ │ │ ├── Form.oldfile │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Text.bkherr │ │ │ │ ├── Text.bkhok │ │ │ │ └── Text.full │ │ │ ├── limit │ │ │ │ ├── Form.limit │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Text.limnok │ │ │ │ └── Text.limok │ │ │ └── select │ │ │ │ ├── Form.oldfile │ │ │ │ ├── Form.select │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Text.bkherr │ │ │ │ ├── Text.bkhok │ │ │ │ └── Text.select │ │ │ ├── bkoper │ │ │ ├── Form.bkoper │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── Text.bjpnok │ │ │ └── Text.bjpok │ │ │ ├── bkrem │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── add │ │ │ │ ├── Form.add │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Text.addnok │ │ │ │ └── Text.addok │ │ │ ├── bkrem.menu │ │ │ ├── display │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ └── Text.display │ │ │ ├── modify │ │ │ │ ├── Form.modify │ │ │ │ ├── Form.values │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Text.modify │ │ │ │ ├── Text.modnok │ │ │ │ └── Text.modok │ │ │ └── remove │ │ │ │ ├── Form.remove │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Text.remnok │ │ │ │ ├── Text.remok │ │ │ │ └── Text.remove │ │ │ ├── bksched │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── add │ │ │ │ ├── Form.add │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Text.addnok │ │ │ │ └── Text.addok │ │ │ ├── bksched.menu │ │ │ ├── display │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ └── Text.display │ │ │ ├── modify │ │ │ │ ├── Form.modify │ │ │ │ ├── Form.values │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Text.modify │ │ │ │ ├── Text.modnok │ │ │ │ └── Text.modok │ │ │ └── remove │ │ │ │ ├── Form.remove │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Text.remnok │ │ │ │ ├── Text.remok │ │ │ │ └── Text.remove │ │ │ ├── bksetup │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── add │ │ │ │ ├── Form.add │ │ │ │ ├── Form.add2 │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Menu.methods │ │ │ │ ├── Text.addnok │ │ │ │ └── Text.addok │ │ │ ├── bksetup.menu │ │ │ ├── except │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── add │ │ │ │ │ ├── Form.add │ │ │ │ │ ├── Help │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Text.addnok │ │ │ │ │ └── Text.addok │ │ │ │ ├── display │ │ │ │ │ ├── Form.display │ │ │ │ │ ├── Help │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Text.display │ │ │ │ │ └── Text.errs │ │ │ │ ├── except.menu │ │ │ │ └── remove │ │ │ │ │ ├── Form.remove │ │ │ │ │ ├── Help │ │ │ │ │ ├── Makefile │ │ │ │ │ └── Text.remove │ │ │ ├── full │ │ │ │ ├── Form.full │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Text.errs │ │ │ │ └── Text.full │ │ │ ├── modify │ │ │ │ ├── Form.modify │ │ │ │ ├── Form.values │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ └── Menu.methods │ │ │ ├── remove │ │ │ │ ├── Form.remove │ │ │ │ ├── Form.values │ │ │ │ ├── Help │ │ │ │ └── Makefile │ │ │ ├── rotation │ │ │ │ ├── Form.rotate │ │ │ │ ├── Form.values │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Text.rotnok │ │ │ │ └── Text.rotok │ │ │ └── summary │ │ │ │ ├── Form.summary │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Text.errs │ │ │ │ └── Text.summary │ │ │ ├── bkstat │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── bkstat.menu │ │ │ ├── full │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ └── Text.full │ │ │ ├── limit │ │ │ │ ├── Form.limit │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Text.limnok │ │ │ │ └── Text.limok │ │ │ ├── modify │ │ │ │ ├── Form.control │ │ │ │ ├── Form.modify │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Text.modnok │ │ │ │ └── Text.modok │ │ │ └── select │ │ │ │ ├── Form.select │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Menu.states │ │ │ │ ├── Text.errs │ │ │ │ └── Text.select │ │ │ └── ext.menu │ ├── bklib.d │ │ ├── argv.c │ │ ├── bkdates.c │ │ ├── bkerror.c │ │ ├── bkgetchars.c │ │ ├── bkisjob.c │ │ ├── bkparse.c │ │ ├── bkpath.c │ │ ├── bkprint.c │ │ ├── bkrot.c │ │ ├── bkrotate.c │ │ ├── bkrsdates.dat │ │ ├── bkspawn.c │ │ ├── bkst_today.c │ │ ├── bkstrcmp.c │ │ ├── bkstrdup.c │ │ ├── bkstrncpy.c │ │ ├── bkstrtok.c │ │ ├── bkutils.c │ │ ├── bld_ddev.c │ │ ├── brerrno.c │ │ ├── brgetdate.c │ │ ├── device.c │ │ ├── format.c │ │ ├── jobidtopid.c │ │ └── makefile │ ├── bkoper.d │ │ ├── bkoper.c │ │ ├── hdrs │ │ │ ├── bkoper.h │ │ │ ├── errors.h │ │ │ └── msgs.h │ │ ├── list.c │ │ ├── makefile │ │ ├── msgs.c │ │ └── utils.c │ ├── bkreg.d │ │ ├── bkreg.c │ │ ├── hdrs │ │ │ └── errors.h │ │ ├── makefile │ │ ├── msgs.c │ │ ├── oam │ │ └── table │ ├── bkrs.mk │ ├── bkstatus.d │ │ ├── bkstatus.c │ │ ├── hdrs │ │ │ └── errors.h │ │ ├── makefile │ │ └── msgs.c │ ├── hdrs │ │ ├── backup.h │ │ ├── bkerrors.h │ │ ├── bkexcept.h │ │ ├── bkhist.h │ │ ├── bkmsgs.h │ │ ├── bkoper.h │ │ ├── bkpaths.h │ │ ├── bkreg.h │ │ ├── bkstatus.h │ │ ├── bktypes.h │ │ ├── brarc.h │ │ ├── brtoc.h │ │ ├── libadmIO.h │ │ ├── restore.h │ │ ├── rsmethod.h │ │ ├── rsnotify.h │ │ ├── rsstatus.h │ │ └── rsstrat.h │ ├── intftools.d │ │ ├── add.sh │ │ ├── bkhfull.sh │ │ ├── bkhsel.sh │ │ ├── bkhtofile.sh │ │ ├── bkid.c │ │ ├── bkmadd.sh │ │ ├── bkmsg.sh │ │ ├── bkregdisp.sh │ │ ├── bkregmsgs.c │ │ ├── bkregpath.sh │ │ ├── bkregvals.c │ │ ├── bksadd.sh │ │ ├── bkscddisp.sh │ │ ├── bkschg.sh │ │ ├── bkssel.sh │ │ ├── bkup.sh │ │ ├── brfindtab.c │ │ ├── change.sh │ │ ├── chgmsg.sh │ │ ├── chgscd.sh │ │ ├── cpmsgs.c │ │ ├── cron_parse.c │ │ ├── delscd.sh │ │ ├── errdays.sh │ │ ├── errnewtag.sh │ │ ├── erroldtag.sh │ │ ├── errweeks.sh │ │ ├── full.sh │ │ ├── get_rotvals.c │ │ ├── getrpd.sh │ │ ├── hdrs │ │ │ ├── bkregerrs.h │ │ │ ├── cperrs.h │ │ │ └── rot_errs.h │ │ ├── makefile │ │ ├── newtag.sh │ │ ├── oldtag.sh │ │ ├── rconvdate.c │ │ ├── rest.sh │ │ ├── rot_msgs.c │ │ ├── rsid.c │ │ ├── rsop.sh │ │ ├── rsschg.sh │ │ ├── rsstat.sh │ │ ├── summary.sh │ │ ├── tag_exists.c │ │ ├── valbkids.sh │ │ ├── valdays.sh │ │ ├── validdate.c │ │ ├── validdays.c │ │ ├── validmons.c │ │ ├── validweeks.c │ │ ├── valmeth.sh │ │ ├── valmonths.sh │ │ ├── valpaths.sh │ │ ├── valrpath.sh │ │ ├── valrsids.sh │ │ ├── valusers.sh │ │ └── valweeks.sh │ ├── libadmIO.d │ │ ├── libadmIO.c │ │ └── makefile │ ├── libbrmeth.d │ │ ├── argv.c │ │ ├── bkgetvol.c │ │ ├── bkhdr.c │ │ ├── bkipc.c │ │ ├── bkstate.c │ │ ├── br_read_hdr.c │ │ ├── brcontrol.c │ │ ├── brestimate.c │ │ ├── brgetvolume.c │ │ ├── brhistory.c │ │ ├── brinit.c │ │ ├── brinvlbls.c │ │ ├── brio.c │ │ ├── brlog.c │ │ ├── brpath.c │ │ ├── brreturn.c │ │ ├── brsnddot.c │ │ ├── brsndfname.c │ │ ├── brspace.c │ │ ├── brtoc.c │ │ ├── makefile │ │ ├── rsgethdr.c │ │ ├── rsreturn.c │ │ └── rstoc.c │ ├── meth.d │ │ ├── bk_system.c │ │ ├── bkcpio.c │ │ ├── bkfdisk.c │ │ ├── bknewvol.c │ │ ├── bkopt.c │ │ ├── bld_except.c │ │ ├── cmdargs.c │ │ ├── do_file.c │ │ ├── doresult.c │ │ ├── fdisk.c │ │ ├── file_req.c │ │ ├── fimage.c │ │ ├── find.c │ │ ├── fsarg_check.c │ │ ├── hdrs │ │ │ └── method.h │ │ ├── iback.c │ │ ├── incfile.c │ │ ├── io.c │ │ ├── irest.c │ │ ├── last_date.c │ │ ├── makefile │ │ ├── mback.c │ │ ├── methutil.c │ │ ├── mi_init.c │ │ ├── migration.c │ │ ├── nxt_media.c │ │ ├── open_tc.c │ │ ├── rsfdisk.c │ │ ├── rsnewvol.c │ │ ├── rsutil.c │ │ └── sum.c │ ├── rbasic.d │ │ ├── Help │ │ ├── Makefile │ │ ├── Menu.restore │ │ ├── Text.privil │ │ ├── private │ │ │ ├── Form.overwr │ │ │ ├── Form.overwr2 │ │ │ ├── Menu.device │ │ │ ├── Menu.device2 │ │ │ ├── Menu.private │ │ │ └── Menu.select │ │ └── system │ │ │ ├── Form.overwr │ │ │ ├── Form.overwr2 │ │ │ ├── Menu.device │ │ │ ├── Menu.device2 │ │ │ ├── Menu.select │ │ │ └── Menu.system │ ├── rcmds.d │ │ ├── Ckdev.c │ │ ├── Makefile │ │ ├── add_cron.sh │ │ ├── chg_cron.c │ │ ├── del_cron.c │ │ ├── display.c │ │ ├── filechk.sh │ │ ├── filemsg.sh │ │ ├── format.c │ │ ├── getchg.c │ │ ├── getdel.c │ │ ├── owrchk.sh │ │ ├── prtask.c │ │ ├── runbackf.sh │ │ ├── runbacku.sh │ │ ├── runstore.sh │ │ ├── runstore2.sh │ │ ├── setquote.c │ │ ├── slash.c │ │ └── ts_valid.c │ ├── restore.d │ │ ├── auto.c │ │ ├── cancel.c │ │ ├── file.c │ │ ├── hdrs │ │ │ ├── errors.h │ │ │ └── rs.h │ │ ├── mail.c │ │ ├── makefile │ │ ├── msgs.c │ │ ├── request.c │ │ ├── restore.c │ │ ├── utils.c │ │ └── view.c │ ├── rsintf.d │ │ ├── Makefile │ │ └── restores │ │ │ ├── 16122026388.mi │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── ext.menu │ │ │ ├── restore.menu │ │ │ ├── restore │ │ │ ├── Form.restore │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── Text.err │ │ │ └── Text.rest │ │ │ ├── rsoper │ │ │ ├── Form.rsoper │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── Menu.methods │ │ │ ├── Text.err │ │ │ └── Text.rsoper │ │ │ ├── rsstat │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── full │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ └── Text.full │ │ │ ├── modify │ │ │ │ ├── Form.modify │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Text.modnok │ │ │ │ └── Text.modok │ │ │ ├── rsstat.menu │ │ │ └── select │ │ │ │ ├── Form.select │ │ │ │ ├── Help │ │ │ │ ├── Makefile │ │ │ │ ├── Text.errs │ │ │ │ └── Text.select │ │ │ └── setup │ │ │ ├── Form.setup │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── Text.setnok │ │ │ └── Text.setok │ ├── rslib.d │ │ ├── gethdr.c │ │ ├── hdrs │ │ │ └── rstm.h │ │ ├── makefile │ │ ├── queue.c │ │ ├── rsfile.c │ │ ├── rsmethod.tab │ │ ├── rsspawn.c │ │ ├── rsstrat.c │ │ ├── rsstrat.tab │ │ ├── rstest.c │ │ ├── rstm.c │ │ └── rstree.c │ ├── rsnotify.d │ │ ├── hdrs │ │ │ └── errors.h │ │ ├── makefile │ │ ├── msgs.c │ │ └── rsnotify.c │ ├── rsoper.d │ │ ├── auto.c │ │ ├── cancel.c │ │ ├── entry.c │ │ ├── hdrs │ │ │ ├── errors.h │ │ │ └── rsoper.h │ │ ├── list.c │ │ ├── mail.c │ │ ├── makefile │ │ ├── msgs.c │ │ ├── parse.c │ │ ├── rsoper.c │ │ ├── rsspawn.c │ │ └── utils.c │ ├── rsstatus.d │ │ ├── admin_auth.c │ │ ├── hdrs │ │ │ └── errors.h │ │ ├── makefile │ │ ├── msgs.c │ │ └── rsstatus.c │ └── tmeth.d │ │ ├── event.c │ │ ├── makefile │ │ ├── method.h │ │ └── tmeth.c ├── bnu.admin │ ├── Form.acudev │ ├── Form.acudev1 │ ├── Form.acudev2 │ ├── Form.acudev3 │ ├── Form.acudev4 │ ├── Form.acudev5 │ ├── Form.acusys │ ├── Form.adddev │ ├── Form.addpoll │ ├── Form.addsys │ ├── Form.cf_adev │ ├── Form.cf_apoll │ ├── Form.cf_asys │ ├── Form.cf_rdev │ ├── Form.cf_rpoll │ ├── Form.cf_rsys │ ├── Form.dirdev │ ├── Form.dirsys │ ├── Form.listdev │ ├── Form.listpoll │ ├── Form.listsys │ ├── Form.othdev │ ├── Form.othsys │ ├── Form.rmdev │ ├── Form.rmpoll │ ├── Form.rmsys │ ├── Form.streams │ ├── Form.tlisdev │ ├── Form.tlissys │ ├── Helpbnu │ ├── Helpdev │ ├── Helpdev_a │ ├── Helpdev_l │ ├── Helpdev_r │ ├── Helpol │ ├── Helpol_a │ ├── Helpol_l │ ├── Helpol_r │ ├── Helpset │ ├── Helpset_a │ ├── Helsys │ ├── Helsys_a │ ├── Helsys_l │ ├── Helsys_r │ ├── Menu.acu │ ├── Menu.devname │ ├── Menu.devtype │ ├── Menu.lsdev │ ├── Menu.lsdev_1 │ ├── Menu.lsdev_2 │ ├── Menu.lsdev_all │ ├── Menu.lspoll │ ├── Menu.lspoll_a │ ├── Menu.lssys │ ├── Menu.lssys_all │ ├── Menu.modtype │ ├── Menu.ports │ ├── Menu.psysname │ ├── Menu.rmdev │ ├── Menu.rmdev_1 │ ├── Menu.rmdev_2 │ ├── Menu.rmdev_all │ ├── Menu.rmpoll │ ├── Menu.rmpoll_a │ ├── Menu.rmsys │ ├── Menu.rmsys_all │ ├── Menu.setup │ ├── Menu.sysname │ ├── Prototype │ ├── Text.anok │ ├── Text.aok │ ├── Text.rmnok │ ├── Text.rmok │ ├── bnu.admin.mk │ ├── bnu.menu │ ├── bnunotab │ ├── bnuset │ ├── delentry │ ├── devices.menu │ ├── netserve.menu │ ├── polling.menu │ ├── setup.menu │ ├── systems.menu │ ├── uniqport │ ├── validhour │ ├── validls │ ├── validname │ ├── validnetaddr │ ├── validphone │ ├── validport │ └── validsys ├── bnu │ ├── Config │ ├── Cvt │ ├── Devconfig │ ├── Devices │ ├── Dialcodes │ ├── Dialers │ ├── Grades │ ├── Install │ ├── Limits │ ├── Permissions │ ├── Poll │ ├── README │ ├── SetUp │ ├── Sysfiles │ ├── Systems │ ├── Teardown │ ├── Uutry │ ├── account.c │ ├── altconn.c │ ├── anlwrk.c │ ├── bnu.mk │ ├── bnuconvert.c │ ├── callers.c │ ├── chremdir.c │ ├── cntrl.c │ ├── conn.c │ ├── cpmv.c │ ├── ct.c │ ├── cu.c │ ├── dial.c │ ├── dial.h │ ├── dial.mk │ ├── dio.c │ ├── dk.h │ ├── dkbreak.c │ ├── dkdial.c │ ├── dkerr.c │ ├── dkminor.c │ ├── dtnamer.c │ ├── eio.c │ ├── expfile.c │ ├── gename.c │ ├── getargs.c │ ├── getopt.c │ ├── getprm.c │ ├── getpwinfo.c │ ├── gio.c │ ├── gnamef.c │ ├── gnxseq.c │ ├── grades.c │ ├── gtcfile.c │ ├── gwd.c │ ├── imsg.c │ ├── interface.c │ ├── limits.c │ ├── line.c │ ├── log.h │ ├── logent.c │ ├── mailst.c │ ├── parms.h │ ├── perfstat.c │ ├── permission.c │ ├── pk.h │ ├── pk0.c │ ├── pk1.c │ ├── pkdefs.c │ ├── security.c │ ├── shio.c │ ├── statlog.c │ ├── stoa.c │ ├── strecpy.c │ ├── strpbrk.c │ ├── strsave.c │ ├── sysexits.h │ ├── sysfiles.c │ ├── sysfiles.h │ ├── systat.c │ ├── ulockf.c │ ├── unknown.c │ ├── utility.c │ ├── uucheck.c │ ├── uucico.c │ ├── uucleanup.c │ ├── uucp.c │ ├── uucp.h │ ├── uucpdefs.c │ ├── uucpname.c │ ├── uudecode.c │ ├── uudemon.admin │ ├── uudemon.cleanup │ ├── uudemon.hour │ ├── uudemon.poll │ ├── uuencode.c │ ├── uugetty.c │ ├── uuglist.c │ ├── uulog │ ├── uuname.c │ ├── uupick │ ├── uusched.c │ ├── uustat.c │ ├── uuto │ ├── uux.c │ ├── uuxqt.c │ ├── versys.c │ ├── xio.c │ └── xqt.c ├── cal │ ├── cal.c │ └── cal.mk ├── calendar │ ├── calendar.mk │ ├── calendar.sh │ └── calprog.c ├── cat │ ├── a.out │ ├── cat.c │ └── cat.mk ├── cb │ ├── cb.c │ └── cb.mk ├── cfgintf │ ├── Prototype │ ├── cfgintf.mk │ ├── summary │ │ ├── Help │ │ ├── Text.summary │ │ ├── maxcol.awk │ │ └── summary.mk │ └── system │ │ ├── Help │ │ ├── Text.system │ │ └── system.mk ├── cfgmgmt │ ├── Help │ ├── Prototype │ ├── cfgmgmt.menu │ └── cfgmgmt.mk ├── cflow │ ├── README │ ├── cflow.mk │ ├── cflow.sh │ ├── dag.c │ ├── flip.c │ ├── lpfx.c │ └── nmf.c ├── checkeq │ ├── checkeq.c │ └── checkeq.mk ├── chgrp │ ├── chgrp.c │ └── chgrp.mk ├── chmod │ ├── chmod.c │ └── chmod.mk ├── chown │ ├── chown.c │ └── chown.mk ├── chroot │ ├── chroot.c │ └── chroot.mk ├── ckbupscd │ ├── ckbupscd.c │ └── ckbupscd.mk ├── clear │ ├── clear.mk │ └── clear.sh ├── cmd-inet │ ├── cmd-inet.mk │ ├── etc │ │ ├── etc.mk │ │ ├── hosts │ │ ├── inetd.conf │ │ ├── init.d │ │ │ └── inetinit │ │ ├── named.boot │ │ ├── networks │ │ ├── protocols │ │ ├── rc.inet │ │ ├── services │ │ ├── shells │ │ └── strcf │ ├── usr.bin │ │ ├── finger.c │ │ ├── ftp │ │ │ ├── cmds.c │ │ │ ├── cmdtab.c │ │ │ ├── domacro.c │ │ │ ├── ftp.c │ │ │ ├── ftp.mk │ │ │ ├── ftp_var.h │ │ │ ├── getpass.c │ │ │ ├── glob.c │ │ │ ├── main.c │ │ │ ├── pclose.c │ │ │ └── ruserpass.c │ │ ├── netstat │ │ │ ├── if.c │ │ │ ├── inet.c │ │ │ ├── main.c │ │ │ ├── netstat.mk │ │ │ ├── route.c │ │ │ └── unix.c │ │ ├── rcp.c │ │ ├── rdate.c │ │ ├── rlogin.c │ │ ├── rsh.c │ │ ├── ruptime.c │ │ ├── rwho.c │ │ ├── talk │ │ │ ├── ctl.c │ │ │ ├── ctl.h │ │ │ ├── ctl_transact.c │ │ │ ├── display.c │ │ │ ├── get_addrs.c │ │ │ ├── get_names.c │ │ │ ├── init_disp.c │ │ │ ├── invite.c │ │ │ ├── io.c │ │ │ ├── look_up.c │ │ │ ├── msgs.c │ │ │ ├── talk.c │ │ │ ├── talk.h │ │ │ ├── talk.mk │ │ │ └── talk_ctl.h │ │ ├── telnet.c │ │ ├── tftp │ │ │ ├── main.c │ │ │ ├── tftp.c │ │ │ ├── tftp.mk │ │ │ └── tftpsubs.c │ │ ├── usr.bin.mk │ │ └── whois.c │ └── usr.sbin │ │ ├── arp.c │ │ ├── gettable.c │ │ ├── htable │ │ ├── htable.c │ │ ├── htable.h │ │ ├── htable.mk │ │ ├── parse.y │ │ └── scan.l │ │ ├── ifconfig.c │ │ ├── in.bootp │ │ ├── bootp.h │ │ ├── bootpd.c │ │ ├── bootpd.h │ │ ├── bootptab │ │ ├── hash.c │ │ ├── hash.h │ │ ├── in.bootp.mk │ │ └── readfile.c │ │ ├── in.comsat.c │ │ ├── in.fingerd.c │ │ ├── in.ftpd │ │ ├── ftpcmd.y │ │ ├── ftpd.c │ │ ├── getusershell.c │ │ ├── in.ftpd.mk │ │ ├── logwtmp.c │ │ ├── popen.c │ │ └── vers.c │ │ ├── in.named │ │ ├── db.h │ │ ├── db_dump.c │ │ ├── db_load.c │ │ ├── db_lookup.c │ │ ├── db_reload.c │ │ ├── db_save.c │ │ ├── db_update.c │ │ ├── in.named.mk │ │ ├── ns.h │ │ ├── ns_forw.c │ │ ├── ns_init.c │ │ ├── ns_main.c │ │ ├── ns_maint.c │ │ ├── ns_req.c │ │ ├── ns_resp.c │ │ ├── ns_sort.c │ │ ├── tools │ │ │ ├── nslookup │ │ │ │ ├── commands.l │ │ │ │ ├── debug.c │ │ │ │ ├── getinfo.c │ │ │ │ ├── list.c │ │ │ │ ├── main.c │ │ │ │ ├── nslookup.help │ │ │ │ ├── nslookup.mk │ │ │ │ ├── res.h │ │ │ │ ├── send.c │ │ │ │ ├── skip.c │ │ │ │ └── subr.c │ │ │ ├── nstest.c │ │ │ └── tools.mk │ │ └── version.c │ │ ├── in.rarpd.c │ │ ├── in.rexecd.c │ │ ├── in.rlogind.c │ │ ├── in.routed │ │ ├── af.c │ │ ├── af.h │ │ ├── defs.h │ │ ├── if.c │ │ ├── in.routed.mk │ │ ├── inet.c │ │ ├── input.c │ │ ├── interface.h │ │ ├── main.c │ │ ├── output.c │ │ ├── protocol.h │ │ ├── startup.c │ │ ├── table.h │ │ ├── tables.c │ │ ├── timer.c │ │ ├── tools │ │ │ ├── query.c │ │ │ └── trace.c │ │ ├── trace.c │ │ └── trace.h │ │ ├── in.rshd.c │ │ ├── in.rwhod.c │ │ ├── in.talkd │ │ ├── announce.c │ │ ├── ctl.h │ │ ├── in.talkd.c │ │ ├── in.talkd.mk │ │ ├── print.c │ │ ├── process.c │ │ └── table.c │ │ ├── in.telnetd.c │ │ ├── in.tftpd.c │ │ ├── in.tnamed.c │ │ ├── inetd.c │ │ ├── ping.c │ │ ├── route.c │ │ ├── slink │ │ ├── builtin.c │ │ ├── defs.h │ │ ├── exec.c │ │ ├── main.c │ │ ├── parse.c │ │ ├── slink.l │ │ └── slink.mk │ │ ├── trpt.c │ │ └── usr.sbin.mk ├── cmp │ ├── cmp.c │ └── cmp.mk ├── col │ ├── col.c │ └── col.mk ├── comm │ ├── comm.c │ └── comm.mk ├── compress │ ├── compress.c │ └── compress.mk ├── conv-cmd │ ├── conv-cmd.mk │ └── ttyconv.c ├── copy │ ├── copy.c │ └── copy.mk ├── cpio │ ├── cpio.c │ ├── cpio.h │ ├── cpio.mk │ └── cpiostat.c ├── cpiopc │ ├── cpiopc.c │ └── cpiopc.mk ├── cpset │ ├── cpset.c │ └── cpset.mk ├── crash │ ├── async.c │ ├── base.c │ ├── buf.c │ ├── callout.c │ ├── class.c │ ├── crash.h │ ├── crash.mk │ ├── dis.c │ ├── dis.h │ ├── disp.c │ ├── events.c │ ├── i386.c │ ├── init.c │ ├── inode.c │ ├── kma.c │ ├── lck.c │ ├── ldsysdump.sh │ ├── main.c │ ├── map.c │ ├── memsize.c │ ├── page.c │ ├── prnode.c │ ├── proc.c │ ├── pty.c │ ├── resource.c │ ├── rfs.c │ ├── rt.c │ ├── search.c │ ├── size.c │ ├── sizenet.c │ ├── snode.c │ ├── stat.c │ ├── stream.c │ ├── symtab.c │ ├── ts.c │ ├── tty.c │ ├── u.c │ ├── ufs_inode.c │ ├── util.c │ ├── var.c │ ├── vfs.c │ ├── vfssw.c │ └── vtop.c ├── cron │ ├── at.c │ ├── atq.c │ ├── atrm.c │ ├── att1.y │ ├── att2.ed │ ├── att2.l │ ├── batch.sh │ ├── cron.c │ ├── cron.dfl │ ├── cron.h │ ├── cron.mk │ ├── crontab.c │ ├── elm.c │ ├── funcs.c │ ├── logchecker.sh │ └── permit.c ├── cscope │ ├── common │ │ ├── alloc.c │ │ ├── basename.c │ │ ├── command.c │ │ ├── compath.c │ │ ├── constants.h │ │ ├── crossref.c │ │ ├── dir.c │ │ ├── display.c │ │ ├── edit.c │ │ ├── egrep.y │ │ ├── emacs.e │ │ ├── exec.c │ │ ├── find.c │ │ ├── getwd.c │ │ ├── global.h │ │ ├── gmacs.ml │ │ ├── help.c │ │ ├── history.c │ │ ├── input.c │ │ ├── library.h │ │ ├── logdir.c │ │ ├── lookup.c │ │ ├── main.c │ │ ├── mouse.c │ │ ├── mygetenv.c │ │ ├── mypopen.c │ │ ├── scanner.l │ │ ├── version.h │ │ ├── vp.h │ │ ├── vpaccess.c │ │ ├── vpfopen.c │ │ └── vpinit.c │ └── cscope.mk ├── csh │ ├── alloc.c │ ├── bcopy.c │ ├── bzero.c │ ├── csh.mk │ ├── dir2.h │ ├── gethostname.c │ ├── getpagesize.c │ ├── getrusage.c │ ├── getwd.c │ ├── index.c │ ├── killpg.c │ ├── owait.h │ ├── param.h │ ├── printf.c │ ├── resource.h │ ├── rindex.c │ ├── setjmp.c │ ├── setjmp.h │ ├── setpgrp.c │ ├── setpriority.c │ ├── sh.c │ ├── sh.char.c │ ├── sh.char.h │ ├── sh.debug.c │ ├── sh.dir.c │ ├── sh.dir.h │ ├── sh.dol.c │ ├── sh.err.c │ ├── sh.exec.c │ ├── sh.exp.c │ ├── sh.file.c │ ├── sh.func.c │ ├── sh.glob.c │ ├── sh.h │ ├── sh.hist.c │ ├── sh.init.c │ ├── sh.lex.c │ ├── sh.local.h │ ├── sh.misc.c │ ├── sh.parse.c │ ├── sh.print.c │ ├── sh.proc.c │ ├── sh.proc.h │ ├── sh.sem.c │ ├── sh.set.c │ ├── sh.tchar.c │ ├── sh.tconst.c │ ├── sh.tconst.h │ ├── sh.time.c │ ├── signal.c │ ├── signal.h │ ├── stubs.c │ ├── vfork.h │ └── wait3.c ├── csplit │ ├── csplit.c │ └── csplit.mk ├── ctrace │ ├── constants.h │ ├── ctcr │ ├── ctrace.mk │ ├── global.h │ ├── lookup.c │ ├── main.c │ ├── parser.y │ ├── runtime.c │ ├── scanner.l │ └── trace.c ├── cut │ ├── cut.c │ └── cut.mk ├── cxref │ ├── cxref.c │ ├── cxref.h │ ├── cxref.mk │ ├── cxref.sh │ └── st.c ├── date │ ├── date.c │ └── date.mk ├── dbfconv │ ├── dbfconv.c │ ├── dbfconv.mk │ ├── local.h │ └── nlsstr.c ├── dc │ ├── dc.c │ ├── dc.h │ └── dc.mk ├── dd │ ├── dd.c │ └── dd.mk ├── deroff │ ├── deroff.c │ └── deroff.mk ├── devintf │ ├── Prototype │ ├── devices │ │ ├── Help │ │ ├── add │ │ │ ├── Form.add │ │ │ ├── Help │ │ │ ├── Text.c_add │ │ │ └── add.mk │ │ ├── attrs │ │ │ ├── Help │ │ │ ├── add │ │ │ │ ├── Form.add │ │ │ │ ├── Help │ │ │ │ ├── Text.c_add │ │ │ │ └── add.mk │ │ │ ├── attrs.menu │ │ │ ├── attrs.mk │ │ │ ├── list │ │ │ │ ├── Form.list │ │ │ │ ├── Help │ │ │ │ ├── Text.list │ │ │ │ ├── fmt.awk │ │ │ │ ├── list.mk │ │ │ │ └── maxcol.awk │ │ │ ├── modify │ │ │ │ ├── Form.modify │ │ │ │ ├── Help │ │ │ │ ├── Text.c_modify │ │ │ │ └── modify.mk │ │ │ └── remove │ │ │ │ ├── Form.remove │ │ │ │ ├── Help │ │ │ │ ├── Text.c_rem │ │ │ │ └── remove.mk │ │ ├── devices.menu │ │ ├── devices.mk │ │ ├── list │ │ │ ├── Help │ │ │ ├── Text.list │ │ │ └── list.mk │ │ ├── remove │ │ │ ├── Form.remove │ │ │ ├── Help │ │ │ ├── Text.c_remove │ │ │ └── remove.mk │ │ └── reserve │ │ │ ├── Help │ │ │ ├── free │ │ │ ├── Form.free │ │ │ ├── Help │ │ │ ├── Text.c_free │ │ │ ├── free.mk │ │ │ └── getkey │ │ │ ├── list │ │ │ ├── Help │ │ │ ├── Text.list │ │ │ └── list.mk │ │ │ ├── reserve.menu │ │ │ ├── reserve.mk │ │ │ └── reserve │ │ │ ├── Form.reserve │ │ │ ├── Help │ │ │ ├── Text.c_rsv │ │ │ ├── listavails │ │ │ └── reserve.mk │ ├── devintf.mk │ ├── groups │ │ ├── Help │ │ ├── add │ │ │ ├── Form.add │ │ │ ├── Help │ │ │ ├── Text.c_add │ │ │ └── add.mk │ │ ├── groups.menu │ │ ├── groups.mk │ │ ├── list │ │ │ ├── Help │ │ │ ├── Text.list │ │ │ └── list.mk │ │ ├── mbrship │ │ │ ├── Help │ │ │ ├── add │ │ │ │ ├── Form.add │ │ │ │ ├── Help │ │ │ │ ├── Text.c_add │ │ │ │ ├── add.mk │ │ │ │ ├── xisinlist │ │ │ │ └── xorlists │ │ │ ├── list │ │ │ │ ├── Form.list │ │ │ │ ├── Help │ │ │ │ ├── Text.list │ │ │ │ ├── Text.none │ │ │ │ ├── list.mk │ │ │ │ └── maxcol.awk │ │ │ ├── mbrship.menu │ │ │ ├── mbrship.mk │ │ │ └── remove │ │ │ │ ├── Form.remove │ │ │ │ ├── Help │ │ │ │ ├── Text.c_remove │ │ │ │ ├── remove.mk │ │ │ │ └── xisinlist │ │ └── remove │ │ │ ├── Form.remove │ │ │ ├── Help │ │ │ ├── Text.c_remove │ │ │ └── remove.mk │ └── mkdtab │ │ ├── mkdtab.c │ │ ├── mkdtab.h │ │ └── mkdtab.mk ├── devmgmt │ ├── Prototype │ ├── confck │ │ ├── confck.mk │ │ └── main.c │ ├── data │ │ ├── data.mk │ │ ├── device.tab │ │ └── dgroup.tab │ ├── devattr │ │ ├── devattr.mk │ │ └── main.c │ ├── devfree │ │ ├── devfree.mk │ │ └── main.c │ ├── devmgmt.mk │ ├── devreserv │ │ ├── devreserv.mk │ │ └── main.c │ ├── getdev │ │ ├── getdev.mk │ │ └── main.c │ ├── getdgrp │ │ ├── getdgrp.mk │ │ └── main.c │ ├── getvol │ │ ├── getvol.c │ │ └── getvol.mk │ ├── listdgrp │ │ ├── listdgrp.mk │ │ └── main.c │ ├── putdev │ │ ├── main.c │ │ └── putdev.mk │ └── putdgrp │ │ ├── main.c │ │ └── putdgrp.mk ├── dfs.cmds │ ├── dfs.cmds.mk │ ├── dfshares │ │ ├── dfshares.c │ │ └── dfshares.mk │ ├── general │ │ ├── general.c │ │ └── general.mk │ ├── share │ │ ├── share.c │ │ └── share.mk │ ├── shareall │ │ ├── shareall.mk │ │ └── shareall.sh │ └── unshareall │ │ ├── unshareall.mk │ │ └── unshareall.sh ├── dfsck │ ├── dfsck.c │ └── dfsck.mk ├── diff │ ├── diff.c │ ├── diff.h │ ├── diff.mk │ └── diffh.c ├── diff3 │ ├── diff3.mk │ ├── diff3.sh │ └── diff3prog.c ├── dircmp │ ├── dircmp.mk │ └── dircmp.sh ├── dirname │ ├── dirname.mk │ └── dirname.sh ├── disksetup │ ├── boot.c │ ├── diskadd.sh │ ├── diskinit.c │ ├── disksetup.c │ ├── disksetup.mk │ ├── edvtoc.c │ ├── partsize.c │ └── prtvtoc.c ├── dispadmin │ ├── dispadmin.c │ ├── dispadmin.mk │ ├── rtdispadmin.c │ ├── subr.c │ └── tsdispadmin.c ├── dname │ ├── dname.c │ └── dname.mk ├── du │ ├── du.c │ └── du.mk ├── echo │ ├── echo.c │ └── echo.mk ├── ed │ ├── ed.c │ └── ed.mk ├── egrep │ ├── egrep.mk │ └── egrep.y ├── env │ ├── env.c │ └── env.mk ├── evgainit │ ├── evgainit.c │ └── evgainit.mk ├── expr │ ├── expr.c │ └── expr.mk ├── exstr │ ├── exstr.c │ └── exstr.mk ├── face │ ├── HELP │ │ ├── T.f.propts │ │ ├── T.h1.help │ │ ├── T.h3.frames │ │ ├── T.h41.obj │ │ ├── T.h43.fold │ │ ├── T.h55.waste │ │ ├── T.h7.cmd │ │ ├── T.hattface │ │ ├── T.hcreate │ │ ├── T.hface │ │ ├── T.hfilecab │ │ ├── T.hfind1 │ │ ├── T.hfind2 │ │ ├── T.hfind3 │ │ ├── T.hfind4 │ │ ├── T.hmail │ │ ├── T.hmerror │ │ ├── T.hoffice │ │ ├── T.horg1 │ │ ├── T.horg2 │ │ ├── T.horg3 │ │ ├── T.hprin1 │ │ ├── T.hprog │ │ ├── T.hsec1 │ │ ├── T.hsec10 │ │ ├── T.hsec2 │ │ ├── T.hsec3 │ │ ├── T.hsec4 │ │ ├── T.hsec5 │ │ ├── T.hsec6 │ │ ├── T.hsec7 │ │ ├── T.hsec8 │ │ ├── T.hsec9 │ │ ├── T.hsend1 │ │ ├── T.hspell1 │ │ ├── T.htoc │ │ ├── T.husers │ │ ├── T.hwaste │ │ ├── T.m.found │ │ ├── T.m.frmlist │ │ ├── cancel │ │ ├── cleanup │ │ ├── close │ │ ├── copy │ │ ├── create │ │ ├── delete │ │ ├── display │ │ ├── dos │ │ │ ├── T.hadd1 │ │ │ ├── T.hadd2 │ │ │ ├── T.hadd3 │ │ │ ├── T.hadd4 │ │ │ ├── T.hadd5 │ │ │ ├── T.hdosunix │ │ │ ├── T.hmod1 │ │ │ ├── T.hmod2 │ │ │ ├── T.hmod3 │ │ │ ├── T.hmod4 │ │ │ ├── T.hmod5 │ │ │ ├── T.hunixdos │ │ │ ├── T.list1 │ │ │ ├── T.list2 │ │ │ ├── T.list3 │ │ │ └── T.sadm │ │ ├── exit │ │ ├── find │ │ ├── frm-mgmt │ │ ├── goto │ │ ├── help │ │ ├── lp │ │ │ └── T.hlpops │ │ ├── mail │ │ │ ├── T.hmail │ │ │ ├── T.hmerror │ │ │ ├── T.hsend1 │ │ │ ├── T.hsend2 │ │ │ ├── T.hsend3 │ │ │ ├── T.hsend4 │ │ │ ├── T.nmail │ │ │ ├── T.read │ │ │ └── T.smail │ │ ├── move │ │ ├── next-frm │ │ ├── open │ │ ├── organize │ │ ├── pref │ │ │ ├── T.hcolor1 │ │ │ ├── T.hcolor10 │ │ │ ├── T.hcolor2 │ │ │ ├── T.hcolor3 │ │ │ ├── T.hcolor4 │ │ │ ├── T.hcolor5 │ │ │ ├── T.hcolor6 │ │ │ ├── T.hcolor7 │ │ │ ├── T.hcolor8 │ │ │ ├── T.hcolor9 │ │ │ ├── T.hdisp1 │ │ │ ├── T.hdisp2 │ │ │ ├── T.hdisp3 │ │ │ ├── T.hdisp4 │ │ │ ├── T.hfunc1 │ │ │ ├── T.hfunc2 │ │ │ ├── T.hfunc3 │ │ │ ├── T.hfunc4 │ │ │ ├── T.hfunc5 │ │ │ ├── T.hfunc6 │ │ │ ├── T.hfunc7 │ │ │ └── T.hpref │ │ ├── prev-frm │ │ ├── print │ │ ├── programs │ │ │ ├── T.hadd1 │ │ │ ├── T.hadd2 │ │ │ ├── T.hadd3 │ │ │ ├── T.hadd4 │ │ │ ├── T.hadd5 │ │ │ ├── T.hmod1 │ │ │ ├── T.hmod2 │ │ │ ├── T.hmod3 │ │ │ ├── T.hmod4 │ │ │ ├── T.hmod5 │ │ │ ├── T.list1 │ │ │ ├── T.list2 │ │ │ ├── T.list3 │ │ │ └── T.sadm │ │ ├── redescribe │ │ ├── refresh │ │ ├── rename │ │ ├── run │ │ ├── security │ │ ├── select │ │ ├── show-path │ │ ├── spell │ │ │ └── T.hspell1 │ │ ├── time │ │ ├── undelete │ │ ├── unix │ │ └── update │ ├── OBJECTS │ │ ├── Form.find │ │ ├── Form.org │ │ ├── Form.prin │ │ ├── Form.sec │ │ ├── Form.send │ │ ├── Form.spell │ │ ├── Menu.create │ │ ├── Menu.face │ │ ├── Menu.find │ │ ├── Menu.h0.toc │ │ ├── Menu.h6.list │ │ ├── Menu.mail │ │ ├── Menu.office │ │ ├── Menu.print │ │ ├── Menu.programs │ │ ├── Menu.remove │ │ ├── Menu.users │ │ ├── Menu.waste │ │ ├── Text.disp │ │ ├── Text.exit │ │ ├── Text.h │ │ ├── Text.help │ │ ├── Text.merror │ │ ├── Text.mfhelp │ │ ├── Text.show │ │ ├── Text.spell │ │ ├── dos │ │ │ ├── Form.add │ │ │ ├── Form.mod │ │ │ ├── Form.udconv │ │ │ ├── Menu.install │ │ │ ├── Menu.list │ │ │ └── Text.conf │ │ ├── lp │ │ │ ├── Menu.lpops │ │ │ ├── Text.lpops │ │ │ ├── Text.nlp │ │ │ └── Text.nsched │ │ ├── mail │ │ │ ├── Form.send │ │ │ ├── Menu.mail │ │ │ ├── Menu.nlist │ │ │ ├── Menu.slist │ │ │ ├── Text.error │ │ │ └── Text.read │ │ ├── pref │ │ │ ├── Form.color │ │ │ ├── Form.display │ │ │ ├── Form.func │ │ │ ├── Form.perm │ │ │ ├── Menu.color │ │ │ ├── Menu.frame │ │ │ └── Menu.pref │ │ ├── programs │ │ │ ├── Form.add │ │ │ ├── Form.mod │ │ │ ├── Menu.install │ │ │ ├── Menu.list │ │ │ └── Text.conf │ │ └── spell │ │ │ ├── Form.spell │ │ │ └── Text.spell │ ├── face.mk │ └── src │ │ ├── filecab │ │ ├── fileb │ │ │ ├── basename.sh │ │ │ ├── chexec.sh │ │ │ ├── chkperm.c │ │ │ ├── chkterm.sh │ │ │ ├── color_chk.sh │ │ │ ├── creaserve.c │ │ │ ├── delserve.c │ │ │ ├── dir_copy.sh │ │ │ ├── dir_creat.sh │ │ │ ├── dir_move.sh │ │ │ ├── face.c │ │ │ ├── fileb.mk │ │ │ ├── frame_chk.sh │ │ │ ├── ichexec.sh │ │ │ ├── identify.sh │ │ │ ├── listserv.c │ │ │ ├── mnucheck.c │ │ │ ├── modserv.c │ │ │ ├── services │ │ │ ├── setenv.sh │ │ │ └── termtest.c │ │ ├── filecab.mk │ │ ├── inc │ │ │ └── wish.h │ │ ├── oasys │ │ │ └── info │ │ │ │ └── OH │ │ │ │ └── externals │ │ │ │ ├── allobjs │ │ │ │ └── detect.tab │ │ ├── pathalias │ │ └── standard │ │ │ ├── .faceprofile │ │ │ ├── WASTEBASKET │ │ │ └── .pref │ │ │ └── pref │ │ │ ├── .colorpref │ │ │ ├── .environ │ │ │ └── .variables │ │ ├── oam │ │ ├── FACE.help │ │ ├── Menu.FACE │ │ ├── Menu.dos │ │ ├── Menu.mail │ │ ├── Menu.programs │ │ ├── Menu.spell │ │ ├── Menu.users │ │ ├── dos │ │ │ ├── Form.add │ │ │ ├── Form.mod │ │ │ ├── Menu.del │ │ │ ├── Menu.dos │ │ │ ├── Menu.list │ │ │ ├── Menu.mod │ │ │ ├── Text.conf │ │ │ ├── add.help │ │ │ ├── dos.help │ │ │ ├── list.help │ │ │ ├── modify.help │ │ │ └── remove.help │ │ ├── face.mi │ │ ├── oam.mk │ │ ├── programs │ │ │ ├── Form.add │ │ │ ├── Form.mod │ │ │ ├── Menu.del │ │ │ ├── Menu.list │ │ │ ├── Menu.mod │ │ │ ├── Text.amail │ │ │ ├── Text.aspell │ │ │ ├── Text.conf │ │ │ ├── Text.dmail │ │ │ ├── Text.dspell │ │ │ ├── fadd.help │ │ │ ├── fdel.help │ │ │ ├── fmod.help │ │ │ ├── mail_svc.help │ │ │ ├── mdel.help │ │ │ ├── mlist.help │ │ │ ├── mmod.help │ │ │ ├── programs.help │ │ │ ├── spell_ck.help │ │ │ ├── tamail.help │ │ │ ├── taspell.help │ │ │ ├── tdmail.help │ │ │ └── tdspell.help │ │ └── users │ │ │ ├── Form.define │ │ │ ├── Form.mod │ │ │ ├── Form.undefine │ │ │ ├── Menu.ulist │ │ │ ├── Text.define │ │ │ ├── Text.mod │ │ │ ├── Text.undefine │ │ │ ├── fdefine.help │ │ │ ├── fmod.help │ │ │ ├── fundefine.help │ │ │ ├── mulist.help │ │ │ ├── tdefine.help │ │ │ ├── tmod.help │ │ │ ├── tundefine.help │ │ │ └── users.help │ │ ├── proc │ │ ├── proc.mk │ │ └── suspend.c │ │ ├── src.mk │ │ ├── vinstall │ │ ├── addmenu.sh │ │ ├── delmenu.sh │ │ ├── vdelete.sh │ │ ├── vinstall.mk │ │ ├── vmodify.sh │ │ └── vsetup.sh │ │ └── xx │ │ ├── chksys.sh │ │ ├── cmdfile.txt │ │ ├── initial.txt │ │ ├── slash.c │ │ ├── suspend.c │ │ ├── unix.sh │ │ └── xx.mk ├── factor │ ├── factor.c │ └── factor.mk ├── false │ ├── false.mk │ └── false.sh ├── fdetach │ ├── fdetach.c │ └── fdetach.mk ├── fgrep │ ├── fgrep.c │ └── fgrep.mk ├── file │ ├── file.c │ ├── file.mk │ └── magic ├── find │ ├── find.c │ └── find.mk ├── fmli │ ├── fmli.mk │ ├── form │ │ ├── fcheck.c │ │ ├── fclose.c │ │ ├── fctl.c │ │ ├── fcurrent.c │ │ ├── fcustom.c │ │ ├── fdefault.c │ │ ├── form.mk │ │ └── frefresh.c │ ├── inc │ │ ├── actrec.h │ │ ├── attrs.h │ │ ├── but.h │ │ ├── color_pair.h │ │ ├── ctl.h │ │ ├── detabdefs.h │ │ ├── eval.h │ │ ├── exception.h │ │ ├── form.h │ │ ├── ifuncdefs.h │ │ ├── interrupt.h │ │ ├── io.h │ │ ├── mail.h │ │ ├── menu.h │ │ ├── menudefs.h │ │ ├── mess.h │ │ ├── message.h │ │ ├── mio.h │ │ ├── moremacros.h │ │ ├── obj.h │ │ ├── optabdefs.h │ │ ├── parse.h │ │ ├── partabdefs.h │ │ ├── procdefs.h │ │ ├── retcds.h │ │ ├── retcodes.h │ │ ├── sizes.h │ │ ├── slk.h │ │ ├── smdef.h │ │ ├── terror.h │ │ ├── token.h │ │ ├── typetab.h │ │ ├── var_arrays.h │ │ ├── vt.h │ │ ├── vtdefs.h │ │ ├── windefs.h │ │ ├── winp.h │ │ └── wish.h │ ├── install │ │ ├── Files │ │ ├── Install │ │ ├── Name │ │ └── Remove │ ├── menu │ │ ├── mclose.c │ │ ├── mctl.c │ │ ├── mcurrent.c │ │ ├── mcustom.c │ │ ├── mdefault.c │ │ ├── menu.mk │ │ ├── mfolder.c │ │ ├── mreshape.c │ │ └── stmenu.c │ ├── oeu │ │ ├── genparse.c │ │ ├── oeu.c │ │ ├── oeu.mk │ │ └── rm_atob.c │ ├── oh │ │ ├── action.c │ │ ├── alias.c │ │ ├── cmd.c │ │ ├── detab.c │ │ ├── detect.c │ │ ├── dispfuncs.c │ │ ├── evstr.c │ │ ├── externoot.c │ │ ├── fm_mn_par.c │ │ ├── fm_mn_par.h │ │ ├── getval.c │ │ ├── helptext.c │ │ ├── if_ascii.c │ │ ├── if_dir.c │ │ ├── if_exec.c │ │ ├── if_form.c │ │ ├── if_help.c │ │ ├── if_init.c │ │ ├── if_menu.c │ │ ├── ifuncs.c │ │ ├── interrupt.c │ │ ├── is_objtype.c │ │ ├── make_obj.c │ │ ├── misc.c │ │ ├── namecheck.c │ │ ├── nextpart.c │ │ ├── obj_to_opt.c │ │ ├── obj_to_par.c │ │ ├── objform.h │ │ ├── objhelp.h │ │ ├── objmenu.h │ │ ├── odftread.c │ │ ├── odikey.c │ │ ├── oh.mk │ │ ├── oh_init.c │ │ ├── one_menfun.c │ │ ├── ootpart.c │ │ ├── ootread.c │ │ ├── opt_rename.c │ │ ├── optab.c │ │ ├── optabfuncs.c │ │ ├── ott_mv.c │ │ ├── partab.c │ │ ├── partabfunc.c │ │ ├── path_to_vp.c │ │ ├── pathfstype.c │ │ ├── pathott.c │ │ ├── pathtitle.c │ │ ├── scram.c │ │ ├── slk.c │ │ ├── suffuncs.c │ │ ├── typefuncs.c │ │ └── typetab.c │ ├── proc │ │ ├── list.c │ │ ├── open.c │ │ ├── pclose.c │ │ ├── pctl.c │ │ ├── pcurrent.c │ │ ├── pdefault.c │ │ ├── pnoncur.c │ │ ├── proc.h │ │ ├── proc.mk │ │ └── suspend.c │ ├── qued │ │ ├── acs_io.c │ │ ├── arrows.c │ │ ├── copyfield.c │ │ ├── editmulti.c │ │ ├── editsingle.c │ │ ├── editvirt.c │ │ ├── fclear.c │ │ ├── fgo.c │ │ ├── fmacs.h │ │ ├── fput.c │ │ ├── fread.c │ │ ├── fstream.c │ │ ├── getfield.c │ │ ├── initfield.c │ │ ├── mfuncs.c │ │ ├── multiline.c │ │ ├── putfield.c │ │ ├── qued.mk │ │ ├── scrollbuf.c │ │ ├── setfield.c │ │ ├── sfuncs.c │ │ ├── singleline.c │ │ ├── syncfield.c │ │ ├── vfuncs.c │ │ └── wrap.c │ ├── sys │ │ ├── actrec.c │ │ ├── ar_mfuncs.c │ │ ├── backslash.c │ │ ├── chgenv.c │ │ ├── chgepenv.c │ │ ├── compile.c │ │ ├── coproc.c │ │ ├── copyfile.c │ │ ├── cut.c │ │ ├── estrtok.c │ │ ├── eval.c │ │ ├── evalstr.c │ │ ├── evfuncs.c │ │ ├── exit.c │ │ ├── expand.c │ │ ├── expr.c │ │ ├── filename.c │ │ ├── genfind.c │ │ ├── getaltenv.c │ │ ├── getepenv.c │ │ ├── grep.c │ │ ├── io.c │ │ ├── itoa.c │ │ ├── memshift.c │ │ ├── mencmds.c │ │ ├── nstrcat.c │ │ ├── onexit.c │ │ ├── parent.c │ │ ├── putaltenv.c │ │ ├── readfile.c │ │ ├── scrclean.c │ │ ├── spawn.c │ │ ├── strCcmp.c │ │ ├── strappend.c │ │ ├── stream.c │ │ ├── strsave.c │ │ ├── sys.mk │ │ ├── tempfiles.c │ │ ├── terrmess.c │ │ ├── terror.c │ │ ├── test.c │ │ ├── test.h │ │ ├── varappend.c │ │ ├── varchkapnd.c │ │ ├── varcreate.c │ │ ├── vardelete.c │ │ ├── vargrow.c │ │ ├── varinsert.c │ │ ├── varshrink.c │ │ └── watch.c │ ├── vt │ │ ├── fits.c │ │ ├── hide.c │ │ ├── highlight.c │ │ ├── indicator.c │ │ ├── lp.c │ │ ├── makebox.c │ │ ├── message.c │ │ ├── move.c │ │ ├── offscreen.c │ │ ├── physical.c │ │ ├── redraw.c │ │ ├── showdate.c │ │ ├── showmail.c │ │ ├── system.c │ │ ├── vclose.c │ │ ├── vcolor.c │ │ ├── vcreate.c │ │ ├── vctl.c │ │ ├── vcurrent.c │ │ ├── vdebug.c │ │ ├── vflush.c │ │ ├── vfork.c │ │ ├── vinit.c │ │ ├── vmark.c │ │ ├── vreshape.c │ │ ├── vt.mk │ │ ├── wclrwin.c │ │ ├── wdelchar.c │ │ ├── wgetchar.c │ │ ├── wgo.c │ │ ├── winschar.c │ │ ├── working.c │ │ ├── wprintf.c │ │ ├── wputchar.c │ │ ├── wputs.c │ │ ├── wreadchar.c │ │ └── wscrollwin.c │ ├── wish │ │ ├── browse.c │ │ ├── dir_move.sh │ │ ├── display.c │ │ ├── error.c │ │ ├── flush.c │ │ ├── getstring.c │ │ ├── global.c │ │ ├── mudge.c │ │ ├── objop.c │ │ ├── stubs.c │ │ ├── virtual.c │ │ ├── wdwcreate.c │ │ ├── wdwlist.c │ │ ├── wdwmgmt.c │ │ ├── wdwsuspend.c │ │ └── wish.mk │ └── xx │ │ ├── main.c │ │ ├── vsig.c │ │ └── xx.mk ├── fmt │ ├── fmt.c │ ├── fmt.mk │ ├── hdr │ │ ├── configdefs.h │ │ ├── def.h │ │ ├── diff.h │ │ ├── glob.h │ │ ├── local.h │ │ ├── rcv.h │ │ ├── usg.local.h │ │ └── v7.local.h │ └── head.c ├── fmtmsg │ ├── Prototype │ ├── fmtmsg.mk │ └── main.c ├── fold │ ├── fold.c │ └── fold.mk ├── format │ ├── format.c │ └── format.mk ├── fs.d │ ├── bfs │ │ ├── bfs.mk │ │ ├── fsck.c │ │ ├── fsck.mk │ │ ├── mkfs.c │ │ ├── mkfs.mk │ │ ├── mount.c │ │ └── mount.mk │ ├── df.c │ ├── fdfs │ │ ├── fdfs.mk │ │ └── mount.c │ ├── ff.c │ ├── fs.d.mk │ ├── fsck.c │ ├── mount.c │ ├── ncheck.c │ ├── nfs │ │ ├── automount │ │ │ ├── auto_all.c │ │ │ ├── auto_look.c │ │ │ ├── auto_main.c │ │ │ ├── auto_mount.c │ │ │ ├── auto_node.c │ │ │ ├── auto_proc.c │ │ │ ├── automount.h │ │ │ ├── automount.mk │ │ │ ├── bindresvport.c │ │ │ ├── innetgr.c │ │ │ ├── mountxdr.c │ │ │ ├── nfs_cast.c │ │ │ ├── nfs_prot.c │ │ │ ├── nfs_prot.h │ │ │ ├── nfs_prot.x │ │ │ ├── nfs_server.c │ │ │ └── nfs_trace.c │ │ ├── biod │ │ │ ├── biod.c │ │ │ └── biod.mk │ │ ├── bootpd │ │ │ ├── bootparam.h │ │ │ ├── bootpd.mk │ │ │ ├── bp_lib.c │ │ │ ├── bp_subr.c │ │ │ ├── bp_svc.c │ │ │ └── bp_xdr.c │ │ ├── dfmounts │ │ │ ├── dfmounts.c │ │ │ ├── dfmounts.mk │ │ │ └── mountxdr.c │ │ ├── dfshares │ │ │ ├── dfshares.c │ │ │ ├── dfshares.mk │ │ │ └── mountxdr.c │ │ ├── exportfs │ │ │ ├── exportfs.mk │ │ │ └── exportfs.sh │ │ ├── lockd │ │ │ ├── flk_filock.c │ │ │ ├── flk_reclox.c │ │ │ ├── flock.h │ │ │ ├── hash.c │ │ │ ├── klm_prot.h │ │ │ ├── klm_prot.x │ │ │ ├── lockd.mk │ │ │ ├── lockf.h │ │ │ ├── nlm_prot.h │ │ │ ├── nlm_prot.x │ │ │ ├── priv_prot.h │ │ │ ├── prot_alloc.c │ │ │ ├── prot_free.c │ │ │ ├── prot_libr.c │ │ │ ├── prot_lock.c │ │ │ ├── prot_lock.h │ │ │ ├── prot_main.c │ │ │ ├── prot_msg.c │ │ │ ├── prot_pklm.c │ │ │ ├── prot_pnlm.c │ │ │ ├── prot_priv.c │ │ │ ├── prot_proc.c │ │ │ ├── prot_share.c │ │ │ ├── prot_time.h │ │ │ ├── rpc.c │ │ │ ├── setbuffer.c │ │ │ ├── shlib.h │ │ │ ├── signal.c │ │ │ ├── signal.h │ │ │ ├── sm_inter.h │ │ │ ├── sm_monitor.c │ │ │ ├── sm_res.h │ │ │ ├── stdiom.h │ │ │ ├── svc_create.c │ │ │ ├── ufs_lockf.c │ │ │ ├── xdr_klm.c │ │ │ ├── xdr_nlm.c │ │ │ └── xdr_sm.c │ │ ├── mount │ │ │ ├── bindresvport.c │ │ │ ├── mount.c │ │ │ ├── mount.mk │ │ │ └── mountxdr.c │ │ ├── mountd │ │ │ ├── innetgr.c │ │ │ ├── issubdir.c │ │ │ ├── mountd.mk │ │ │ ├── mountxdr.c │ │ │ ├── rpc.mountd.c │ │ │ ├── sharetab.c │ │ │ └── sharetab.h │ │ ├── nfs.mk │ │ ├── nfsd │ │ │ ├── nfsd.c │ │ │ └── nfsd.mk │ │ ├── nfsstat │ │ │ ├── nfsstat.c │ │ │ └── nfsstat.mk │ │ ├── pcnfsd │ │ │ ├── pcnfsd.c │ │ │ └── pcnfsd.mk │ │ ├── share │ │ │ ├── issubdir.c │ │ │ ├── share.c │ │ │ ├── share.mk │ │ │ ├── sharetab.c │ │ │ └── sharetab.h │ │ ├── showmount │ │ │ ├── mountxdr.c │ │ │ ├── showmount.c │ │ │ └── showmount.mk │ │ ├── statd │ │ │ ├── flock.h │ │ │ ├── klm_prot.h │ │ │ ├── rpc.c │ │ │ ├── sm_inter.h │ │ │ ├── sm_proc.c │ │ │ ├── sm_statd.c │ │ │ ├── sm_statd.h │ │ │ ├── sm_svc.c │ │ │ ├── sm_svcreate.c │ │ │ ├── statd.mk │ │ │ └── xdr_sm.c │ │ ├── umount │ │ │ ├── bindresvport.c │ │ │ ├── mountxdr.c │ │ │ ├── umount.c │ │ │ └── umount.mk │ │ └── unshare │ │ │ ├── sharetab.c │ │ │ ├── sharetab.h │ │ │ ├── unshare.c │ │ │ └── unshare.mk │ ├── proc │ │ ├── mount.c │ │ └── proc.mk │ ├── rfs │ │ ├── dfmounts │ │ │ ├── dfmounts.c │ │ │ └── dfmounts.mk │ │ ├── dfshares │ │ │ ├── dfshares.c │ │ │ └── dfshares.mk │ │ ├── mount │ │ │ ├── mount.c │ │ │ └── mount.mk │ │ ├── rfs.mk │ │ ├── share │ │ │ ├── share.c │ │ │ └── share.mk │ │ └── unshare │ │ │ ├── unshare.c │ │ │ └── unshare.mk │ ├── s5 │ │ ├── clri.c │ │ ├── dcopy.c │ │ ├── df.c │ │ ├── ff.c │ │ ├── fsck.c │ │ ├── fsckinit.c │ │ ├── fsdb.c │ │ ├── labelit.c │ │ ├── mkfs.c │ │ ├── mount.c │ │ ├── ncheck.c │ │ ├── s5.mk │ │ ├── volcopy.c │ │ └── volcopy.h │ ├── switchout.c │ ├── ufs │ │ ├── clri │ │ │ ├── clri.c │ │ │ └── clri.mk │ │ ├── df │ │ │ ├── df.c │ │ │ └── df.mk │ │ ├── edquota │ │ │ ├── edquota.c │ │ │ └── edquota.mk │ │ ├── ff │ │ │ ├── ff.c │ │ │ └── ff.mk │ │ ├── fsck │ │ │ ├── dir.c │ │ │ ├── fsck.h │ │ │ ├── fsck.mk │ │ │ ├── inode.c │ │ │ ├── main.c │ │ │ ├── pass1.c │ │ │ ├── pass1b.c │ │ │ ├── pass2.c │ │ │ ├── pass3.c │ │ │ ├── pass4.c │ │ │ ├── pass5.c │ │ │ ├── setup.c │ │ │ └── utilities.c │ │ ├── fsdb │ │ │ ├── fsdb.c │ │ │ └── fsdb.mk │ │ ├── fstyp │ │ │ ├── fstyp.c │ │ │ └── fstyp.mk │ │ ├── labelit │ │ │ ├── labelit.c │ │ │ └── labelit.mk │ │ ├── mkfs │ │ │ ├── mkfs.c │ │ │ └── mkfs.mk │ │ ├── mount │ │ │ ├── mount.c │ │ │ ├── mount.mk │ │ │ └── realpath.c │ │ ├── ncheck │ │ │ ├── ncheck.c │ │ │ └── ncheck.mk │ │ ├── quot │ │ │ ├── quot.c │ │ │ └── quot.mk │ │ ├── quota │ │ │ ├── quota.c │ │ │ └── quota.mk │ │ ├── quotacheck │ │ │ ├── quotacheck.c │ │ │ └── quotacheck.mk │ │ ├── quotaon │ │ │ ├── quotaon.c │ │ │ └── quotaon.mk │ │ ├── repquota │ │ │ ├── repquota.c │ │ │ └── repquota.mk │ │ ├── tunefs │ │ │ ├── tunefs.c │ │ │ └── tunefs.mk │ │ ├── ufs.mk │ │ ├── ufsdump │ │ │ ├── dump.h │ │ │ ├── dumpitime.c │ │ │ ├── dumpmain.c │ │ │ ├── dumpoptr.c │ │ │ ├── dumprestore.h │ │ │ ├── dumptape.c │ │ │ ├── dumptraverse.c │ │ │ ├── ufsdump.mk │ │ │ └── unctime.c │ │ ├── ufsrestore │ │ │ ├── dirs.c │ │ │ ├── dumprestore.h │ │ │ ├── interactive.c │ │ │ ├── main.c │ │ │ ├── restore.c │ │ │ ├── restore.h │ │ │ ├── symtab.c │ │ │ ├── tape.c │ │ │ ├── ufsrestore.mk │ │ │ └── utilities.c │ │ └── volcopy │ │ │ ├── volcopy.c │ │ │ ├── volcopy.h │ │ │ └── volcopy.mk │ ├── umount.c │ └── volcopy.c ├── fsba │ ├── fsba.c │ └── fsba.mk ├── fsinfo │ ├── fsinfo.c │ └── fsinfo.mk ├── fsstat │ ├── fsstat.c │ └── fsstat.mk ├── fstyp │ ├── Bfsfstyp.c │ ├── S5fstyp.c │ ├── fstyp.mk │ └── fstyp.sh ├── fumount │ ├── fumount.c │ ├── fumount.mk │ └── sndmes.c ├── fusage │ ├── fusage.c │ └── fusage.mk ├── fuser │ ├── fuser.c │ └── fuser.mk ├── gcore │ ├── gcore.c │ └── gcore.mk ├── gencat │ ├── cat_build.c │ ├── cat_misc.c │ ├── cat_mmp_dump.c │ ├── gencat.c │ ├── gencat.mk │ └── msg_conv.c ├── getclk │ ├── getclk.c │ └── getclk.mk ├── getopt │ ├── getopt.c │ ├── getopt.mk │ └── getoptcvt.sh ├── gettxt │ ├── gettxt.c │ └── gettxt.mk ├── getty │ ├── getty.c │ └── getty.mk ├── graph │ ├── graph.c │ └── graph.mk ├── grep │ ├── grep.c │ └── grep.mk ├── groups │ ├── groups.c │ └── groups.mk ├── grpck │ ├── grpck.c │ └── grpck.mk ├── hd │ ├── hd.c │ └── hd.mk ├── head │ ├── head.c │ └── head.mk ├── i286emul │ ├── README │ ├── Sbreak.c │ ├── Signal.c │ ├── Sioctl.c │ ├── exec.c │ ├── gethead.c │ ├── i286emul.mk │ ├── i286sys │ │ ├── exec.h │ │ └── param.h │ ├── ipc.c │ ├── main.c │ ├── miscsys.c │ ├── run286.s │ ├── sendsig.s │ ├── setdscr.c │ ├── syscall.c │ ├── syscalla.s │ ├── sysent.c │ ├── sysent.h │ ├── text.c │ ├── utils.c │ └── vars.h ├── iconv │ ├── codesets │ │ ├── 646da.8859.p │ │ ├── 646de.8859.p │ │ ├── 646en.8859.p │ │ ├── 646es.8859.p │ │ ├── 646fr.8859.p │ │ ├── 646it.8859.p │ │ ├── 646sv.8859.p │ │ ├── 8859.646.p │ │ ├── 8859.646da.p │ │ ├── 8859.646de.p │ │ ├── 8859.646en.p │ │ ├── 8859.646es.p │ │ ├── 8859.646fr.p │ │ ├── 8859.646it.p │ │ ├── 8859.646sv.p │ │ └── iconv_data │ ├── gettab.c │ ├── gram.y │ ├── iconv.c │ ├── iconv.h │ ├── iconv.mk │ ├── kbd.h │ ├── lexan.c │ ├── main.c │ ├── output.c │ ├── process.c │ ├── reach.c │ ├── sort.c │ ├── sym.c │ ├── symtab.h │ └── tree.c ├── id │ ├── id.c │ └── id.mk ├── idcmd │ ├── defines.h │ ├── getinst.c │ ├── getmajors.c │ ├── idbuild │ ├── idcheck.c │ ├── idcmd.mk │ ├── idconfig.c │ ├── idinstall.c │ ├── idmaster.c │ ├── idmkenv.c │ ├── idmkinit.c │ ├── idmknod.c │ ├── idmkunix.c │ ├── idreboot │ ├── idspace.c │ ├── idtune │ ├── idval.c │ └── inst.h ├── idload │ ├── idload.c │ └── idload.mk ├── init │ ├── init.c │ ├── init.dfl │ └── init.mk ├── initpkg │ ├── bcheckrc.sh │ ├── brc.sh │ ├── dump.dfl │ ├── dumpcheck.c │ ├── dumpsave.sh │ ├── init.d │ │ ├── :mk.init.d.sh │ │ ├── ANNOUNCE │ │ ├── MOUNTFSYS │ │ ├── README │ │ ├── RMTMPFILES │ │ ├── adv │ │ ├── cron │ │ ├── disks │ │ ├── firstcheck │ │ ├── fumounts │ │ ├── mkdtab │ │ ├── nfs │ │ ├── osm │ │ ├── ports │ │ ├── rfs │ │ ├── rpc │ │ ├── rumounts │ │ ├── sysetup │ │ └── uucp │ ├── initpkg.mk │ ├── inittab.sh │ ├── mountall.sh │ ├── powerfail.sh │ ├── rc0.d │ │ └── :mk.rc0.d.sh │ ├── rc0.sh │ ├── rc1.d │ │ └── :mk.rc1.d.sh │ ├── rc1.sh │ ├── rc2.d │ │ └── :mk.rc2.d.sh │ ├── rc2.sh │ ├── rc3.d │ │ └── :mk.rc3.d.sh │ ├── rc3.sh │ ├── rc6.sh │ ├── rmount.sh │ ├── rmountall.sh │ ├── rstab.sh │ ├── rumountall.sh │ ├── shutdown.sh │ ├── umountall.sh │ └── vfstab.sh ├── install │ ├── install.mk │ └── install.sh ├── ipc │ ├── ipc.mk │ ├── ipcrm.c │ └── ipcs.c ├── join │ ├── join.c │ └── join.mk ├── keyserv │ ├── chkey.c │ ├── detach.c │ ├── domainname.c │ ├── gcd.c │ ├── generic.c │ ├── init_tr.c │ ├── key_generic.c │ ├── keylogin.c │ ├── keylogout.c │ ├── keyserv.c │ ├── keyserv.mk │ ├── madd.c │ ├── mdiv.c │ ├── mout.c │ ├── mp.h │ ├── msqrt.c │ ├── mult.c │ ├── newkey.c │ ├── pow.c │ ├── setkey.c │ ├── update.c │ └── util.c ├── kill │ └── kill.mk ├── killall │ ├── killall.c │ └── killall.mk ├── ksh │ ├── include │ │ ├── brkincr.h │ │ ├── builtins.h │ │ ├── defs.h │ │ ├── edit.h │ │ ├── flags.h │ │ ├── history.h │ │ ├── io.h │ │ ├── jobs.h │ │ ├── name.h │ │ ├── national.h │ │ ├── sh_config.h │ │ ├── shnodes.h │ │ ├── shtype.h │ │ ├── stak.h │ │ ├── streval.h │ │ ├── sym.h │ │ ├── terminal.h │ │ ├── test.h │ │ └── timeout.h │ ├── ksh.mk │ ├── sh │ │ ├── apollo.c │ │ ├── args.c │ │ ├── arith.c │ │ ├── blok.c │ │ ├── builtin.c │ │ ├── cmd.c │ │ ├── ctype.c │ │ ├── defs.c │ │ ├── echo.c │ │ ├── edit.c │ │ ├── editlib.c │ │ ├── emacs.c │ │ ├── error.c │ │ ├── expand.c │ │ ├── fault.c │ │ ├── history.c │ │ ├── io.c │ │ ├── jobs.c │ │ ├── macro.c │ │ ├── main.c │ │ ├── msg.c │ │ ├── name.c │ │ ├── print.c │ │ ├── service.c │ │ ├── stak.c │ │ ├── string.c │ │ ├── test.c │ │ ├── vfork.c │ │ ├── vi.c │ │ ├── word.c │ │ └── xec.c │ └── shlib │ │ ├── adjust.c │ │ ├── assign.c │ │ ├── assnum.c │ │ ├── cannon.c │ │ ├── chkid.c │ │ ├── convert.c │ │ ├── findnod.c │ │ ├── gettree.c │ │ ├── growaray.c │ │ ├── gsort.c │ │ ├── linknod.c │ │ ├── namscan.c │ │ ├── optget.c │ │ ├── rjust.c │ │ ├── strdata.c │ │ ├── streval.c │ │ ├── strmatch.c │ │ ├── tilde.c │ │ ├── unassign.c │ │ ├── utos.c │ │ └── valup.c ├── last │ ├── last.c │ └── last.mk ├── layers │ ├── README │ ├── deodx.c │ ├── layers.c │ ├── layers.mk │ ├── layersys │ │ └── lsys.873.src │ ├── misc │ │ ├── ismpx.c │ │ ├── jterm.c │ │ ├── jwin.c │ │ └── misc.mk │ ├── relogin.c │ ├── set_enc.c │ ├── set_enc.j.src │ ├── sxtstat.h │ ├── wtinit │ │ ├── pcheck.c │ │ ├── proto.c │ │ ├── proto.h │ │ ├── wtinit.c │ │ └── wtinit.mk │ ├── xtraces.c │ ├── xts.c │ ├── xtstats.c │ └── xtt.c ├── ldd │ ├── i386 │ │ ├── machdep.h │ │ └── makefile │ ├── ldd.c │ └── ldd.mk ├── line │ ├── line.c │ └── line.mk ├── link │ ├── link.c │ └── link.mk ├── listen │ ├── doprnt.c │ ├── listen.c │ ├── listen.mk │ ├── lsdata.c │ ├── lsdbf.c │ ├── lsdbf.h │ ├── lserror.h │ ├── lsfiles.h │ ├── lslog.c │ ├── lsnames.c │ ├── lsnlsmsg.h │ ├── lsparam.h │ ├── lssmb.c │ ├── lssmbmsg.h │ ├── nlps_serv.c │ ├── nlsaddr.c │ ├── nsaddr.h │ ├── nstoa.c │ └── print.h ├── lnttys │ ├── lnsxts.sh │ ├── lnttys.mk │ ├── lnttys.sh │ └── lnxts.sh ├── localedef │ ├── chrtbl │ │ ├── chrtbl.c │ │ ├── chrtbl.mk │ │ └── chrtbl_C │ ├── colltbl │ │ ├── collfcns.c │ │ ├── colltbl.c │ │ ├── colltbl.h │ │ ├── colltbl.mk │ │ ├── colltbl_C │ │ ├── diag.c │ │ ├── lex.c │ │ └── parse.y │ ├── datetbl │ │ ├── LC_TIME │ │ ├── datetbl.mk │ │ └── time_C │ ├── localedef.mk │ └── montbl │ │ ├── montbl.c │ │ ├── montbl.mk │ │ └── montbl_C ├── login │ ├── license.c │ ├── login.c │ ├── login.dfl │ ├── login.mk │ └── rcmd.c ├── logins │ ├── Prototype │ ├── logins.c │ └── logins.mk ├── logname │ ├── logname.c │ └── logname.mk ├── lp.admin │ ├── cpi.sh │ ├── len.sh │ ├── lp.admin.mk │ ├── lp.mi │ ├── lpi.sh │ ├── printers │ │ ├── Help │ │ ├── Menu.lp │ │ ├── classes │ │ │ ├── Form.add │ │ │ ├── Form.list │ │ │ ├── Form.mod.addpr │ │ │ ├── Form.mod.rempr │ │ │ ├── Form.mod_addpr │ │ │ ├── Form.mod_rempr │ │ │ ├── Form.modify │ │ │ ├── Form.remove │ │ │ ├── Help │ │ │ ├── Menu.class.ch │ │ │ ├── Menu.classes │ │ │ ├── Menu.pr.ch │ │ │ ├── Menu.pr.cl.ch │ │ │ ├── Text.add │ │ │ ├── Text.error │ │ │ ├── Text.list │ │ │ ├── classes.ch │ │ │ ├── cont.slks │ │ │ ├── members.ch │ │ │ └── printers.ch │ │ ├── filters │ │ │ ├── Form.add │ │ │ ├── Form.add.2 │ │ │ ├── Form.list │ │ │ ├── Form.mod2 │ │ │ ├── Form.modify │ │ │ ├── Form.modify.1 │ │ │ ├── Form.modify.2 │ │ │ ├── Form.modify.3 │ │ │ ├── Form.options │ │ │ ├── Form.remove │ │ │ ├── Form.restore │ │ │ ├── Help │ │ │ ├── Menu.filter.ch │ │ │ ├── Menu.filters │ │ │ ├── Menu.opt.ch │ │ │ ├── Menu.pr.ch │ │ │ ├── Menu.template │ │ │ ├── Text.error │ │ │ ├── Text.filt.ls │ │ │ ├── Text.filter.ch │ │ │ ├── filter.ch │ │ │ └── printers.ch │ │ ├── forms │ │ │ ├── Form.add │ │ │ ├── Form.list │ │ │ ├── Form.mod2 │ │ │ ├── Form.modify │ │ │ ├── Form.remove │ │ │ ├── Help │ │ │ ├── Menu.form.ch │ │ │ ├── Menu.forms │ │ │ ├── Text.error │ │ │ ├── Text.form.ls │ │ │ ├── alert.sh │ │ │ ├── alert.vars │ │ │ ├── char.sh │ │ │ ├── csettable │ │ │ └── describe │ │ ├── operations │ │ │ ├── Form.accept │ │ │ ├── Form.default │ │ │ ├── Form.disable │ │ │ ├── Form.enable │ │ │ ├── Form.mount │ │ │ ├── Form.reject │ │ │ ├── Form.start │ │ │ ├── Form.status │ │ │ ├── Form.stop │ │ │ ├── Form.unmount │ │ │ ├── Help │ │ │ ├── Menu.caccept │ │ │ ├── Menu.cdefault │ │ │ ├── Menu.cdisable │ │ │ ├── Menu.cenable │ │ │ ├── Menu.cmountf │ │ │ ├── Menu.creject │ │ │ ├── Menu.opers │ │ │ ├── Text.startfail │ │ │ ├── Text.stopfail │ │ │ ├── operations.men │ │ │ ├── startfailed.t │ │ │ └── stopfailed.t │ │ ├── printers │ │ │ ├── Form.add │ │ │ ├── Form.display │ │ │ ├── Form.list │ │ │ ├── Form.modify │ │ │ ├── Form.remove │ │ │ ├── Help │ │ │ ├── Menu.pr.ch │ │ │ ├── Menu.printers │ │ │ ├── Text.list │ │ │ ├── add │ │ │ │ ├── Form.access │ │ │ │ ├── Form.add │ │ │ │ ├── Form.charset │ │ │ │ ├── Form.comm.lcl │ │ │ │ ├── Form.conf.lcl │ │ │ │ ├── Form.conf.rmt │ │ │ │ ├── Form.pwheel │ │ │ │ ├── Help │ │ │ │ ├── Menu.ch_class │ │ │ │ ├── Menu.ch_forms │ │ │ │ ├── Menu.ch_users │ │ │ │ ├── Menu.devices │ │ │ │ ├── Menu.ptype │ │ │ │ ├── Text.access │ │ │ │ ├── Text.charset │ │ │ │ ├── Text.comm │ │ │ │ ├── Text.confirm │ │ │ │ ├── Text.error │ │ │ │ ├── Text.pwheel │ │ │ │ ├── chkstty.sh │ │ │ │ ├── devices.sh │ │ │ │ ├── findchg.sh │ │ │ │ ├── getclass.sh │ │ │ │ └── mkform.sh │ │ │ ├── modify │ │ │ │ ├── Form.access │ │ │ │ ├── Form.charset │ │ │ │ ├── Form.comm.lcl │ │ │ │ ├── Form.conf.lcl │ │ │ │ ├── Form.conf.rmt │ │ │ │ ├── Form.modify │ │ │ │ ├── Form.pwheel │ │ │ │ ├── Help │ │ │ │ ├── Menu.modify │ │ │ │ ├── Text.access │ │ │ │ ├── Text.charset │ │ │ │ ├── Text.comm │ │ │ │ ├── Text.confirm │ │ │ │ ├── Text.error │ │ │ │ ├── Text.pwheel │ │ │ │ ├── cpi.sh │ │ │ │ ├── len.sh │ │ │ │ ├── lpi.sh │ │ │ │ └── width.sh │ │ │ └── terminfo │ │ │ │ └── printype │ │ ├── priorities │ │ │ ├── Form.default │ │ │ ├── Form.list │ │ │ ├── Form.priority │ │ │ ├── Form.remove │ │ │ ├── Form.set │ │ │ ├── Form.system │ │ │ ├── Form.users │ │ │ ├── Help │ │ │ ├── Menu.cusers │ │ │ ├── Menu.prioritie │ │ │ ├── Text.list │ │ │ ├── getuser.sh │ │ │ └── priorities.men │ │ ├── reports │ │ │ ├── Form.fonts │ │ │ ├── Form.forms │ │ │ ├── Form.printers │ │ │ ├── Form.requests │ │ │ ├── Form.service │ │ │ ├── Form.wheels │ │ │ ├── Help │ │ │ ├── Menu.form.ch │ │ │ ├── Menu.pr.ch │ │ │ ├── Menu.pr.q.ch │ │ │ ├── Menu.reports │ │ │ ├── Menu.rq.ch │ │ │ ├── Menu.usr.rq.ch │ │ │ ├── Menu.wheel.ch │ │ │ ├── Text.error │ │ │ ├── Text.form.stat │ │ │ ├── Text.pr.stat │ │ │ ├── Text.rq.stat │ │ │ └── Text.wh.stat │ │ ├── requests │ │ │ ├── Form.cancel │ │ │ ├── Form.hold │ │ │ ├── Form.move │ │ │ ├── Form.release │ │ │ ├── Form.resume │ │ │ ├── Help │ │ │ ├── Menu.pr.ch │ │ │ ├── Menu.pr.q.ch │ │ │ ├── Menu.requests │ │ │ ├── Menu.rq.ch │ │ │ ├── Menu.usr.rq.ch │ │ │ └── Text.error │ │ └── systems │ │ │ ├── Form.add │ │ │ ├── Form.display │ │ │ ├── Form.modify │ │ │ ├── Form.remove │ │ │ ├── Help │ │ │ ├── Menu.cmodify │ │ │ ├── Menu.cremove │ │ │ ├── Menu.systems │ │ │ └── Text.display │ └── width.sh ├── lp │ ├── cmd │ │ ├── Makefile │ │ ├── bsd │ │ │ ├── Makefile │ │ │ ├── lpc │ │ │ │ ├── Makefile │ │ │ │ ├── cmds.c │ │ │ │ ├── cmdtab.c │ │ │ │ ├── lpc.c │ │ │ │ ├── lpc.h │ │ │ │ ├── process.c │ │ │ │ └── topq.c │ │ │ ├── lpq │ │ │ │ ├── Makefile │ │ │ │ └── lpq.c │ │ │ ├── lpr │ │ │ │ ├── Makefile │ │ │ │ └── lpr.c │ │ │ ├── lprm │ │ │ │ ├── Makefile │ │ │ │ └── lprm.c │ │ │ └── lptest │ │ │ │ ├── Makefile │ │ │ │ └── lptest.c │ │ ├── cancel.c │ │ ├── comb.c │ │ ├── dumpolp.c │ │ ├── lp.c │ │ ├── lpadmin │ │ │ ├── Makefile │ │ │ ├── chkopts.c │ │ │ ├── default.c │ │ │ ├── do_align.c │ │ │ ├── do_fault.c │ │ │ ├── do_mount.c │ │ │ ├── do_printer.c │ │ │ ├── do_pwheel.c │ │ │ ├── done.c │ │ │ ├── fromclass.c │ │ │ ├── ismodel.c │ │ │ ├── lpadmin.c │ │ │ ├── lpadmin.h │ │ │ ├── options.c │ │ │ ├── output.c │ │ │ ├── rmdest.c │ │ │ ├── send_message.c │ │ │ ├── signals.c │ │ │ ├── startup.c │ │ │ └── usage.c │ │ ├── lpdata │ │ │ ├── Makefile │ │ │ └── lpdata.c │ │ ├── lpfilter.c │ │ ├── lpforms.c │ │ ├── lpmove.c │ │ ├── lpsched │ │ │ ├── Makefile │ │ │ ├── lpNet │ │ │ │ ├── Makefile │ │ │ │ ├── Systems │ │ │ │ ├── bsdChild │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bsdChild.c │ │ │ │ │ ├── cancel.c │ │ │ │ │ ├── getstatus.c │ │ │ │ │ ├── netutil.c │ │ │ │ │ ├── printjob.c │ │ │ │ │ ├── printreq.c │ │ │ │ │ └── recvjob.c │ │ │ │ ├── include │ │ │ │ │ └── lpNet.h │ │ │ │ ├── parent │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── init.c │ │ │ │ │ ├── main.c │ │ │ │ │ └── parent.c │ │ │ │ └── svChild │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── getjobfiles.c │ │ │ │ │ └── svChild.c │ │ │ └── lpsched │ │ │ │ ├── Makefile │ │ │ │ ├── alerts.c │ │ │ │ ├── cancel.c │ │ │ │ ├── checkchild.c │ │ │ │ ├── daisyforms.c │ │ │ │ ├── disena.c │ │ │ │ ├── disp1.c │ │ │ │ ├── disp2.c │ │ │ │ ├── disp3.c │ │ │ │ ├── disp4.c │ │ │ │ ├── disp5.c │ │ │ │ ├── dispatch.h │ │ │ │ ├── disptab.c │ │ │ │ ├── dowait.c │ │ │ │ ├── exec.c │ │ │ │ ├── faults.c │ │ │ │ ├── files.c │ │ │ │ ├── flt.c │ │ │ │ ├── fncs.c │ │ │ │ ├── getkey.c │ │ │ │ ├── getpwent.c │ │ │ │ ├── getstatus.c │ │ │ │ ├── init.c │ │ │ │ ├── log.c │ │ │ │ ├── lpfsck.c │ │ │ │ ├── lpsched.c │ │ │ │ ├── lpsched.h │ │ │ │ ├── msgs.c │ │ │ │ ├── nodes.h │ │ │ │ ├── notify.c │ │ │ │ ├── pickfilter.c │ │ │ │ ├── ports.c │ │ │ │ ├── putjob.c │ │ │ │ ├── requeue.c │ │ │ │ ├── rexec.c │ │ │ │ ├── rstatus.c │ │ │ │ ├── schedule.c │ │ │ │ ├── status.c │ │ │ │ ├── terminate.c │ │ │ │ ├── validate.c │ │ │ │ └── validate.h │ │ ├── lpshut.c │ │ ├── lpstat │ │ │ ├── Makefile │ │ │ ├── accept.c │ │ │ ├── add_mounted.c │ │ │ ├── charset.c │ │ │ ├── class.c │ │ │ ├── device.c │ │ │ ├── done.c │ │ │ ├── form.c │ │ │ ├── lpstat.c │ │ │ ├── lpstat.h │ │ │ ├── output.c │ │ │ ├── parse.c │ │ │ ├── printer.c │ │ │ ├── request.c │ │ │ └── send_message.c │ │ ├── lpsystem.c │ │ └── lpusers.c │ ├── common.mk │ ├── crontab │ │ ├── Makefile │ │ └── lp │ ├── etc │ │ ├── Makefile │ │ └── lp │ ├── filter │ │ ├── 435_table │ │ ├── 455_filter.c │ │ ├── 455_table │ │ ├── 473_filter.c │ │ ├── 473_table │ │ ├── 475_filter.c │ │ ├── 475_table │ │ ├── 5310.c │ │ ├── ATT_s_filter.c │ │ ├── HP_filter.c │ │ ├── HP_table │ │ ├── Makefile │ │ ├── hp2631a.c │ │ ├── postscript │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── buildtables │ │ │ │ ├── README │ │ │ │ ├── buildtables │ │ │ │ ├── devpost.data │ │ │ │ │ ├── AB │ │ │ │ │ ├── AI │ │ │ │ │ ├── AR │ │ │ │ │ ├── AX │ │ │ │ │ ├── B │ │ │ │ │ ├── BI │ │ │ │ │ ├── CB │ │ │ │ │ ├── CB.bak │ │ │ │ │ ├── CI │ │ │ │ │ ├── CI.bak │ │ │ │ │ ├── CO │ │ │ │ │ ├── CW │ │ │ │ │ ├── CW.bak │ │ │ │ │ ├── CX │ │ │ │ │ ├── CX.bak │ │ │ │ │ ├── GR │ │ │ │ │ ├── GR.bak │ │ │ │ │ ├── H │ │ │ │ │ ├── HB │ │ │ │ │ ├── HI │ │ │ │ │ ├── HX │ │ │ │ │ ├── Hb │ │ │ │ │ ├── Hi │ │ │ │ │ ├── Hr │ │ │ │ │ ├── Hx │ │ │ │ │ ├── I │ │ │ │ │ ├── KB │ │ │ │ │ ├── KI │ │ │ │ │ ├── KR │ │ │ │ │ ├── KX │ │ │ │ │ ├── NB │ │ │ │ │ ├── NI │ │ │ │ │ ├── NR │ │ │ │ │ ├── NX │ │ │ │ │ ├── PA │ │ │ │ │ ├── PB │ │ │ │ │ ├── PI │ │ │ │ │ ├── PX │ │ │ │ │ ├── R │ │ │ │ │ ├── S │ │ │ │ │ ├── S.bak │ │ │ │ │ ├── S.small │ │ │ │ │ ├── S.small.bak │ │ │ │ │ ├── S1 │ │ │ │ │ ├── S1.bak │ │ │ │ │ ├── S1.old │ │ │ │ │ ├── VB │ │ │ │ │ ├── VI │ │ │ │ │ ├── VR │ │ │ │ │ ├── VX │ │ │ │ │ ├── ZD │ │ │ │ │ └── ZI │ │ │ │ ├── devpost │ │ │ │ │ ├── DESC │ │ │ │ │ └── LINKFILE │ │ │ │ └── fontfile.ps │ │ │ ├── common │ │ │ │ ├── README │ │ │ │ ├── comments.h │ │ │ │ ├── dev.h │ │ │ │ ├── ext.h │ │ │ │ ├── gen.h │ │ │ │ ├── glob.c │ │ │ │ ├── misc.c │ │ │ │ ├── path.h │ │ │ │ ├── request.c │ │ │ │ ├── request.h │ │ │ │ └── tempnam.c │ │ │ ├── download │ │ │ │ ├── README │ │ │ │ ├── download.c │ │ │ │ ├── download.h │ │ │ │ ├── download.mk │ │ │ │ └── isadmin.c │ │ │ ├── dpost │ │ │ │ ├── README │ │ │ │ ├── color.c │ │ │ │ ├── dpost.c │ │ │ │ ├── dpost.c.bak │ │ │ │ ├── dpost.h │ │ │ │ ├── dpost.mk │ │ │ │ ├── draw.c │ │ │ │ ├── pictures.c │ │ │ │ ├── ps_include.awk │ │ │ │ ├── ps_include.c │ │ │ │ ├── ps_include.h │ │ │ │ └── ps_include.ps │ │ │ ├── filtdesc │ │ │ │ ├── download.fd │ │ │ │ ├── dpost.fd │ │ │ │ ├── filtdesc.mk │ │ │ │ ├── postdaisy.fd │ │ │ │ ├── postdmd.fd │ │ │ │ ├── postio.fd │ │ │ │ ├── postior.fd │ │ │ │ ├── postmd.fd │ │ │ │ ├── postplot.fd │ │ │ │ ├── postprint.fd │ │ │ │ ├── postreverse.fd │ │ │ │ └── posttek.fd │ │ │ ├── font │ │ │ │ ├── Omakedev.c │ │ │ │ ├── README │ │ │ │ ├── devpost │ │ │ │ │ ├── AB │ │ │ │ │ ├── AB.name │ │ │ │ │ ├── AI │ │ │ │ │ ├── AI.name │ │ │ │ │ ├── AR │ │ │ │ │ ├── AR.name │ │ │ │ │ ├── AX │ │ │ │ │ ├── AX.name │ │ │ │ │ ├── B │ │ │ │ │ ├── B.name │ │ │ │ │ ├── BI │ │ │ │ │ ├── BI.name │ │ │ │ │ ├── CB │ │ │ │ │ ├── CB.name │ │ │ │ │ ├── CI │ │ │ │ │ ├── CI.name │ │ │ │ │ ├── CO │ │ │ │ │ ├── CO.name │ │ │ │ │ ├── CW │ │ │ │ │ ├── CW.name │ │ │ │ │ ├── CX │ │ │ │ │ ├── CX.name │ │ │ │ │ ├── DESC │ │ │ │ │ ├── DESC.big │ │ │ │ │ ├── DESC.small │ │ │ │ │ ├── GR │ │ │ │ │ ├── GR.name │ │ │ │ │ ├── H │ │ │ │ │ ├── H.name │ │ │ │ │ ├── HB │ │ │ │ │ ├── HB.name │ │ │ │ │ ├── HI │ │ │ │ │ ├── HI.name │ │ │ │ │ ├── HX │ │ │ │ │ ├── HX.name │ │ │ │ │ ├── Hb │ │ │ │ │ ├── Hb.name │ │ │ │ │ ├── Hi │ │ │ │ │ ├── Hi.name │ │ │ │ │ ├── Hr │ │ │ │ │ ├── Hr.name │ │ │ │ │ ├── Hx │ │ │ │ │ ├── Hx.name │ │ │ │ │ ├── I │ │ │ │ │ ├── I.name │ │ │ │ │ ├── KB │ │ │ │ │ ├── KB.name │ │ │ │ │ ├── KI │ │ │ │ │ ├── KI.name │ │ │ │ │ ├── KR │ │ │ │ │ ├── KR.name │ │ │ │ │ ├── KX │ │ │ │ │ ├── KX.name │ │ │ │ │ ├── LINKFILE │ │ │ │ │ ├── NB │ │ │ │ │ ├── NB.name │ │ │ │ │ ├── NI │ │ │ │ │ ├── NI.name │ │ │ │ │ ├── NR │ │ │ │ │ ├── NR.name │ │ │ │ │ ├── NX │ │ │ │ │ ├── NX.name │ │ │ │ │ ├── PA │ │ │ │ │ ├── PA.name │ │ │ │ │ ├── PB │ │ │ │ │ ├── PB.name │ │ │ │ │ ├── PI │ │ │ │ │ ├── PI.name │ │ │ │ │ ├── PX │ │ │ │ │ ├── PX.name │ │ │ │ │ ├── R │ │ │ │ │ ├── R.name │ │ │ │ │ ├── S │ │ │ │ │ ├── S.big │ │ │ │ │ ├── S.name │ │ │ │ │ ├── S.small │ │ │ │ │ ├── S1 │ │ │ │ │ ├── S1.name │ │ │ │ │ ├── VB │ │ │ │ │ ├── VB.name │ │ │ │ │ ├── VI │ │ │ │ │ ├── VI.name │ │ │ │ │ ├── VR │ │ │ │ │ ├── VR.name │ │ │ │ │ ├── VX │ │ │ │ │ ├── VX.name │ │ │ │ │ ├── ZD │ │ │ │ │ ├── ZD.name │ │ │ │ │ ├── ZI │ │ │ │ │ ├── ZI.name │ │ │ │ │ └── charlib │ │ │ │ │ │ ├── 12 │ │ │ │ │ │ ├── 14 │ │ │ │ │ │ ├── 34 │ │ │ │ │ │ ├── BRACKETS_NOTE │ │ │ │ │ │ ├── Fi │ │ │ │ │ │ ├── Fl │ │ │ │ │ │ ├── L1 │ │ │ │ │ │ ├── L1.map │ │ │ │ │ │ ├── LH │ │ │ │ │ │ ├── LH.map │ │ │ │ │ │ ├── Lb │ │ │ │ │ │ ├── Lb.map │ │ │ │ │ │ ├── OLD_LH │ │ │ │ │ │ ├── OLD_LH.map │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── Sl │ │ │ │ │ │ ├── bx │ │ │ │ │ │ ├── ci │ │ │ │ │ │ ├── ff │ │ │ │ │ │ ├── lc │ │ │ │ │ │ ├── lf │ │ │ │ │ │ ├── lh │ │ │ │ │ │ ├── ob │ │ │ │ │ │ ├── rc │ │ │ │ │ │ ├── rf │ │ │ │ │ │ ├── rh │ │ │ │ │ │ ├── sq │ │ │ │ │ │ └── ~= │ │ │ │ ├── devpostaps │ │ │ │ │ ├── B │ │ │ │ │ ├── BI │ │ │ │ │ ├── CW │ │ │ │ │ ├── DESC │ │ │ │ │ ├── FONTMAP │ │ │ │ │ ├── GR │ │ │ │ │ ├── H │ │ │ │ │ ├── HB │ │ │ │ │ ├── HI │ │ │ │ │ ├── HX │ │ │ │ │ ├── Hb │ │ │ │ │ ├── Hi │ │ │ │ │ ├── Hr │ │ │ │ │ ├── I │ │ │ │ │ ├── PA │ │ │ │ │ ├── PB │ │ │ │ │ ├── PI │ │ │ │ │ ├── PX │ │ │ │ │ ├── R │ │ │ │ │ ├── S │ │ │ │ │ ├── S1 │ │ │ │ │ └── charlib │ │ │ │ │ │ ├── 12 │ │ │ │ │ │ ├── 14 │ │ │ │ │ │ ├── 34 │ │ │ │ │ │ ├── 137 │ │ │ │ │ │ ├── 043 │ │ │ │ │ │ ├── 050 │ │ │ │ │ │ ├── 051 │ │ │ │ │ │ ├── 052 │ │ │ │ │ │ ├── Fi │ │ │ │ │ │ ├── Fl │ │ │ │ │ │ ├── L1 │ │ │ │ │ │ ├── L1.map │ │ │ │ │ │ ├── LH │ │ │ │ │ │ ├── LH.map │ │ │ │ │ │ ├── Lb │ │ │ │ │ │ ├── Lb.map │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── Sl │ │ │ │ │ │ ├── bu │ │ │ │ │ │ ├── bx │ │ │ │ │ │ ├── ci │ │ │ │ │ │ ├── ff │ │ │ │ │ │ ├── lh │ │ │ │ │ │ ├── rh │ │ │ │ │ │ ├── sc │ │ │ │ │ │ ├── sq │ │ │ │ │ │ └── ~= │ │ │ │ ├── font.mk │ │ │ │ └── makedev.c │ │ │ ├── macros │ │ │ │ ├── README │ │ │ │ ├── color │ │ │ │ ├── macros.mk │ │ │ │ ├── pictures │ │ │ │ ├── tmac.color │ │ │ │ └── tmac.pictures │ │ │ ├── misc │ │ │ │ ├── README │ │ │ │ ├── grabit.ps │ │ │ │ ├── ibmfont.c │ │ │ │ ├── laserbar.c │ │ │ │ ├── lp.model │ │ │ │ ├── macfont.c │ │ │ │ └── setbaud.ps │ │ │ ├── picpack │ │ │ │ ├── picpack.c │ │ │ │ └── picpack.mk │ │ │ ├── postcomm │ │ │ │ ├── postcomm.c │ │ │ │ ├── postcomm.h │ │ │ │ └── postcomm.mk │ │ │ ├── postdaisy │ │ │ │ ├── README │ │ │ │ ├── postdaisy.c │ │ │ │ ├── postdaisy.h │ │ │ │ └── postdaisy.mk │ │ │ ├── postdmd │ │ │ │ ├── README │ │ │ │ ├── postdmd.c │ │ │ │ └── postdmd.mk │ │ │ ├── postio │ │ │ │ ├── README │ │ │ │ ├── ifdef.c │ │ │ │ ├── ifdef.h │ │ │ │ ├── postio.c │ │ │ │ ├── postio.h │ │ │ │ ├── postio.mk │ │ │ │ └── slowsend.c │ │ │ ├── postmd │ │ │ │ ├── README │ │ │ │ ├── postmd.c │ │ │ │ ├── postmd.h │ │ │ │ └── postmd.mk │ │ │ ├── postplot │ │ │ │ ├── README │ │ │ │ ├── postplot.c │ │ │ │ ├── postplot.h │ │ │ │ └── postplot.mk │ │ │ ├── postprint │ │ │ │ ├── README │ │ │ │ ├── postprint.c │ │ │ │ ├── postprint.h │ │ │ │ └── postprint.mk │ │ │ ├── postreverse │ │ │ │ ├── README │ │ │ │ ├── postreverse.c │ │ │ │ ├── postreverse.h │ │ │ │ └── postreverse.mk │ │ │ ├── postscript │ │ │ │ ├── README │ │ │ │ ├── aps.ps │ │ │ │ ├── banner.ps │ │ │ │ ├── baseline.ps │ │ │ │ ├── color.ps │ │ │ │ ├── dpost.ps │ │ │ │ ├── draw.ps │ │ │ │ ├── fatcourier.ps │ │ │ │ ├── forms.ps │ │ │ │ ├── postdaisy.ps │ │ │ │ ├── postdmd.ps │ │ │ │ ├── postmd.ps │ │ │ │ ├── postplot.ps │ │ │ │ ├── postprint.ps │ │ │ │ ├── postscript.mk │ │ │ │ ├── posttek.ps │ │ │ │ ├── ps.requests │ │ │ │ └── roundpage.ps │ │ │ ├── posttek │ │ │ │ ├── README │ │ │ │ ├── posttek.c │ │ │ │ ├── posttek.h │ │ │ │ └── posttek.mk │ │ │ ├── template │ │ │ │ ├── README │ │ │ │ ├── template.c │ │ │ │ ├── template.h │ │ │ │ ├── template.mk │ │ │ │ └── template.ps │ │ │ └── tests │ │ │ │ ├── postmd1 │ │ │ │ ├── postprint1 │ │ │ │ ├── runtests │ │ │ │ └── troff1 │ │ ├── pprx.c │ │ ├── prx.c │ │ └── slow.filter │ ├── include │ │ ├── _networkMgmt.h │ │ ├── _xdrMsgs.h │ │ ├── access.h │ │ ├── boolean.h │ │ ├── class.h │ │ ├── debug.h │ │ ├── errorMgmt.h │ │ ├── filters.h │ │ ├── form.h │ │ ├── fs.h │ │ ├── lists.h │ │ ├── logMgmt.h │ │ ├── lp.h │ │ ├── lp.set.h │ │ ├── lpd.h │ │ ├── memdup.h │ │ ├── mpipes.h │ │ ├── msgs.h │ │ ├── networkMgmt.h │ │ ├── oam.h │ │ ├── printers.h │ │ ├── requests.h │ │ ├── secure.h │ │ ├── systems.h │ │ ├── users.h │ │ └── xdrMsgs.h │ ├── lib │ │ ├── Makefile │ │ ├── access │ │ │ ├── Makefile │ │ │ ├── allowed.c │ │ │ ├── bang.c │ │ │ ├── change.c │ │ │ ├── dumpaccess.c │ │ │ ├── files.c │ │ │ ├── llib-llpacc.c │ │ │ └── loadaccess.c │ │ ├── bsd │ │ │ ├── Makefile │ │ │ ├── displayq.c │ │ │ ├── escape.c │ │ │ ├── fatalmsg.c │ │ │ ├── findfld.c │ │ │ ├── gethostnm.c │ │ │ ├── global.c │ │ │ ├── log.c │ │ │ ├── parse.c │ │ │ ├── psfile.c │ │ │ ├── rmjob.c │ │ │ ├── rsendjob.c │ │ │ └── sndrcv.c │ │ ├── class │ │ │ ├── Makefile │ │ │ ├── delclass.c │ │ │ ├── freeclass.c │ │ │ ├── getclass.c │ │ │ ├── llib-llpcls.c │ │ │ └── putclass.c │ │ ├── filters │ │ │ ├── Makefile │ │ │ ├── conv.c │ │ │ ├── delfilter.c │ │ │ ├── dumpfilters.c │ │ │ ├── filtertable.c │ │ │ ├── freefilter.c │ │ │ ├── getfilter.c │ │ │ ├── insfilter.c │ │ │ ├── llib-llpflt.c │ │ │ ├── loadfilters.c │ │ │ ├── putfilter.c │ │ │ ├── regex.c │ │ │ ├── regex.h │ │ │ ├── search.c │ │ │ └── trash.c │ │ ├── forms │ │ │ ├── Makefile │ │ │ ├── delform.c │ │ │ ├── f_head.c │ │ │ ├── freeform.c │ │ │ ├── getform.c │ │ │ ├── llib-llpfrm.c │ │ │ ├── putform.c │ │ │ ├── rdform.c │ │ │ └── wrform.c │ │ ├── libcommon.mk │ │ ├── lp │ │ │ ├── Makefile │ │ │ ├── Syscalls.c │ │ │ ├── addlist.c │ │ │ ├── addstring.c │ │ │ ├── alerts.c │ │ │ ├── appendlist.c │ │ │ ├── charset.c │ │ │ ├── cs_strcmp.c │ │ │ ├── cs_strncmp.c │ │ │ ├── dashos.c │ │ │ ├── debug.c │ │ │ ├── dellist.c │ │ │ ├── dirs.c │ │ │ ├── duplist.c │ │ │ ├── files.c │ │ │ ├── freelist.c │ │ │ ├── getlist.c │ │ │ ├── getname.c │ │ │ ├── getpaths.c │ │ │ ├── getspooldir.c │ │ │ ├── isterminfo.c │ │ │ ├── joinlist.c │ │ │ ├── lenlist.c │ │ │ ├── llib-llp.c │ │ │ ├── lp_errno.c │ │ │ ├── makepath.c │ │ │ ├── makestr.c │ │ │ ├── mergelist.c │ │ │ ├── next.c │ │ │ ├── printlist.c │ │ │ ├── sdn.c │ │ │ ├── searchlist.c │ │ │ ├── sendmail.c │ │ │ ├── set_charset.c │ │ │ ├── set_pitch.c │ │ │ ├── set_size.c │ │ │ ├── sop.c │ │ │ ├── sprintlist.c │ │ │ ├── strip.c │ │ │ ├── syntax.c │ │ │ ├── tidbit.c │ │ │ ├── tinames.c │ │ │ ├── wherelist.c │ │ │ └── which.c │ │ ├── lpNet │ │ │ ├── Makefile │ │ │ ├── _networkMgmt.c │ │ │ ├── _xdrMsgs.c │ │ │ ├── _xdrMsgs.x │ │ │ ├── errorMgmt.c │ │ │ ├── lists.c │ │ │ ├── logMgmt.c │ │ │ ├── memdup.c │ │ │ ├── mpipes.c │ │ │ ├── networkMgmt.c │ │ │ ├── xdrMsgs.c │ │ │ └── xdrMsgs.x │ │ ├── msgs │ │ │ ├── Makefile │ │ │ ├── _getmessage.c │ │ │ ├── _putmessage.c │ │ │ ├── fifo_buffs.c │ │ │ ├── getmessage.c │ │ │ ├── hslconv.c │ │ │ ├── llib-llpmsg.c │ │ │ ├── mclose.c │ │ │ ├── mconnect.c │ │ │ ├── mcreate.c │ │ │ ├── mdestroy.c │ │ │ ├── mdisconnect.c │ │ │ ├── mgetputm.c │ │ │ ├── mlisten.c │ │ │ ├── mneeds.c │ │ │ ├── mopen.c │ │ │ ├── mread.c │ │ │ ├── mrecv.c │ │ │ ├── msend.c │ │ │ ├── msgfmts.c │ │ │ ├── mwrite.c │ │ │ ├── putmessage.c │ │ │ ├── read_fifo.c │ │ │ ├── streamio.c │ │ │ └── write_fifo.c │ │ ├── oam │ │ │ ├── Makefile │ │ │ ├── agettxt.c │ │ │ ├── buffers.c │ │ │ ├── fmtmsg.c │ │ │ ├── gen-defs │ │ │ ├── gen-text │ │ │ ├── llib-llpoam.c │ │ │ └── msg.source │ │ ├── printers │ │ │ ├── Makefile │ │ │ ├── chkprinter.c │ │ │ ├── default.c │ │ │ ├── delprinter.c │ │ │ ├── freeprinter.c │ │ │ ├── getprinter.c │ │ │ ├── llib-llpprt.c │ │ │ ├── okprinter.c │ │ │ ├── p_head.c │ │ │ ├── printwheels.c │ │ │ └── putprinter.c │ │ ├── requests │ │ │ ├── Makefile │ │ │ ├── anyrequests.c │ │ │ ├── freerequest.c │ │ │ ├── getrequest.c │ │ │ ├── llib-llpreq.c │ │ │ ├── putrequest.c │ │ │ └── r_head.c │ │ ├── secure │ │ │ ├── Makefile │ │ │ ├── llib-llpsec.c │ │ │ └── secure.c │ │ ├── systems │ │ │ ├── Makefile │ │ │ ├── delsystem.c │ │ │ ├── freesystem.c │ │ │ ├── getsystem.c │ │ │ ├── llib-llpsys.c │ │ │ └── putsystem.c │ │ └── users │ │ │ ├── Makefile │ │ │ ├── llib-llpusr.c │ │ │ ├── loadpri.c │ │ │ ├── storepri.c │ │ │ └── usermgmt.c │ ├── lp.mk │ ├── model │ │ ├── Makefile │ │ ├── alert.proto │ │ ├── drain.output.c │ │ ├── lp.cat.c │ │ ├── lp.page.c │ │ ├── lp.set.c │ │ ├── lp.tell.c │ │ └── standard │ └── terminfo │ │ ├── Makefile │ │ └── PS.ti ├── ls │ ├── ls.c │ └── ls.mk ├── mail │ ├── Dout.c │ ├── STD_VAC_MSG │ ├── Tout.c │ ├── _mail_pipe.c │ ├── abspath.c │ ├── add_recip.c │ ├── alias.c │ ├── arefwding.c │ ├── basename.c │ ├── binarsys │ ├── casncmp.c │ ├── cat.c │ ├── ckbinarsys.c │ ├── ckdlivopts.c │ ├── cksaved.c │ ├── cksurg_rc.c │ ├── clr_hinfo.c │ ├── cmdexpand.c │ ├── config.c │ ├── config.h │ ├── copyback.c │ ├── copylet.c │ ├── copymt.c │ ├── copystream.c │ ├── createmf.c │ ├── del_recipl.c │ ├── delempty.c │ ├── delete.c │ ├── doFopt.c │ ├── done.c │ ├── doopen.c │ ├── dumpaff.c │ ├── dumprcv.c │ ├── errmsg.c │ ├── findSurg.c │ ├── gendeliv.c │ ├── getarg.c │ ├── getcomment.c │ ├── getdomain.c │ ├── gethead.c │ ├── getsurr.c │ ├── goback.c │ ├── init.c │ ├── initsurr.c │ ├── isheader.c │ ├── isit.c │ ├── islocal.c │ ├── istext.c │ ├── legal.c │ ├── libmail.h │ ├── llib-lmail │ ├── lock.c │ ├── maid.c │ ├── mail.h │ ├── mail.mk │ ├── mailcomp.c │ ├── maillock.c │ ├── maillock.h │ ├── mailsurr │ ├── main.c │ ├── mkdead.c │ ├── mta_ercode.c │ ├── my_open.c │ ├── myregexpr.c │ ├── myregexpr.h │ ├── namefiles │ ├── new_recipl.c │ ├── notify.sh │ ├── notify2.c │ ├── notifyu.c │ ├── notme.c │ ├── parse.c │ ├── pckaffspot.c │ ├── pckrcvspot.c │ ├── pickFrom.c │ ├── pipletr.c │ ├── pmkid │ ├── popenvp.c │ ├── poplist.c │ ├── printhdr.c │ ├── printmail.c │ ├── pushlist.c │ ├── s_string.c │ ├── s_string.h │ ├── savehdrs.c │ ├── sel_disp.c │ ├── send.c │ ├── sendlist.c │ ├── sendmail.c │ ├── sendsurg.c │ ├── setsig.c │ ├── setsurg_bt.c │ ├── setsurg_rc.c │ ├── setup_exec.c │ ├── skipspace.c │ ├── smtp │ │ ├── scripts │ │ │ ├── cron.scr │ │ │ ├── rc0 │ │ │ ├── rc2 │ │ │ ├── scripts.mk │ │ │ └── smscripts.sl │ │ ├── sm.sl │ │ ├── smtp.mk │ │ └── src │ │ │ ├── addrformat.h │ │ │ ├── aux.c │ │ │ ├── aux.h │ │ │ ├── cmds.h │ │ │ ├── converse.c │ │ │ ├── conversed.c │ │ │ ├── dup2.c │ │ │ ├── from822.c │ │ │ ├── from822ad.c │ │ │ ├── fromsmtp.c │ │ │ ├── header.c │ │ │ ├── header.h │ │ │ ├── mail.c │ │ │ ├── miscerrs.h │ │ │ ├── mx.c │ │ │ ├── netio.c │ │ │ ├── notice.h │ │ │ ├── qlib.c │ │ │ ├── regcomp.c │ │ │ ├── regerror.c │ │ │ ├── regexec.c │ │ │ ├── regprog.h │ │ │ ├── regsub.c │ │ │ ├── s5sysexits.h │ │ │ ├── s5sysname.c │ │ │ ├── smsrc.sl │ │ │ ├── smtp.c │ │ │ ├── smtp.h │ │ │ ├── smtpaux.c │ │ │ ├── smtpd.c │ │ │ ├── smtplog.c │ │ │ ├── smtpqer.c │ │ │ ├── smtpsched.c │ │ │ ├── src.mk │ │ │ ├── to822.c │ │ │ ├── to822addr.c │ │ │ ├── tosmtp.c │ │ │ ├── v9regexp.h │ │ │ └── xmail.h │ ├── stamp.c │ ├── strmove.c │ ├── substr.c │ ├── systemvp.c │ ├── tokdef.c │ ├── translate.c │ ├── trimnl.c │ ├── vacation.sh │ ├── vacation2.sh │ └── xgetenv.c ├── mailx │ ├── aux.c │ ├── cmd1.c │ ├── cmd2.c │ ├── cmd3.c │ ├── cmd4.c │ ├── cmdtab.c │ ├── collect.c │ ├── config.c │ ├── edit.c │ ├── extern.c │ ├── fio.c │ ├── getname.c │ ├── hdr │ │ ├── configdefs.h │ │ ├── def.h │ │ ├── glob.h │ │ ├── local.h │ │ ├── rcv.h │ │ ├── sigretro.h │ │ ├── uparm.h │ │ └── usg.local.h │ ├── head.c │ ├── help │ │ ├── mailx.help │ │ └── mailx.help.~ │ ├── hostname.c │ ├── init.c │ ├── is.c │ ├── lex.c │ ├── list.c │ ├── lock.c │ ├── lpaths.c │ ├── mailx.mk │ ├── main.c │ ├── myfopen.c │ ├── names.c │ ├── optim.c │ ├── popen.c │ ├── quit.c │ ├── receipt.c │ ├── send.c │ ├── sigretro.c │ ├── stralloc.c │ ├── temp.c │ ├── translate.c │ ├── tty.c │ ├── usg.local.c │ └── vars.c ├── make │ ├── bu │ ├── defs │ ├── doname.c │ ├── dosys.c │ ├── dyndep.c │ ├── files.c │ ├── gram.y │ ├── main.c │ ├── make.mk │ ├── misc.c │ ├── perror.c │ ├── prtmem.c │ └── rules.c ├── makekey │ ├── makekey.c │ └── makekey.mk ├── mesg │ ├── mesg.c │ └── mesg.mk ├── mkdir │ ├── mkdir.c │ └── mkdir.mk ├── mkfifo │ ├── mkfifo.c │ └── mkfifo.mk ├── mkmsgs │ ├── mkmsgs.c │ └── mkmsgs.mk ├── mknod │ ├── mknod.c │ └── mknod.mk ├── mkpart │ ├── mkpart.c │ ├── mkpart.h │ ├── mkpart.mk │ ├── parse.h │ ├── partitions.y │ └── scan.c ├── more │ ├── more.c │ ├── more.help │ └── more.mk ├── mv │ ├── mv.c │ └── mv.mk ├── mvdir │ ├── mvdir.mk │ └── mvdir.sh ├── nadmin.dfs │ ├── Help │ ├── Menu.rfiles │ ├── Prototype │ ├── local │ │ ├── Help │ │ ├── Menu.local │ │ └── Menu.type │ ├── nadmin.dfs.mk │ ├── other │ │ ├── Help │ │ └── Menu.ops │ ├── remote │ │ ├── Help │ │ ├── Menu.remote │ │ └── Menu.type │ └── setup │ │ └── Menu.type ├── nadmin.nfs │ ├── local │ │ └── nfs │ │ │ ├── Form.list │ │ │ ├── Form.modify │ │ │ ├── Form.modify2 │ │ │ ├── Form.modify3 │ │ │ ├── Form.share │ │ │ ├── Form.share2 │ │ │ ├── Form.unshar2 │ │ │ ├── Form.unshar3 │ │ │ ├── Form.unshare │ │ │ ├── Help │ │ │ ├── Text.list │ │ │ ├── Text.shmsg │ │ │ └── bin │ │ │ ├── a_att │ │ │ ├── auto_attr │ │ │ ├── auto_mod │ │ │ ├── imm_attr │ │ │ ├── ls_resource │ │ │ ├── new_nflist │ │ │ ├── nf_list │ │ │ ├── nf_share │ │ │ ├── nf_unshare │ │ │ └── valid_client │ ├── nadmin.nfs.mk │ ├── other │ │ └── nfs │ │ │ ├── Help │ │ │ ├── Menu.nfs │ │ │ └── control │ │ │ ├── Help │ │ │ ├── Menu.control │ │ │ ├── Text.control │ │ │ └── bin │ │ │ └── status │ ├── remote │ │ └── nfs │ │ │ ├── Form.list │ │ │ ├── Form.modify │ │ │ ├── Form.modify2 │ │ │ ├── Form.modify3 │ │ │ ├── Form.mount │ │ │ ├── Form.unmnt2 │ │ │ ├── Form.unmnt3 │ │ │ ├── Form.unmount │ │ │ ├── Help │ │ │ ├── Text.generic │ │ │ ├── Text.list │ │ │ └── bin │ │ │ ├── auto_attr │ │ │ ├── auto_mod │ │ │ ├── auto_unmount │ │ │ ├── curr_attr │ │ │ ├── curr_mod │ │ │ ├── ls_remote │ │ │ ├── ls_resource │ │ │ └── remote_mount │ └── setup │ │ └── nfs │ │ ├── Help │ │ └── Menu.setup ├── nadmin.rfs │ ├── local │ │ └── rfs │ │ │ ├── Form.list │ │ │ ├── Form.modify │ │ │ ├── Form.modify2 │ │ │ ├── Form.modify3 │ │ │ ├── Form.share │ │ │ ├── Form.share2 │ │ │ ├── Form.unshar2 │ │ │ ├── Form.unshar3 │ │ │ ├── Form.unshare │ │ │ ├── Help │ │ │ ├── Text.list │ │ │ ├── Text.shmsg │ │ │ └── bin │ │ │ ├── auto_attr │ │ │ ├── auto_mod │ │ │ ├── imm_attr │ │ │ ├── imm_mod │ │ │ ├── ls_resource │ │ │ ├── rf_list │ │ │ ├── rf_share │ │ │ └── rf_unshare │ ├── nadmin.rfs.mk │ ├── other │ │ └── rfs │ │ │ ├── HELP │ │ │ ├── control.help │ │ │ ├── id_map.help │ │ │ ├── netwk.help │ │ │ └── system.help │ │ │ ├── Help │ │ │ ├── Menu.rfs │ │ │ ├── control │ │ │ ├── Form.start │ │ │ ├── Form.start2 │ │ │ ├── Form.stop │ │ │ ├── Help │ │ │ ├── Menu.control │ │ │ ├── Menu.passctl │ │ │ ├── Text.check │ │ │ ├── Text.msg │ │ │ └── bin │ │ │ │ ├── get_second │ │ │ │ ├── get_tps │ │ │ │ ├── ns_pass │ │ │ │ ├── rfs_run │ │ │ │ └── rfs_stop │ │ │ ├── id_map │ │ │ ├── Form.display │ │ │ ├── Form.set │ │ │ ├── Form.set2 │ │ │ ├── Form.set3 │ │ │ ├── Form.set4 │ │ │ ├── Help │ │ │ ├── Menu.idmap │ │ │ ├── Text.display │ │ │ └── bin │ │ │ │ ├── gid_map │ │ │ │ └── uid_map │ │ │ ├── net │ │ │ ├── Help │ │ │ ├── Menu.netwk │ │ │ ├── Menu.set │ │ │ ├── Text.display │ │ │ ├── Text.msg │ │ │ └── bin │ │ │ │ ├── rfs_net │ │ │ │ └── set_tp │ │ │ └── system │ │ │ ├── Form.lsname │ │ │ ├── Form.p_add │ │ │ ├── Form.p_rem │ │ │ ├── Form.rf_add │ │ │ ├── Form.rf_add2 │ │ │ ├── Form.rf_rem │ │ │ ├── Form.rf_rem2 │ │ │ ├── Form.set │ │ │ ├── Help │ │ │ ├── Menu.member │ │ │ ├── Menu.system │ │ │ ├── Menu.transp │ │ │ ├── Text.display │ │ │ ├── Text.generic │ │ │ ├── Text.lshost │ │ │ ├── Text.lssrvr │ │ │ └── bin │ │ │ ├── act_nserve │ │ │ ├── add_member │ │ │ ├── add_passwd │ │ │ ├── call_addr │ │ │ ├── ck_primary │ │ │ ├── del_member │ │ │ ├── del_passwd │ │ │ ├── find_trans │ │ │ ├── get_passwd │ │ │ ├── get_primary │ │ │ ├── get_tps │ │ │ ├── getaddr.c │ │ │ ├── line_num │ │ │ ├── primary │ │ │ ├── rfs_nserve │ │ │ └── system.mk │ ├── remote │ │ └── rfs │ │ │ ├── Form.domain │ │ │ ├── Form.list │ │ │ ├── Form.modify │ │ │ ├── Form.modify2 │ │ │ ├── Form.modify3 │ │ │ ├── Form.mount │ │ │ ├── Form.unmnt2 │ │ │ ├── Form.unmnt3 │ │ │ ├── Form.unmount │ │ │ ├── Help │ │ │ ├── Menu.choice │ │ │ ├── Text.list │ │ │ ├── Text.mount │ │ │ └── bin │ │ │ ├── auto_attr │ │ │ ├── auto_mod │ │ │ ├── auto_unmount │ │ │ ├── curr_attr │ │ │ ├── imm_mod │ │ │ ├── ls_remote │ │ │ ├── ls_resource │ │ │ └── remote_mount │ └── setup │ │ └── rfs │ │ ├── Help │ │ └── Menu.setup ├── netsel.adm │ ├── Form.ns_modify │ ├── Help │ ├── Menu.ns_nid │ ├── Text.ns_list │ ├── Text.ns_modify │ ├── bin │ │ ├── chgnetconf.sh │ │ └── nslist.sh │ ├── netsel.adm.mk │ ├── selection.menu │ └── selection.mi ├── newform │ ├── newform.c │ └── newform.mk ├── newgrp │ ├── newgrp.c │ └── newgrp.mk ├── news │ ├── news.c │ └── news.mk ├── nice │ ├── nice.c │ └── nice.mk ├── nl │ ├── nl.c │ └── nl.mk ├── nlsadmin │ ├── nlsadmin.c │ ├── nlsadmin.h │ └── nlsadmin.mk ├── nohup │ ├── nohup.c │ └── nohup.mk ├── nserve │ ├── TPnserve.c │ ├── nsdb.c │ ├── nsdb.h │ ├── nserve.c │ ├── nserve.mk │ ├── nsfunc.c │ ├── nslog.h │ ├── nsports.h │ ├── nsrec.c │ ├── nsrec.h │ └── stdns.h ├── nsquery │ ├── nsquery.c │ └── nsquery.mk ├── oamintf │ ├── Install │ ├── PROTOTYPE │ ├── Prototype │ ├── applications │ │ ├── Help │ │ ├── Makefile │ │ └── appl.menu │ ├── buses │ │ ├── HELP │ │ │ └── id.buses.help │ │ ├── Makefile │ │ └── buses.menu │ ├── devices │ │ ├── Help │ │ ├── Makefile │ │ ├── Menu.device │ │ ├── Menu.disk │ │ ├── Menu.drive │ │ ├── Prototype │ │ ├── Text.diskerr │ │ ├── Text.nodev │ │ ├── Text.rsvrd │ │ ├── Text.rsvrd2 │ │ ├── add │ │ │ ├── Form.adddevice │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── Prototype │ │ │ └── Text.addrem │ │ ├── ckdisk.sh │ │ ├── copy │ │ │ ├── Form.diskette │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── Prototype │ │ │ ├── Text.copy1 │ │ │ ├── Text.copy2 │ │ │ ├── Text.copy3 │ │ │ ├── Text.cperr1 │ │ │ ├── Text.cperr2 │ │ │ ├── Text.cperr3 │ │ │ └── copy.menu │ │ ├── devices.menu │ │ ├── devtabcmd.sh │ │ ├── display │ │ │ ├── Form.display │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── Menu.display │ │ │ ├── Prototype │ │ │ ├── Text.disperr │ │ │ ├── Text.display │ │ │ ├── Text.disprem │ │ │ └── dispdisk.sh │ │ ├── erase │ │ │ ├── Form.erase │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── Menu.erase │ │ │ ├── Prototype │ │ │ ├── Text.erase │ │ │ ├── Text.eraseok │ │ │ ├── Text.eraserr │ │ │ ├── cmderr.h │ │ │ ├── floperase.sh │ │ │ ├── spclsize.c │ │ │ └── stddef.h │ │ ├── format │ │ │ ├── Form.format │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── Menu.density │ │ │ ├── Menu.format │ │ │ ├── Prototype │ │ │ ├── Text.fmterr │ │ │ ├── Text.fmtok │ │ │ └── Text.format │ │ ├── getdevice.sh │ │ ├── getdisk.sh │ │ ├── getdlst.sh │ │ ├── listtypes.sh │ │ ├── remove │ │ │ ├── Form.remove │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── Menu.remove │ │ │ ├── Prototype │ │ │ ├── Text.err │ │ │ ├── Text.remove │ │ │ ├── Text.rmnok │ │ │ └── Text.rmok │ │ ├── showgrp.sh │ │ ├── valdevice.sh │ │ ├── valdisk.sh │ │ └── valdrive.sh │ ├── edsysadm │ │ ├── Form.chgmenu │ │ ├── Form.chgtask │ │ ├── Form.collision │ │ ├── Form.getpkg │ │ ├── Form.menu │ │ ├── Form.overwrite │ │ ├── Form.redo │ │ ├── Form.save │ │ ├── Form.savepkg │ │ ├── Form.select │ │ ├── Form.task │ │ ├── Form.test │ │ ├── Help │ │ ├── Makefile │ │ ├── Menu.choices │ │ ├── Menu.menu │ │ ├── Menu.pkg │ │ ├── Menu.task │ │ ├── Menu.testmenu │ │ ├── Prototype │ │ ├── Text.dups │ │ ├── Text.exit1 │ │ ├── Text.exit2 │ │ ├── Text.exit3 │ │ ├── Text.exit4 │ │ ├── Text.exit5 │ │ ├── Text.exit6 │ │ ├── Text.exit7 │ │ ├── Text.gpderr │ │ ├── Text.mkchgerr │ │ ├── Text.ok │ │ ├── Text.pkgerr │ │ ├── Text.success │ │ ├── Text.tmerr │ │ ├── delsysadm.c │ │ ├── edhelp.sh │ │ ├── edsysadm.sh │ │ ├── findmenu.c │ │ ├── getfld.c │ │ ├── getintdef.c │ │ ├── getpkgdesc.c │ │ ├── mkchgs.sh │ │ ├── mkmf.sh │ │ ├── mkpf.sh │ │ ├── mkpkg.sh │ │ ├── test_menu.sh │ │ ├── updt_pkgdesc.c │ │ └── valfiles.sh │ ├── files │ │ ├── Help │ │ ├── Makefile │ │ ├── Menu.fsdevbk │ │ ├── Menu.fsdevch │ │ ├── bin │ │ │ ├── Identify.sh │ │ │ ├── adddef.sh │ │ │ ├── admpriv.sh │ │ │ ├── call_fsck.sh │ │ │ ├── checkfilsys.sh │ │ │ ├── checkfs.sh │ │ │ ├── chkrun.sh │ │ │ ├── ckerrs.sh │ │ │ ├── defdev.sh │ │ │ ├── deffs.sh │ │ │ ├── dev.sh │ │ │ ├── devices.sh │ │ │ ├── devlst.sh │ │ │ ├── dirchk.sh │ │ │ ├── dispdef.sh │ │ │ ├── existsfs.sh │ │ │ ├── filesearch.sh │ │ │ ├── filsys.sh │ │ │ ├── findtype.sh │ │ │ ├── fsnames.sh │ │ │ ├── fstyp_special.sh │ │ │ ├── fstype.sh │ │ │ ├── getchoidis.sh │ │ │ ├── getchoimod.sh │ │ │ ├── getchoirem.sh │ │ │ ├── getchois.sh │ │ │ ├── getdefdev.sh │ │ │ ├── getdeffs.sh │ │ │ ├── getdiskuse.sh │ │ │ ├── getfilesize.sh │ │ │ ├── getfsname.sh │ │ │ ├── getumntdev.sh │ │ │ ├── ifdiskette.sh │ │ │ ├── indeftab.sh │ │ │ ├── invfstab.sh │ │ │ ├── isoam.ins.sh │ │ │ ├── isoam.read.sh │ │ │ ├── isoam.rem.sh │ │ │ ├── labelfsname.sh │ │ │ ├── makefs.sh │ │ │ ├── makesys.sh │ │ │ ├── mkfs_bfs.sh │ │ │ ├── mkfs_s5.sh │ │ │ ├── mkfs_ufs.sh │ │ │ ├── moddef.sh │ │ │ ├── mountfs.sh │ │ │ ├── numblocks.sh │ │ │ ├── numfiles.sh │ │ │ ├── rmdef.sh │ │ │ ├── rmdisk.sh │ │ │ ├── rmfile.sh │ │ │ ├── sysfs.c │ │ │ ├── ufs_fragsiz.sh │ │ │ ├── unmountfs.sh │ │ │ ├── valdefdev.sh │ │ │ ├── valdeffs.sh │ │ │ ├── validdev.sh │ │ │ └── validfs.sh │ │ ├── check │ │ │ ├── Form.check │ │ │ ├── Form.checkfs │ │ │ ├── Help │ │ │ ├── Menu.fsckch │ │ │ ├── Text.ckerrs │ │ │ ├── Text.cknok │ │ │ ├── Text.ckok │ │ │ └── Text.findtype │ │ ├── defaults │ │ │ ├── Form.add │ │ │ ├── Form.add2 │ │ │ ├── Form.display │ │ │ ├── Form.modify │ │ │ ├── Form.modify2 │ │ │ ├── Form.remove │ │ │ ├── Help │ │ │ ├── Menu.fsdevch │ │ │ ├── Menu.fsdisplay │ │ │ ├── Menu.fsmodify │ │ │ ├── Menu.fsremove │ │ │ ├── Text.add2 │ │ │ ├── Text.adddef │ │ │ ├── Text.display │ │ │ ├── Text.moderr │ │ │ ├── Text.modify2 │ │ │ ├── Text.rem │ │ │ └── defaults.menu │ │ ├── diskuse │ │ │ ├── Form.diskuse │ │ │ ├── Help │ │ │ ├── Text.diskuse │ │ │ └── Text.duse2 │ │ ├── display │ │ │ ├── Help │ │ │ └── Text.dispfstyp │ │ ├── file.menu │ │ ├── fileage │ │ │ ├── Form.fileage │ │ │ ├── Help │ │ │ ├── Text.searchnok │ │ │ └── Text.searchok │ │ ├── filesize │ │ │ ├── Form.filesize │ │ │ ├── Help │ │ │ ├── Text.sizenok │ │ │ └── Text.sizeok │ │ ├── identify │ │ │ ├── Form.identify │ │ │ ├── Help │ │ │ └── Text.identify │ │ ├── list │ │ │ ├── Help │ │ │ └── Text.listfiles │ │ ├── make │ │ │ ├── Form.bfs │ │ │ ├── Form.bfs2 │ │ │ ├── Form.bfsins │ │ │ ├── Form.erasefs │ │ │ ├── Form.existsfs │ │ │ ├── Form.make │ │ │ ├── Form.make2 │ │ │ ├── Form.makefsys │ │ │ ├── Form.mkinsert │ │ │ ├── Form.mntpt │ │ │ ├── Form.s5 │ │ │ ├── Form.s52 │ │ │ ├── Form.ufs │ │ │ ├── Form.ufs2 │ │ │ ├── Form.ufsins │ │ │ ├── Help │ │ │ ├── Menu.mkfsch │ │ │ ├── Menu.mklst │ │ │ ├── Text.erase │ │ │ ├── Text.make │ │ │ └── Text.mkr │ │ ├── mount │ │ │ ├── Form.mount │ │ │ ├── Form.mount2 │ │ │ ├── Form.mount3 │ │ │ ├── Help │ │ │ ├── Menu.mntch │ │ │ ├── Text.findtype │ │ │ └── Text.mountok │ │ └── unmount │ │ │ ├── Form.umountfs │ │ │ ├── Form.unmount │ │ │ ├── Help │ │ │ ├── Menu.umntdev │ │ │ └── Text.unmount │ ├── interface │ │ ├── Form.exit │ │ ├── Form.interface │ │ ├── Form.sysadm │ │ ├── Makefile │ │ ├── Menu.interface │ │ ├── Menu.sysadm │ │ ├── Prototype │ │ ├── Text.interface │ │ ├── Text.itemhelp │ │ ├── Text.oamhelp │ │ ├── Text.sysadm │ │ ├── errors.h │ │ ├── express │ │ ├── get_desc.c │ │ ├── id.conf.msg │ │ ├── id.contmsg │ │ ├── id.display.msg │ │ ├── id.fcont.msg │ │ ├── id.form.msg │ │ ├── id.frept.msg │ │ ├── id.msmenu.msg │ │ ├── id.nextpage.ms │ │ ├── id.nodev.msg │ │ ├── id.reptmsg │ │ ├── id.resrv.fs │ │ ├── id.ssmenu.msg │ │ ├── id.trept.msg │ │ ├── ie_build.c │ │ ├── interface.c │ │ ├── itemhelp.c │ │ ├── itemhelp.sh │ │ ├── local.h │ │ ├── main.menu │ │ ├── oam.cmd │ │ ├── oam.init │ │ ├── print_err.c │ │ ├── print_err.h │ │ ├── sysadm.c │ │ └── sysadm.h │ ├── intf_include │ │ ├── inst_err.h │ │ ├── intf.h │ │ ├── menu_io.h │ │ └── menutrace.h │ ├── intf_install │ │ ├── Makefile │ │ ├── Prototype │ │ ├── i.OAMmif │ │ ├── i.mif │ │ ├── intf_inst.sh │ │ └── mod_menus.c │ ├── intf_reloc │ │ ├── Makefile │ │ ├── Prototype │ │ ├── intf_reloc.sh │ │ ├── oldmenu.c │ │ ├── oldmenu.h │ │ └── reloc.c │ ├── intf_remove │ │ ├── Makefile │ │ ├── Prototype │ │ ├── r.OAMintf │ │ ├── r.oam_intf │ │ ├── remove.c │ │ ├── rm_err.c │ │ └── rm_err.h │ ├── libintf │ │ ├── Makefile │ │ ├── find_menu.c │ │ ├── iexpr.c │ │ ├── inst_err.c │ │ ├── main.c │ │ ├── menu_io.c │ │ ├── menutok.c │ │ ├── read_item.c │ │ ├── rec_pkg.c │ │ ├── save_old.c │ │ ├── sys_calls.c │ │ └── write_item.c │ ├── machinemgmt │ │ ├── Form.power │ │ ├── Form.reboot │ │ ├── Help │ │ ├── Makefile │ │ ├── Prototype │ │ ├── Text.power │ │ ├── Text.reboot │ │ ├── Text.whoson │ │ ├── boot.Help │ │ ├── chgstate.sh │ │ ├── machine.menu │ │ ├── power.Help │ │ ├── prtconf.c │ │ ├── reboot.Help │ │ └── whoson.Help │ ├── oamintf.mk │ ├── peripherals │ │ ├── HELP │ │ │ └── peri.help │ │ ├── printers │ │ │ └── HELP │ │ │ │ └── print.help │ │ └── terminals │ │ │ └── HELP │ │ │ ├── lnset.help │ │ │ ├── lnset2.help │ │ │ ├── mkls.help │ │ │ ├── mkls2.help │ │ │ ├── mkls3.help │ │ │ ├── mkls4.help │ │ │ ├── mtty.help │ │ │ └── term.help │ ├── ports │ │ └── HELP │ │ │ └── ports.help │ ├── printers │ │ └── HELP │ │ │ └── print.help │ ├── sched │ │ ├── Form.add │ │ ├── Form.chg │ │ ├── Help │ │ ├── Makefile │ │ ├── Menu.chg │ │ ├── Menu.day │ │ ├── Menu.del │ │ ├── Menu.hour │ │ ├── Menu.minute │ │ ├── Menu.month │ │ ├── Menu.sched │ │ ├── Menu.week │ │ ├── Prototype │ │ ├── Text.addcfm │ │ ├── Text.chgcfm │ │ ├── Text.delcfm │ │ ├── Text.display │ │ ├── Text.noaces │ │ ├── Text.nocron │ │ ├── Text.nodel │ │ └── Text.notask │ ├── softwaremgmt │ │ ├── HELP │ │ │ └── soft.help │ │ ├── Help │ │ ├── Makefile │ │ ├── Menu.pkg │ │ ├── Prototype │ │ ├── check │ │ │ ├── Form.inst │ │ │ ├── Form.orig │ │ │ ├── Form.spool │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── check.menu │ │ │ ├── task.inst │ │ │ ├── task.orig │ │ │ └── task.spool │ │ ├── defaults │ │ │ ├── Form.sd_add │ │ │ ├── Form.sd_list │ │ │ ├── Form.sd_mod │ │ │ ├── Form.sd_remove │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ ├── Menu.logins │ │ │ └── defaults.menu │ │ ├── install │ │ │ ├── Form.install │ │ │ ├── Help │ │ │ └── Makefile │ │ ├── interact │ │ │ ├── Form.interact │ │ │ ├── Help │ │ │ └── Makefile │ │ ├── list │ │ │ ├── Form.list │ │ │ ├── Help │ │ │ ├── Makefile │ │ │ └── Text.list │ │ ├── pkg │ │ ├── read_in │ │ │ ├── Form.read_in │ │ │ ├── Help │ │ │ └── Makefile │ │ ├── remove │ │ │ ├── Form.remove │ │ │ ├── Help │ │ │ └── Makefile │ │ └── software.menu │ ├── syssetup │ │ ├── Form.chgpasswd │ │ ├── Form.datedone │ │ ├── Form.dateset │ │ ├── Form.nodeset │ │ ├── Form.syspasswd │ │ ├── Help │ │ ├── Makefile │ │ ├── Menu.setlogins │ │ ├── Menu.setpgrp │ │ ├── Menu.setsgrp │ │ ├── Menu.syspasswd │ │ ├── Menu.timezones │ │ ├── Prototype │ │ ├── Text.agrpnok │ │ ├── Text.agrpok │ │ ├── Text.apswdnok │ │ ├── Text.apswdok │ │ ├── Text.badprim │ │ ├── Text.badsup │ │ ├── Text.datedisp │ │ ├── Text.datenok │ │ ├── Text.dateok │ │ ├── Text.nodedisp │ │ ├── Text.nodenotok │ │ ├── Text.nodeokay │ │ ├── Text.nologins │ │ ├── Text.setgrpok │ │ ├── datechk.c │ │ ├── dateset.sh │ │ ├── datetime.Help │ │ ├── datetime.menu │ │ ├── gettz.sh │ │ ├── id.nextstep │ │ ├── nodename.Help │ │ ├── nodename.menu │ │ ├── password.Help │ │ ├── syspwck.sh │ │ ├── syspwend.sh │ │ └── syssetup.menu │ ├── usermgmt │ │ ├── Form.add │ │ ├── Form.addgrp │ │ ├── Form.addpswd │ │ ├── Form.addusr │ │ ├── Form.defaults │ │ ├── Form.list │ │ ├── Form.modgrp1 │ │ ├── Form.modgrp2 │ │ ├── Form.modify │ │ ├── Form.modusr1 │ │ ├── Form.modusr2 │ │ ├── Form.password │ │ ├── Form.remove │ │ ├── Form.rmgrp │ │ ├── Form.rmusr1 │ │ ├── Form.rmusr2 │ │ ├── Help │ │ ├── Makefile │ │ ├── Menu.logins │ │ ├── Menu.mlogins │ │ ├── Menu.passwd │ │ ├── Menu.pgrp │ │ ├── Menu.sgrp │ │ ├── Prototype │ │ ├── Text.agrpnok │ │ ├── Text.agrpok │ │ ├── Text.apswdnok │ │ ├── Text.apswdok │ │ ├── Text.ausrnok │ │ ├── Text.badprim │ │ ├── Text.badsup │ │ ├── Text.dfltnok │ │ ├── Text.dfltok │ │ ├── Text.lsgrp │ │ ├── Text.lsusr │ │ ├── Text.mgrpnok │ │ ├── Text.mgrpok │ │ ├── Text.musrnok │ │ ├── Text.musrok │ │ ├── Text.pswdnok │ │ ├── Text.pswdok │ │ ├── Text.rgrpnok │ │ ├── Text.rgrpok │ │ ├── Text.rmgrp │ │ ├── Text.rusrnok │ │ ├── Text.rusrok │ │ ├── add.Help │ │ ├── addgrp.sh │ │ ├── chk_logins.sh │ │ ├── chk_pgrp.sh │ │ ├── chk_sgrp.sh │ │ ├── defaults.Help │ │ ├── getdfl.c │ │ ├── getmaxuid.c │ │ ├── getsupgrp.sh │ │ ├── getval.sh │ │ ├── giddflt.sh │ │ ├── grpchk.sh │ │ ├── id.contmsg │ │ ├── id.reptmsg │ │ ├── list.Help │ │ ├── lsgrp.c │ │ ├── moddate.c │ │ ├── modgrp.sh │ │ ├── modify.Help │ │ ├── password.Help │ │ ├── pswdchk.sh │ │ ├── pswddef.sh │ │ ├── redeflt.sh │ │ ├── remove.Help │ │ ├── uiddflt.sh │ │ ├── uniq_gid.sh │ │ ├── uniq_gnam.sh │ │ ├── uniq_lnam.sh │ │ ├── uniq_uid.sh │ │ └── user.menu │ └── xx │ │ ├── FACE3.2 │ │ ├── HELP │ │ │ ├── Makefile │ │ │ ├── PS │ │ │ │ ├── Makefile │ │ │ │ ├── T.hall │ │ │ │ ├── T.hprset │ │ │ │ └── WHEEL │ │ │ │ │ ├── Makefile │ │ │ │ │ └── T.hwheel │ │ │ ├── T.h1.help │ │ │ ├── T.h7.cmd │ │ │ ├── T.hadmin │ │ │ ├── backup │ │ │ │ ├── Makefile │ │ │ │ ├── T.hbackup │ │ │ │ ├── private │ │ │ │ │ ├── T.hbackpri │ │ │ │ │ ├── T.hbkdir1 │ │ │ │ │ └── T.hdevice │ │ │ │ ├── sched │ │ │ │ │ ├── T.hadd1 │ │ │ │ │ ├── T.hadd2 │ │ │ │ │ ├── T.hadd3 │ │ │ │ │ ├── T.hadd4 │ │ │ │ │ ├── T.hadd5 │ │ │ │ │ ├── T.hchg │ │ │ │ │ ├── T.hdel │ │ │ │ │ ├── T.hdpl │ │ │ │ │ └── T.hsched │ │ │ │ └── system │ │ │ │ │ ├── T.hbacksys │ │ │ │ │ └── T.husers │ │ │ ├── dskopts │ │ │ │ ├── Makefile │ │ │ │ └── T.hdskopts │ │ │ ├── hwset │ │ │ │ ├── Makefile │ │ │ │ └── T.hhard │ │ │ ├── logins │ │ │ │ ├── Makefile │ │ │ │ └── T.hlogins │ │ │ ├── mailset │ │ │ │ ├── Makefile │ │ │ │ └── T.hmail │ │ │ ├── restore │ │ │ │ ├── Makefile │ │ │ │ ├── T.hdevice │ │ │ │ ├── T.hoverwr1 │ │ │ │ ├── T.hprivate │ │ │ │ ├── T.hrestore │ │ │ │ ├── T.hselect │ │ │ │ └── system │ │ │ │ │ └── T.hsystem │ │ │ └── sched │ │ │ │ ├── Makefile │ │ │ │ └── T.hsched │ │ ├── Makefile │ │ ├── OBJECTS │ │ │ ├── Makefile │ │ │ ├── Menu.admin │ │ │ ├── Menu.appsetup │ │ │ ├── Menu.h0.toc │ │ │ ├── Menu.programs │ │ │ ├── PS │ │ │ │ ├── FILTER │ │ │ │ │ ├── Form.add │ │ │ │ │ ├── Form.cd │ │ │ │ │ ├── Form.change │ │ │ │ │ ├── Form.fadd │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Menu.del │ │ │ │ │ ├── Menu.filter │ │ │ │ │ ├── Menu.input │ │ │ │ │ ├── Menu.output │ │ │ │ │ ├── Menu.pname │ │ │ │ │ ├── Menu.ptype │ │ │ │ │ ├── Text.addcfm │ │ │ │ │ ├── Text.all │ │ │ │ │ ├── Text.chgcfm │ │ │ │ │ ├── Text.delcfm │ │ │ │ │ ├── Text.display │ │ │ │ │ ├── Text.nochg │ │ │ │ │ ├── Text.nofltr │ │ │ │ │ └── Text.none │ │ │ │ ├── FORM │ │ │ │ │ ├── Form.add │ │ │ │ │ ├── Form.asel │ │ │ │ │ ├── Form.change │ │ │ │ │ ├── Form.csel │ │ │ │ │ ├── Form.display │ │ │ │ │ ├── Form.dsel │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Menu.alert │ │ │ │ │ ├── Menu.fdelete │ │ │ │ │ ├── Menu.form │ │ │ │ │ ├── Menu.muser │ │ │ │ │ ├── Text.cadd │ │ │ │ │ ├── Text.cadel │ │ │ │ │ ├── Text.cchg │ │ │ │ │ ├── Text.cdel │ │ │ │ │ ├── Text.nchg │ │ │ │ │ ├── Text.nmark │ │ │ │ │ ├── Text.nodis │ │ │ │ │ ├── Text.nofchg │ │ │ │ │ └── Text.noform │ │ │ │ ├── Makefile │ │ │ │ ├── Menu.all │ │ │ │ ├── Menu.prset │ │ │ │ ├── Text.datpriv │ │ │ │ ├── Text.prset │ │ │ │ └── WHEEL │ │ │ │ │ ├── Form.asel │ │ │ │ │ ├── Form.csel │ │ │ │ │ ├── Form.display │ │ │ │ │ ├── Form.dsel │ │ │ │ │ ├── Form.wadd │ │ │ │ │ ├── Form.wchg │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Menu.alert │ │ │ │ │ ├── Menu.wdelete │ │ │ │ │ ├── Menu.wheel │ │ │ │ │ ├── Text.cadd │ │ │ │ │ ├── Text.cadel │ │ │ │ │ ├── Text.cchg │ │ │ │ │ ├── Text.cdel │ │ │ │ │ ├── Text.nchg │ │ │ │ │ ├── Text.nmark │ │ │ │ │ ├── Text.nodis │ │ │ │ │ ├── Text.nowchg │ │ │ │ │ └── Text.nowheel │ │ │ ├── Text.h │ │ │ ├── Text.help │ │ │ ├── Text.rsterr │ │ │ ├── backup │ │ │ │ ├── Makefile │ │ │ │ └── Menu.backup │ │ │ ├── dskopts │ │ │ │ ├── Makefile │ │ │ │ └── Menu.dskopts │ │ │ ├── fs │ │ │ │ ├── Makefile │ │ │ │ └── Menu.filsys │ │ │ ├── hwset │ │ │ │ ├── Makefile │ │ │ │ ├── Menu.hard │ │ │ │ └── Text.compat │ │ │ ├── logins │ │ │ │ ├── Makefile │ │ │ │ └── Menu.logins │ │ │ ├── mailset │ │ │ │ ├── Makefile │ │ │ │ └── Menu.mail │ │ │ └── restore │ │ │ │ ├── Makefile │ │ │ │ └── Menu.restore │ │ ├── README │ │ ├── admbin │ │ │ ├── Makefile │ │ │ ├── PS │ │ │ │ ├── CONFIG │ │ │ │ │ ├── Makefile │ │ │ │ │ └── alphanum.c │ │ │ │ ├── FILTER │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── add.sh │ │ │ │ │ ├── chgflt.c │ │ │ │ │ ├── chkdel.sh │ │ │ │ │ ├── chkmode.sh │ │ │ │ │ ├── delete.sh │ │ │ │ │ ├── mitem.sh │ │ │ │ │ ├── mode.sh │ │ │ │ │ ├── name.sh │ │ │ │ │ ├── option.sh │ │ │ │ │ ├── pname.sh │ │ │ │ │ ├── ptype.sh │ │ │ │ │ └── seek.sh │ │ │ │ ├── FORM │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── addform.sh │ │ │ │ │ ├── allvalid.sh │ │ │ │ │ ├── alname.sh │ │ │ │ │ ├── avlfm.sh │ │ │ │ │ ├── chkfile.sh │ │ │ │ │ ├── cspwls.sh │ │ │ │ │ ├── depend.sh │ │ │ │ │ ├── getall.sh │ │ │ │ │ ├── getform.sh │ │ │ │ │ ├── mkform.sh │ │ │ │ │ ├── noform.sh │ │ │ │ │ ├── pu.sh │ │ │ │ │ ├── rmform.sh │ │ │ │ │ ├── user.sh │ │ │ │ │ ├── valcon.sh │ │ │ │ │ ├── valcpi.sh │ │ │ │ │ ├── valfreq.sh │ │ │ │ │ ├── vallpi.sh │ │ │ │ │ ├── valpr.sh │ │ │ │ │ └── vcmount.sh │ │ │ │ ├── Makefile │ │ │ │ └── WHEEL │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── addwheel.sh │ │ │ │ │ ├── avlfm.sh │ │ │ │ │ ├── getall.sh │ │ │ │ │ ├── getwheel.sh │ │ │ │ │ ├── mkwheel.sh │ │ │ │ │ ├── nowheel.sh │ │ │ │ │ ├── rmwheel.sh │ │ │ │ │ └── vcmount.sh │ │ │ └── chkuser.c │ │ ├── admin │ │ │ ├── Base-adm │ │ │ ├── Makefile │ │ │ ├── menu_add.c │ │ │ └── useradm │ │ └── bin │ │ │ ├── Makefile │ │ │ ├── doexec.sh │ │ │ ├── getchg.c │ │ │ ├── getdel.c │ │ │ ├── getname.sh │ │ │ ├── getword.c │ │ │ └── slash.c │ │ ├── Makefile │ │ └── OAM4.0 │ │ ├── Makefile │ │ ├── colorpref │ │ ├── devices.mi │ │ ├── file.mi │ │ └── oam.mi ├── oampkg │ ├── Install │ ├── Prototype │ ├── hdrs │ │ └── install.h │ ├── installf │ │ ├── Makefile │ │ ├── dofinal.c │ │ ├── installf.c │ │ ├── main.c │ │ └── removef.c │ ├── libinst │ │ ├── Makefile │ │ ├── Makefile3.2 │ │ ├── copyf.c │ │ ├── dockdeps.c │ │ ├── echo.c │ │ ├── eptstat.c │ │ ├── finalck.c │ │ ├── lockinst.c │ │ ├── ocfile.c │ │ ├── pathdup.c │ │ ├── pkgdbmerg.c │ │ ├── procmap.c │ │ ├── psvr4ck.c │ │ ├── ptext.c │ │ ├── putparam.c │ │ ├── qreason.c │ │ ├── qstrdup.c │ │ ├── setadmin.c │ │ ├── setlist.c │ │ ├── srcpath.c │ │ └── stub.c │ ├── oampkg.mk │ ├── pkgadd │ │ ├── Makefile │ │ ├── main.c │ │ ├── msgdefs.h │ │ ├── presvr4.c │ │ └── quit.c │ ├── pkgchk │ │ ├── Makefile │ │ ├── checkmap.c │ │ ├── ckentry.c │ │ └── main.c │ ├── pkginfo │ │ ├── Makefile │ │ ├── pkginfo.c │ │ ├── pkgname.c │ │ └── pkgparam.c │ ├── pkginstall │ │ ├── Makefile │ │ ├── backup.c │ │ ├── check.c │ │ ├── cppath.c │ │ ├── dockspace.c │ │ ├── getbase.c │ │ ├── getinst.c │ │ ├── instvol.c │ │ ├── main.c │ │ ├── merginfo.c │ │ ├── pkgenv.c │ │ ├── pkgvolume.c │ │ ├── predepend.c │ │ ├── quit.c │ │ ├── reqexec.c │ │ └── sortmap.c │ ├── pkgmk │ │ ├── Makefile │ │ ├── main.c │ │ ├── mkpkgmap.c │ │ ├── quit.c │ │ └── splpkgmap.c │ ├── pkgproto │ │ ├── Makefile │ │ └── main.c │ ├── pkgremove │ │ ├── Makefile │ │ ├── check.c │ │ ├── delmap.c │ │ ├── main.c │ │ ├── predepend.c │ │ └── quit.c │ ├── pkgrm │ │ ├── Makefile │ │ ├── main.c │ │ ├── msgdefs.h │ │ ├── presvr4.c │ │ └── quit.c │ ├── pkgscripts │ │ ├── Makefile │ │ ├── cmdexec.c │ │ ├── default │ │ ├── i.awk │ │ ├── i.build │ │ ├── i.sed │ │ ├── r.awk │ │ ├── r.build │ │ └── r.sed │ └── pkgtrans │ │ ├── Makefile │ │ └── main.c ├── oamuser │ ├── Prototype │ ├── group │ │ ├── add_group.c │ │ ├── addgrpmem.c │ │ ├── del_group.c │ │ ├── findgid.c │ │ ├── getprimary.c │ │ ├── gid.c │ │ ├── groupadd.c │ │ ├── groupdel.c │ │ ├── groupmod.c │ │ ├── makefile │ │ ├── messages.c │ │ ├── messages.h │ │ └── mod_group.c │ ├── inc │ │ └── users.h │ ├── lib │ │ ├── copyfile.c │ │ ├── dates.c │ │ ├── errmsg.c │ │ ├── file.c │ │ ├── get_ngm.c │ │ ├── getkval.c │ │ ├── makefile │ │ ├── prerrno.c │ │ ├── putgrent.c │ │ ├── ugdates.dat │ │ ├── vexpire.c │ │ ├── vgid.c │ │ ├── vgname.c │ │ ├── vgroup.c │ │ ├── vlogin.c │ │ └── vuid.c │ ├── oamuser.mk │ └── user │ │ ├── call_pass.c │ │ ├── expdate.c │ │ ├── finduid.c │ │ ├── getdefs.c │ │ ├── getngroups.c │ │ ├── groups.c │ │ ├── homedir.c │ │ ├── isbusy.c │ │ ├── makefile │ │ ├── messages.c │ │ ├── messages.h │ │ ├── movedir.c │ │ ├── putdefs.c │ │ ├── putusrdefs.c │ │ ├── rmfiles.c │ │ ├── stdprofile │ │ ├── uid.c │ │ ├── useradd.c │ │ ├── userdefs.c │ │ ├── userdel.c │ │ ├── userdisp.h │ │ ├── usermod.c │ │ └── val_lgrp.c ├── oawk │ ├── EXPLAIN │ ├── README │ ├── awk.def │ ├── awk.g.y │ ├── awk.lx.l │ ├── b.c │ ├── freeze.c │ ├── lib.c │ ├── main.c │ ├── makeprctab.c │ ├── oawk.mk │ ├── parse.c │ ├── proc.c │ ├── run.c │ ├── token.c │ ├── tokenscript │ └── tran.c ├── od │ ├── od.c │ └── od.mk ├── pack │ ├── pack.c │ └── pack.mk ├── passmgmt │ ├── datemsk │ ├── passmgmt.c │ └── passmgmt.mk ├── passwd │ ├── passwd.c │ ├── passwd.dfl │ └── passwd.mk ├── paste │ ├── paste.c │ └── paste.mk ├── pcintf │ ├── bridge │ │ ├── common.c │ │ ├── const.h │ │ ├── crypt.c │ │ ├── crypt.xenix │ │ ├── dir_access.c │ │ ├── dir_search.c │ │ ├── disksize.c │ │ ├── diskstat.c │ │ ├── dosmesg.c │ │ ├── error.c │ │ ├── exec.c │ │ ├── flip.h │ │ ├── getcwd.c │ │ ├── ifc_list.c │ │ ├── loadpci.c │ │ ├── lock.c │ │ ├── log.c │ │ ├── log.h │ │ ├── logpacket.c │ │ ├── make.mstr │ │ ├── makefile │ │ ├── mapfile.c │ │ ├── mapname.c │ │ ├── match.c │ │ ├── mem.c │ │ ├── memory.c │ │ ├── net.c │ │ ├── p_chdir.c │ │ ├── p_chmod.c │ │ ├── p_close.c │ │ ├── p_connect.c │ │ ├── p_conread.c │ │ ├── p_consvr.c │ │ ├── p_create.c │ │ ├── p_delete.c │ │ ├── p_exit.c │ │ ├── p_fstatus.c │ │ ├── p_get_err.c │ │ ├── p_ipc.c │ │ ├── p_lock.c │ │ ├── p_lseek.c │ │ ├── p_mapname.c │ │ ├── p_mapsvr.c │ │ ├── p_mkdir.c │ │ ├── p_open.c │ │ ├── p_pwd.c │ │ ├── p_read.c │ │ ├── p_rename.c │ │ ├── p_rmdir.c │ │ ├── p_search.c │ │ ├── p_server.c │ │ ├── p_shminit.c │ │ ├── p_termout.c │ │ ├── p_uexec.c │ │ ├── p_version.c │ │ ├── p_write.c │ │ ├── pci_ipc.h │ │ ├── pci_types.h │ │ ├── pcidebug.c │ │ ├── pckframe.c │ │ ├── pw_gecos.h │ │ ├── remotelog.c │ │ ├── rs232.c │ │ ├── sccs.h │ │ ├── semfunc.c │ │ ├── serchk.c │ │ ├── serial.h │ │ ├── string.c │ │ ├── swap.c │ │ ├── system.h │ │ ├── testmain.c │ │ ├── translate.c │ │ ├── truncate.c │ │ ├── ttymodes.c │ │ ├── unmapname.c │ │ ├── valid.c │ │ ├── version.h │ │ ├── vfile.c │ │ └── xdir.h │ ├── pcintf.mk │ ├── pkg_lockset │ │ ├── README │ │ ├── internal.h │ │ ├── lockset.c │ │ ├── lockset.h │ │ ├── lset_estr.c │ │ ├── lsetclr.c │ │ ├── lsetcount.c │ │ ├── lsetnew.c │ │ ├── lsetrmv.c │ │ ├── lsetset.c │ │ ├── lsetunuse.c │ │ ├── lsetuse.c │ │ ├── makefile │ │ └── sccs.h │ ├── pkg_rlock │ │ ├── README │ │ ├── USAGE │ │ ├── internal.h │ │ ├── makefile │ │ ├── multi_cfg.h │ │ ├── multi_init.c │ │ ├── multi_lock.c │ │ ├── multi_open.c │ │ ├── rlock.h │ │ ├── rlock_cfg.h │ │ ├── rlock_estr.c │ │ ├── rlock_init.c │ │ ├── rlock_prim.c │ │ ├── rlockshm.c │ │ ├── sccs.h │ │ ├── shm_lock.c │ │ ├── shm_open.c │ │ └── state.c │ ├── support │ │ ├── sys5 │ │ │ ├── errlogger │ │ │ ├── pcistart │ │ │ └── pcistop │ │ └── sys5_4 │ │ │ ├── README │ │ │ ├── S95pci │ │ │ └── pciptys │ └── util │ │ ├── dos2unix.c │ │ ├── makefile │ │ └── unix2dos.c ├── pg │ ├── pg.c │ └── pg.mk ├── pkging │ ├── Install.sh │ ├── Install.tape │ ├── displaypkg │ ├── flop_disk.c │ ├── flop_num.c │ ├── get_sel.c │ ├── installpkg │ ├── installpkg.r │ ├── message.c │ ├── pkging.mk │ ├── removepkg │ └── removepkg.r ├── portmgmt │ ├── Help │ ├── Prototype │ ├── bin │ │ ├── ckbaud.sh │ │ ├── ckfile.sh │ │ ├── ckwcount.sh │ │ ├── findpmtype.sh │ │ ├── lsopts.sh │ │ ├── modifypm.sh │ │ ├── pmadmopts.sh │ │ ├── pmgetpid.sh │ │ ├── psmod.sh │ │ ├── pstest.sh │ │ ├── sacopts.sh │ │ ├── settinglist.sh │ │ ├── tmopts.sh │ │ ├── uniq_label.sh │ │ ├── uniq_pmtag.sh │ │ └── uniq_svctag.sh │ ├── port_monitors │ │ ├── Form.pm_add │ │ ├── Form.pm_modify │ │ ├── Help │ │ ├── Menu.pm_disabl │ │ ├── Menu.pm_enable │ │ ├── Menu.pm_list │ │ ├── Menu.pm_lstag │ │ ├── Menu.pm_lstype │ │ ├── Menu.pm_modify │ │ ├── Menu.pm_remove │ │ ├── Menu.pm_start │ │ ├── Menu.pm_stop │ │ ├── Text.pm_list │ │ ├── Text.pm_lsall │ │ ├── pm.menu │ │ └── pm.mk │ ├── port_quick │ │ ├── Form.add │ │ ├── Form.rm │ │ ├── Help │ │ ├── Makefile │ │ ├── Menu.ap │ │ ├── Menu.rp │ │ ├── Text.cfa │ │ ├── Text.cfr │ │ ├── Text.priv │ │ ├── isastream.c │ │ ├── q-add.sh │ │ ├── q-rm.sh │ │ ├── quick.menu │ │ └── quick.mk │ ├── port_services │ │ ├── Form.ps_add │ │ ├── Form.ps_addls │ │ ├── Form.ps_addtm │ │ ├── Form.ps_adduk │ │ ├── Form.ps_modls │ │ ├── Form.ps_modtm │ │ ├── Help │ │ ├── Menu.c_labels │ │ ├── Menu.ps_add │ │ ├── Menu.ps_atag │ │ ├── Menu.ps_atype │ │ ├── Menu.ps_disabl │ │ ├── Menu.ps_enable │ │ ├── Menu.ps_list │ │ ├── Menu.ps_lstag │ │ ├── Menu.ps_lstype │ │ ├── Menu.ps_modify │ │ ├── Menu.ps_modtm │ │ ├── Menu.ps_remove │ │ ├── Text.ps_list │ │ ├── Text.ps_lsall │ │ ├── Text.ps_lstag │ │ ├── Text.ps_msg │ │ ├── pmckmod.c │ │ ├── ps.menu │ │ └── ps.mk │ ├── portmgmt.mk │ ├── ports.menu │ └── tty_settings │ │ ├── Form.tty_add │ │ ├── Help │ │ ├── Menu.c_labels │ │ ├── Menu.tty_baud │ │ ├── Menu.tty_list │ │ ├── Menu.tty_remove │ │ ├── Text.tty_add │ │ ├── Text.tty_list │ │ ├── tty.menu │ │ ├── tty.mk │ │ ├── ttylist.c │ │ └── ttyvalues ├── pr │ ├── pr.c │ └── pr.mk ├── printf │ ├── printf.c │ └── printf.mk ├── priocntl │ ├── priocntl.c │ ├── priocntl.h │ ├── priocntl.mk │ ├── rtpriocntl.c │ ├── subr.c │ └── tspriocntl.c ├── prof │ ├── prof.c │ └── prof.mk ├── profiler │ ├── prfdc.c │ ├── prfld.c │ ├── prfpr.c │ ├── prfsnap.c │ ├── prfstat.c │ └── profiler.mk ├── proto-cmd │ ├── contents.c │ ├── default │ ├── fixswap.c │ ├── links.c │ ├── machine_type.c │ ├── mkflist.c │ ├── not_found.c │ ├── pkginfo │ ├── proto-cmd.mk │ ├── setmods.c │ └── x286.c ├── ps │ ├── ps.c │ └── ps.mk ├── pt_chmod │ ├── pt_chmod.c │ └── pt_chmod.mk ├── pwck │ ├── pwck.c │ └── pwck.mk ├── pwconv │ ├── pwconv.c │ └── pwconv.mk ├── pwd │ ├── pwd.c │ └── pwd.mk ├── random │ ├── random.c │ └── random.mk ├── rconsole │ ├── chkconsole.c │ ├── conflgs.c │ ├── isat386.c │ └── rconsole.mk ├── regcmp │ ├── regcmp.c │ └── regcmp.mk ├── restore │ ├── restore.mk │ └── restore.sh ├── rfadmin │ ├── rfadmin.c │ └── rfadmin.mk ├── rfpasswd │ ├── rfpasswd.c │ └── rfpasswd.mk ├── rfsetup │ ├── rfsetup.c │ └── rfsetup.mk ├── rfstart │ ├── rfstart.c │ └── rfstart.mk ├── rfstop │ ├── rfstop.c │ └── rfstop.mk ├── rfuadmin │ ├── rfuadmin.mk │ └── rfuadmin.sh ├── rfudaemon │ ├── rfudaemon.c │ └── rfudaemon.mk ├── rm │ ├── rm.c │ └── rm.mk ├── rmdir │ ├── rmdir.c │ └── rmdir.mk ├── rmntstat │ ├── rmntstat.c │ └── rmntstat.mk ├── rmount │ ├── fqn.c │ ├── mntlock.c │ ├── rd_rmnttab.c │ ├── rmnttry.c │ ├── rmount.c │ ├── rmount.mk │ ├── rumount.c │ └── wr_rmnttab.c ├── rpcbind │ ├── check_bound.c │ ├── pmap_svc.c │ ├── rpcb_svc.c │ ├── rpcbind.c │ ├── rpcbind.h │ ├── rpcbind.mk │ └── stricmp.c ├── rpcgen │ ├── rpc_clntout.c │ ├── rpc_cout.c │ ├── rpc_hout.c │ ├── rpc_main.c │ ├── rpc_parse.c │ ├── rpc_parse.h │ ├── rpc_scan.c │ ├── rpc_scan.h │ ├── rpc_svcout.c │ ├── rpc_tblout.c │ ├── rpc_util.c │ ├── rpc_util.h │ └── rpcgen.mk ├── rpcinfo │ ├── rpcinfo.c │ └── rpcinfo.mk ├── rpcsvc │ ├── domainname.c │ ├── keyprop │ ├── net_files │ │ ├── hosts │ │ ├── masters │ │ ├── netid │ │ ├── publickey │ │ ├── rpc │ │ ├── services │ │ └── slaves │ ├── rpc.rusersd.c │ ├── rpcsvc.mk │ ├── rusers.c │ ├── rwall.c │ ├── rwall_clnt.c │ ├── rwall_subr.c │ ├── rwall_svc.c │ ├── spray.c │ ├── spray_clnt.c │ ├── spray_subr.c │ └── spray_svc.c ├── sa │ ├── perf.sh │ ├── sa.h │ ├── sa.mk │ ├── sa1.sh │ ├── sa2.sh │ ├── sadc.c │ ├── sadp.c │ ├── saga.c │ ├── sagb.c │ ├── saghdr.h │ ├── sar.c │ ├── sys │ │ ├── disktd.h │ │ ├── pdi.h │ │ ├── scsi.h │ │ ├── sd01.h │ │ └── sdi.h │ └── timex.c ├── saf │ ├── adm.h │ ├── admutil.c │ ├── extern.h │ ├── global.c │ ├── log.c │ ├── misc.c │ ├── misc.h │ ├── msgs.h │ ├── pmadm.c │ ├── readtab.c │ ├── sac.c │ ├── sacadm.c │ ├── saf.mk │ ├── structs.h │ └── util.c ├── sccs │ ├── chk_fsync │ ├── cmd │ │ ├── admin.c │ │ ├── cmd.mk │ │ ├── comb.c │ │ ├── delta.c │ │ ├── get.c │ │ ├── help.c │ │ ├── help2.c │ │ ├── prs.c │ │ ├── rmchg.c │ │ ├── sccsdiff.sh │ │ ├── unget.c │ │ ├── val.c │ │ ├── vc.c │ │ └── what.c │ ├── hdr │ │ ├── defines.h │ │ ├── filehand.h │ │ └── had.h │ ├── help.d │ │ ├── ad │ │ ├── bd │ │ ├── cb │ │ ├── cm │ │ ├── cmds │ │ ├── co │ │ ├── de │ │ ├── default │ │ ├── ge │ │ ├── he │ │ ├── help.mk │ │ ├── prs │ │ ├── rc │ │ ├── un │ │ ├── ut │ │ └── vc │ ├── lib │ │ ├── cassi │ │ │ ├── cassi.mk │ │ │ ├── cmrcheck.c │ │ │ ├── deltack.c │ │ │ ├── error.c │ │ │ ├── filehand.c │ │ │ └── gf.c │ │ ├── comobj │ │ │ ├── auxf.c │ │ │ ├── chkid.c │ │ │ ├── chksid.c │ │ │ ├── comobj.mk │ │ │ ├── date_ab.c │ │ │ ├── date_ba.c │ │ │ ├── del_ab.c │ │ │ ├── del_ba.c │ │ │ ├── dodelt.c │ │ │ ├── dofile.c │ │ │ ├── dohist.c │ │ │ ├── doie.c │ │ │ ├── dolist.c │ │ │ ├── encode.c │ │ │ ├── eqsid.c │ │ │ ├── flushto.c │ │ │ ├── fmterr.c │ │ │ ├── getline.c │ │ │ ├── logname.c │ │ │ ├── newstats.c │ │ │ ├── permiss.c │ │ │ ├── pf_ab.c │ │ │ ├── putline.c │ │ │ ├── rdmod.c │ │ │ ├── setup.c │ │ │ ├── sid_ab.c │ │ │ ├── sid_ba.c │ │ │ ├── sidtoser.c │ │ │ ├── sinit.c │ │ │ └── stats_ab.c │ │ ├── lib.mk │ │ └── mpwlib │ │ │ ├── abspath.c │ │ │ ├── any.c │ │ │ ├── cat.c │ │ │ ├── clean.c │ │ │ ├── dname.c │ │ │ ├── fatal.c │ │ │ ├── fdfopen.c │ │ │ ├── fmalloc.c │ │ │ ├── i386 │ │ │ ├── alloca.s │ │ │ └── move.s │ │ │ ├── imatch.c │ │ │ ├── index.c │ │ │ ├── lockit.c │ │ │ ├── logname.c │ │ │ ├── mpwlib.mk │ │ │ ├── patoi.c │ │ │ ├── rename.c │ │ │ ├── repl.c │ │ │ ├── satoi.c │ │ │ ├── setsig.c │ │ │ ├── sname.c │ │ │ ├── strend.c │ │ │ ├── trnslat.c │ │ │ ├── userexit.c │ │ │ ├── xcreat.c │ │ │ ├── xlink.c │ │ │ ├── xmsg.c │ │ │ ├── xopen.c │ │ │ ├── xpipe.c │ │ │ ├── xunlink.c │ │ │ └── zero.c │ └── sccs.mk ├── sco │ ├── MS-DOS.c │ ├── MS-DOS.h │ ├── MS-DOS_boot.h │ ├── README │ ├── add_device.c │ ├── alloc_clust.c │ ├── basename.c │ ├── chain_clust.c │ ├── close_device.c │ ├── convert.c │ ├── critical.c │ ├── deflt.c │ ├── defs.h │ ├── del_label.c │ ├── disp_vol.c │ ├── display.c │ ├── dos_fil_size.c │ ├── dos_mod_date.c │ ├── dos_mod_time.c │ ├── doscat.c │ ├── doscp.c │ ├── dosformat.c │ ├── dosinfo.c │ ├── doslabel.c │ ├── dosls.c │ ├── dosmkdir.c │ ├── dosrm.c │ ├── fatlist.c │ ├── fdread.c │ ├── fix_slash.c │ ├── font8x14.src │ ├── font8x16.src │ ├── font8x8.src │ ├── free_space.c │ ├── get_assign.c │ ├── get_label.c │ ├── ioctl.c │ ├── is_dir_empty.c │ ├── keys │ ├── lex.l │ ├── loc_free_dir.c │ ├── locate.c │ ├── lookup_dev.c │ ├── lookup_drv.c │ ├── make_label.c │ ├── mapchan.c │ ├── mapio.c │ ├── mapkey.c │ ├── mapscrn.c │ ├── mapstr.c │ ├── mkdir.c │ ├── msdos │ ├── my_fgets.c │ ├── next_cluster.c │ ├── next_sector.c │ ├── oops.c │ ├── open_device.c │ ├── parse_name.c │ ├── read_file.c │ ├── read_sector.c │ ├── rm_file.c │ ├── scan_dos_dir.c │ ├── sco.mk │ ├── scompat.c │ ├── screens │ ├── setcolor.c │ ├── strings │ ├── strupr.c │ ├── trchan.c │ ├── ud_copy.c │ ├── uu_copy.c │ ├── vidi.c │ ├── write_fat.c │ └── write_sector.c ├── script │ ├── script.c │ └── script.mk ├── sdb │ ├── cfront │ │ ├── CC.1 │ │ ├── README │ │ ├── bsd.fix │ │ ├── incl │ │ │ ├── assert.h │ │ │ ├── common.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── curses.h │ │ │ ├── dial.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── ftw.h │ │ │ ├── generic.h │ │ │ ├── grp.h │ │ │ ├── ldfcn.h │ │ │ ├── libc.h │ │ │ ├── malloc.h │ │ │ ├── math.h │ │ │ ├── memory.h │ │ │ ├── mon.h │ │ │ ├── nlist.h │ │ │ ├── osfcn.h │ │ │ ├── plot.h │ │ │ ├── pw.h │ │ │ ├── pwd.h │ │ │ ├── rand48.h │ │ │ ├── search.h │ │ │ ├── setjmp.h │ │ │ ├── signal.h │ │ │ ├── stdarg.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── stream.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ │ ├── ipc.h │ │ │ │ ├── lock.h │ │ │ │ ├── msg.h │ │ │ │ ├── sem.h │ │ │ │ ├── shm.h │ │ │ │ ├── stat.h │ │ │ │ ├── times.h │ │ │ │ └── utsname.h │ │ │ ├── task.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── ustat.h │ │ │ ├── utime.h │ │ │ ├── utmp.h │ │ │ ├── varargs.h │ │ │ └── vector.h │ │ ├── lib │ │ │ ├── mk │ │ │ │ └── makefile │ │ │ ├── new │ │ │ │ ├── _delete.c │ │ │ │ ├── _handler.c │ │ │ │ ├── _new.c │ │ │ │ └── _vec.c │ │ │ └── static │ │ │ │ ├── _ctor.c │ │ │ │ ├── _dtor.c │ │ │ │ ├── _main.c │ │ │ │ ├── dtors.c │ │ │ │ ├── exit.c │ │ │ │ └── munch.c │ │ ├── makefile │ │ ├── scratch │ │ │ ├── __ctdt..c │ │ │ ├── bsd.sed │ │ │ ├── lib │ │ │ │ ├── _ctor..c │ │ │ │ ├── _delete..c │ │ │ │ ├── _dtor..c │ │ │ │ ├── _handler..c │ │ │ │ ├── _main..c │ │ │ │ ├── _new..c │ │ │ │ ├── _vec..c │ │ │ │ ├── dtors..c │ │ │ │ └── exit..c │ │ │ ├── makefile │ │ │ ├── mnch │ │ │ │ └── munch..c │ │ │ └── src │ │ │ │ ├── alloc..c │ │ │ │ ├── dcl..c │ │ │ │ ├── dcl2..c │ │ │ │ ├── dcl3..c │ │ │ │ ├── del..c │ │ │ │ ├── error..c │ │ │ │ ├── expand..c │ │ │ │ ├── expr..c │ │ │ │ ├── expr2..c │ │ │ │ ├── lalex..c │ │ │ │ ├── lex..c │ │ │ │ ├── main..c │ │ │ │ ├── norm..c │ │ │ │ ├── norm2..c │ │ │ │ ├── print..c │ │ │ │ ├── repr..c │ │ │ │ ├── simpl..c │ │ │ │ ├── size..c │ │ │ │ ├── table..c │ │ │ │ ├── typ..c │ │ │ │ ├── typ2..c │ │ │ │ └── y.tab..c │ │ ├── src │ │ │ ├── alloc.c │ │ │ ├── cfront.h │ │ │ ├── dcl.c │ │ │ ├── dcl2.c │ │ │ ├── dcl3.c │ │ │ ├── del.c │ │ │ ├── error.c │ │ │ ├── expand.c │ │ │ ├── expr.c │ │ │ ├── expr2.c │ │ │ ├── gram.y │ │ │ ├── lalex.c │ │ │ ├── lex.c │ │ │ ├── main.c │ │ │ ├── makefile │ │ │ ├── norm.c │ │ │ ├── norm2.c │ │ │ ├── print.c │ │ │ ├── repr.c │ │ │ ├── simpl.c │ │ │ ├── size.c │ │ │ ├── size.h │ │ │ ├── table.c │ │ │ ├── token.h │ │ │ ├── tqueue.h │ │ │ ├── typ.c │ │ │ ├── typ2.c │ │ │ ├── typedef.h │ │ │ └── yystype.h │ │ ├── szal.c │ │ └── xCC │ ├── inc │ │ ├── CC │ │ │ ├── assert.h │ │ │ ├── ctype.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── malloc.h │ │ │ ├── memory.h │ │ │ ├── nlist.h │ │ │ ├── osfcn.h │ │ │ ├── stdarg.h │ │ │ ├── stdio.h │ │ │ ├── string.h │ │ │ └── sys │ │ │ │ └── stat.h │ │ ├── common │ │ │ ├── Assoccmds.h │ │ │ ├── Attribute.h │ │ │ ├── Avltree.h │ │ │ ├── Breaklist.h │ │ │ ├── Circlech.h │ │ │ ├── Cmdstream.h │ │ │ ├── Command.h │ │ │ ├── EventTable.h │ │ │ ├── Expr.h │ │ │ ├── Frame.h │ │ │ ├── Interface.h │ │ │ ├── Itype.h │ │ │ ├── Label.h │ │ │ ├── Lineinfo.h │ │ │ ├── Link.h │ │ │ ├── Location.h │ │ │ ├── Locdesc.h │ │ │ ├── Monitor.h │ │ │ ├── NameList.h │ │ │ ├── Object.h │ │ │ ├── Place.h │ │ │ ├── Process.h │ │ │ ├── Reg.h │ │ │ ├── RegAccess.h │ │ │ ├── Rvalue.h │ │ │ ├── SDBinfo.h │ │ │ ├── SectHdr.h │ │ │ ├── Seglist.h │ │ │ ├── Siglist.h │ │ │ ├── Sigset.h │ │ │ ├── Source.h │ │ │ ├── SrcFile.h │ │ │ ├── Stmt.h │ │ │ ├── Symbol.h │ │ │ ├── Symtab.h │ │ │ ├── TSClist.h │ │ │ ├── TYPE.h │ │ │ ├── Tag.h │ │ │ ├── Tag1.h │ │ │ ├── Type.h │ │ │ ├── Vector.h │ │ │ ├── Watchlist.h │ │ │ ├── Wordstack.h │ │ │ ├── builder.h │ │ │ ├── libgen.h │ │ │ ├── oslevel.h │ │ │ ├── prioctl.h │ │ │ ├── stdlib.h │ │ │ ├── str.h │ │ │ └── utility.h │ │ └── i386 │ │ │ ├── DbregAccess.h │ │ │ ├── Instr.h │ │ │ ├── Machine.h │ │ │ ├── Reg1.h │ │ │ ├── i_87fp.h │ │ │ ├── signal.h │ │ │ └── sys │ │ │ └── user.h │ ├── libC │ │ ├── common │ │ │ ├── _ctor.C │ │ │ ├── _delete.C │ │ │ ├── _dtor.C │ │ │ ├── _handler.C │ │ │ ├── _main.C │ │ │ ├── _new.C │ │ │ ├── _vec.C │ │ │ ├── dtors.C │ │ │ └── exit.C │ │ └── i386 │ │ │ └── makefile │ ├── libdbgen │ │ ├── common │ │ │ ├── Avltree.C │ │ │ ├── Link.C │ │ │ ├── Textstr.C │ │ │ ├── Vector.C │ │ │ ├── Wordstack.C │ │ │ ├── dlink.C │ │ │ ├── num.c │ │ │ └── str.C │ │ └── i386 │ │ │ ├── DEPEND │ │ │ └── makefile │ ├── libexecon │ │ ├── common │ │ │ ├── Assoccmds.C │ │ │ ├── Breaklist.C │ │ │ ├── Circlech.C │ │ │ ├── Cmdstream.C │ │ │ ├── Core.h │ │ │ ├── EventTable.C │ │ │ ├── Flags.h │ │ │ ├── Monitor.s.C │ │ │ ├── Process.ev.C │ │ │ ├── Process.hx.C │ │ │ ├── Process.io.C │ │ │ ├── Process.lx.C │ │ │ ├── Process.st.C │ │ │ ├── Reg.C │ │ │ ├── SCmap.h │ │ │ ├── Siglist.C │ │ │ ├── Sigset.C │ │ │ ├── Status.h │ │ │ ├── Status.s.C │ │ │ ├── TSClist.C │ │ │ ├── Watch2.C │ │ │ └── Watchlist.C │ │ └── i386 │ │ │ ├── Core.C │ │ │ ├── DEPEND │ │ │ ├── DbregAccess.C │ │ │ ├── Frame.C │ │ │ ├── Memory.C │ │ │ ├── Reg1.C │ │ │ ├── RegAccess.C │ │ │ ├── Seglist.C │ │ │ ├── Segment.C │ │ │ ├── Segment.h │ │ │ ├── makefile │ │ │ └── oslevel.C │ ├── libexp │ │ ├── common │ │ │ ├── Expr.C │ │ │ ├── Expr_priv.h │ │ │ ├── Label.C │ │ │ ├── Place.C │ │ │ ├── Rvalue.C │ │ │ ├── SDBinfo.C │ │ │ ├── Value.h │ │ │ ├── format.C │ │ │ └── format.h │ │ ├── i386 │ │ │ ├── Call.C │ │ │ ├── Call2.C │ │ │ ├── DEPEND │ │ │ ├── fetch.c │ │ │ └── makefile │ │ └── m32 │ │ │ └── fetch.c │ ├── libint │ │ ├── common │ │ │ ├── Interface.C │ │ │ ├── Pref.C │ │ │ ├── SrcFile.C │ │ │ └── printx.C │ │ └── i386 │ │ │ ├── DEPEND │ │ │ └── makefile │ ├── libmachine │ │ └── i386 │ │ │ ├── DEPEND │ │ │ ├── Instr.C │ │ │ ├── Tables.C │ │ │ ├── dis.h │ │ │ └── makefile │ ├── libsymbol │ │ ├── common │ │ │ ├── AddrList.C │ │ │ ├── AddrList.h │ │ │ ├── Bdi.C │ │ │ ├── Bdi.h │ │ │ ├── Bdibuild.C │ │ │ ├── Bdibuild.h │ │ │ ├── Cache.C │ │ │ ├── Cache.h │ │ │ ├── Coff.C │ │ │ ├── Coff.h │ │ │ ├── Coffbuild.C │ │ │ ├── Coffbuild.h │ │ │ ├── Elfbuild.C │ │ │ ├── Elfbuild.h │ │ │ ├── Evaluator.C │ │ │ ├── Evaluator.h │ │ │ ├── Fetalline.C │ │ │ ├── Fetalline.h │ │ │ ├── Fetalrec.C │ │ │ ├── Fetalrec.h │ │ │ ├── Locdesc.C │ │ │ ├── NameList.C │ │ │ ├── Object.C │ │ │ ├── Reflist.C │ │ │ ├── Reflist.h │ │ │ ├── SectHdr.C │ │ │ ├── Source.C │ │ │ ├── Symbol.C │ │ │ ├── Syminfo.h │ │ │ ├── Symtab.C │ │ │ ├── Symtable.C │ │ │ ├── Symtable.h │ │ │ ├── TYPE.C │ │ │ ├── Tagcheck.C │ │ │ ├── Tagcheck.h │ │ │ ├── builder.C │ │ │ ├── dbtools.C │ │ │ └── dbtools1.C │ │ └── i386 │ │ │ ├── DEPEND │ │ │ └── makefile │ ├── libutil │ │ ├── common │ │ │ ├── assoc.C │ │ │ ├── callstack.C │ │ │ ├── change_pc.C │ │ │ ├── create.C │ │ │ ├── curr_src.C │ │ │ ├── destroy.C │ │ │ ├── disassem.C │ │ │ ├── disp_break.C │ │ │ ├── eval_addr.C │ │ │ ├── eval_expr.C │ │ │ ├── filename.C │ │ │ ├── find_fcn.C │ │ │ ├── first_line.C │ │ │ ├── get_addr.C │ │ │ ├── grab_core.C │ │ │ ├── grab_proc.C │ │ │ ├── grabbed.C │ │ │ ├── inform.C │ │ │ ├── istep.C │ │ │ ├── istepover.C │ │ │ ├── num_lines.C │ │ │ ├── pc_curr.C │ │ │ ├── print_map.C │ │ │ ├── regs.C │ │ │ ├── rel_proc.C │ │ │ ├── rem_break.C │ │ │ ├── rem_watch.C │ │ │ ├── remallbk.C │ │ │ ├── remallwp.C │ │ │ ├── run.C │ │ │ ├── set_break.C │ │ │ ├── set_path.C │ │ │ ├── set_sig.C │ │ │ ├── set_stmt.C │ │ │ ├── set_watch.C │ │ │ ├── src_text.C │ │ │ ├── sstep.C │ │ │ ├── sstepover.C │ │ │ └── sufxpath.C │ │ └── i386 │ │ │ ├── DEPEND │ │ │ └── makefile │ ├── sdb.d │ │ ├── common │ │ │ ├── CCmain.C │ │ │ ├── do_assoc.C │ │ │ ├── main.c │ │ │ ├── parser.Y │ │ │ ├── scanner.l │ │ │ └── srclines.C │ │ └── i386 │ │ │ ├── DEPEND │ │ │ ├── makefile │ │ │ └── scanner.h │ ├── sdb.mk │ └── util │ │ ├── Basename │ │ ├── CC │ │ ├── CC.rules │ │ ├── defs.make │ │ ├── depend │ │ ├── lib.make │ │ ├── mkdefine │ │ ├── prog.make │ │ ├── std.make │ │ └── substdir ├── sdiff │ ├── sdiff.c │ └── sdiff.mk ├── sed │ ├── sed.h │ ├── sed.mk │ ├── sed0.c │ └── sed1.c ├── setclk │ ├── setclk.c │ └── setclk.mk ├── setmnt │ ├── setmnt.c │ └── setmnt.mk ├── setpgrp │ ├── setpgrp.c │ └── setpgrp.mk ├── setuname │ ├── setuname.c │ └── setuname.mk ├── sgs │ ├── acomp │ │ ├── common │ │ │ ├── acgram.y │ │ │ ├── aclex.h │ │ │ ├── aclex.l │ │ │ ├── acomp.mk │ │ │ ├── ansisup.c │ │ │ ├── ansisup.h │ │ │ ├── cgstuff.c │ │ │ ├── cgstuff.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── decl.c │ │ │ ├── decl.h │ │ │ ├── elfdebug.c │ │ │ ├── err.c │ │ │ ├── err.h │ │ │ ├── host.h │ │ │ ├── init.c │ │ │ ├── init.h │ │ │ ├── lex.c │ │ │ ├── lexsup.c │ │ │ ├── lexsup.h │ │ │ ├── main.c │ │ │ ├── node.h │ │ │ ├── optim.c │ │ │ ├── optim.h │ │ │ ├── p1.h │ │ │ ├── p1allo.c │ │ │ ├── p1allo.h │ │ │ ├── sharp.c │ │ │ ├── stmt.c │ │ │ ├── stmt.h │ │ │ ├── sym.c │ │ │ ├── sym.h │ │ │ ├── target.h │ │ │ ├── tblmgr.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── types.c │ │ │ └── types.h │ │ └── i386 │ │ │ ├── makefile │ │ │ └── mddefs.h │ ├── acpp │ │ ├── common │ │ │ ├── buf.c │ │ │ ├── buf.h │ │ │ ├── chartbl.c │ │ │ ├── cpp.h │ │ │ ├── expand.c │ │ │ ├── file.c │ │ │ ├── file.h │ │ │ ├── group.c │ │ │ ├── group.h │ │ │ ├── interface.h │ │ │ ├── lex.c │ │ │ ├── main.c │ │ │ ├── predicate.c │ │ │ ├── predicate.h │ │ │ ├── syms.c │ │ │ ├── syms.h │ │ │ ├── token.c │ │ │ └── xpr.c │ │ └── i386 │ │ │ ├── acpp.mk │ │ │ └── makefile │ ├── alint │ │ ├── common │ │ │ ├── alint.mk │ │ │ ├── cxref.c │ │ │ ├── debug2.c │ │ │ ├── directives.c │ │ │ ├── formchk.c │ │ │ ├── hooks.c │ │ │ ├── ldope.c │ │ │ ├── ldope.h │ │ │ ├── lint │ │ │ ├── lint.c │ │ │ ├── lint.h │ │ │ ├── lmain.c │ │ │ ├── lnstuff.c │ │ │ ├── lnstuff.h │ │ │ ├── lpass2.c │ │ │ ├── lpass2.h │ │ │ ├── messages.c │ │ │ ├── msgbuf.c │ │ │ ├── msgbuf.h │ │ │ ├── postopt.c │ │ │ ├── tables2.c │ │ │ ├── tables2.h │ │ │ ├── xl_byte.c │ │ │ └── xl_byte.h │ │ ├── i386 │ │ │ ├── makefile │ │ │ └── mddefs.h │ │ └── lib │ │ │ ├── llib-lc │ │ │ ├── llib-lcrypt │ │ │ ├── llib-ldl │ │ │ ├── llib-lelf │ │ │ ├── llib-lgen │ │ │ ├── llib-ll │ │ │ ├── llib-lld │ │ │ ├── llib-lm │ │ │ ├── llib-lmalloc │ │ │ └── llib-ly │ ├── ar │ │ ├── common │ │ │ └── ar.c │ │ └── i386 │ │ │ └── makefile │ ├── as │ │ ├── common │ │ │ ├── addr1.c │ │ │ ├── code.c │ │ │ ├── codeout.c │ │ │ ├── codeout.h │ │ │ ├── errors.c │ │ │ ├── expand.h │ │ │ ├── expand1.c │ │ │ ├── expr.c │ │ │ ├── expr.h │ │ │ ├── obj.c │ │ │ ├── pass0.c │ │ │ ├── pass1.c │ │ │ ├── pass2.c │ │ │ ├── section.h │ │ │ ├── symbols.c │ │ │ ├── symbols.h │ │ │ └── symlist.c │ │ └── i386 │ │ │ ├── addr2.c │ │ │ ├── cm4defs │ │ │ ├── expand2.c │ │ │ ├── expand2.h │ │ │ ├── float.c │ │ │ ├── gencode.c │ │ │ ├── gendefs.h │ │ │ ├── instab.c │ │ │ ├── instab.h │ │ │ ├── instr.c │ │ │ ├── instr.h │ │ │ ├── makefile │ │ │ ├── ops.out │ │ │ ├── parse.y │ │ │ ├── symbols2.h │ │ │ └── systems.h │ ├── cg │ │ ├── common │ │ │ ├── allo.c │ │ │ ├── atof2.c │ │ │ ├── cgen.c │ │ │ ├── comm2.c │ │ │ ├── cost.c │ │ │ ├── dope.h │ │ │ ├── fp.h │ │ │ ├── fparith.c │ │ │ ├── inline.c │ │ │ ├── manifest.h │ │ │ ├── match.c │ │ │ ├── mfile1.h │ │ │ ├── mfile2.h │ │ │ ├── nail.c │ │ │ ├── reader.c │ │ │ ├── sty.y │ │ │ └── xdefs.c │ │ └── i386 │ │ │ ├── cg.mk │ │ │ ├── local.c │ │ │ ├── local2.c │ │ │ ├── macdefs.h │ │ │ ├── picode.c │ │ │ ├── sdb.h │ │ │ ├── stasg.c │ │ │ └── stin │ ├── cmd │ │ ├── common │ │ │ └── cc.c │ │ └── i386 │ │ │ └── makefile │ ├── cof2elf │ │ ├── common │ │ │ ├── Makefile │ │ │ └── cof2elf.c │ │ └── i386 │ │ │ └── makefile │ ├── cpp │ │ ├── common │ │ │ ├── :rofix │ │ │ ├── :yyfix │ │ │ ├── README │ │ │ ├── cpp.c │ │ │ ├── cpp.mk │ │ │ ├── cpy.y │ │ │ └── yylex.c │ │ └── i386 │ │ │ ├── cpp.mk │ │ │ └── makefile │ ├── dis │ │ ├── common │ │ │ ├── debug.c │ │ │ ├── extn.c │ │ │ ├── lists.c │ │ │ ├── main.c │ │ │ ├── structs.h │ │ │ └── utls.c │ │ └── i386 │ │ │ ├── bits.c │ │ │ ├── dis.h │ │ │ ├── makefile │ │ │ └── tables.c │ ├── dump │ │ ├── common │ │ │ ├── debug.c │ │ │ ├── dump.c │ │ │ ├── dump.h │ │ │ ├── dumpmap.h │ │ │ └── fcns.c │ │ └── i386 │ │ │ └── makefile │ ├── inc │ │ ├── common │ │ │ ├── aouthdr.h │ │ │ ├── ar.h │ │ │ ├── bool.h │ │ │ ├── ccstypes.h │ │ │ ├── dwarf.h │ │ │ ├── elf.h │ │ │ ├── filehdr.h │ │ │ ├── ldfcn.h │ │ │ ├── libelf.h │ │ │ ├── linenum.h │ │ │ ├── link.h │ │ │ ├── patch.h │ │ │ ├── reloc.h │ │ │ ├── scnhdr.h │ │ │ ├── storclass.h │ │ │ ├── syms.h │ │ │ └── sys │ │ │ │ ├── auxv.h │ │ │ │ ├── elf.h │ │ │ │ ├── elf_386.h │ │ │ │ ├── elf_860.h │ │ │ │ ├── elf_M32.h │ │ │ │ ├── elf_SPARC.h │ │ │ │ ├── elftypes.h │ │ │ │ ├── etype_I386.h │ │ │ │ ├── etype_I860.h │ │ │ │ ├── etype_M32.h │ │ │ │ ├── etype_SPARC.h │ │ │ │ ├── etype_UTS.h │ │ │ │ └── etype_VAX.h │ │ └── i386 │ │ │ ├── paths.h │ │ │ ├── sgs.h │ │ │ └── tv.h │ ├── ld │ │ ├── common │ │ │ ├── args.c │ │ │ ├── files.c │ │ │ ├── globals.c │ │ │ ├── globals.h │ │ │ ├── libs.c │ │ │ ├── macros.h │ │ │ ├── main.c │ │ │ ├── map.c │ │ │ ├── outfile.c │ │ │ ├── relocate.c │ │ │ ├── sections.c │ │ │ ├── syms.c │ │ │ ├── update.c │ │ │ └── util.c │ │ └── i386 │ │ │ ├── Makefile │ │ │ ├── machdep.h │ │ │ └── machrel.c │ ├── lex │ │ ├── common │ │ │ ├── header.c │ │ │ ├── ldefs.c │ │ │ ├── lex.mk │ │ │ ├── main.c │ │ │ ├── once.c │ │ │ ├── parser.y │ │ │ ├── sub1.c │ │ │ └── sub2.c │ │ └── i386 │ │ │ └── makefile │ ├── libelf │ │ ├── coff │ │ │ ├── coff.c │ │ │ ├── coff.h │ │ │ ├── coff386.c │ │ │ ├── coffm32.c │ │ │ ├── coffscn.c │ │ │ ├── coffshdr.c │ │ │ ├── coffstr.c │ │ │ ├── coffsym.c │ │ │ ├── cofftab.c │ │ │ └── cofftab.h │ │ ├── common │ │ │ ├── Makefile │ │ │ ├── ar.c │ │ │ ├── begin.c │ │ │ ├── cntl.c │ │ │ ├── cook.c │ │ │ ├── data.c │ │ │ ├── decl.h │ │ │ ├── end.c │ │ │ ├── error.c.awk │ │ │ ├── error.h.awk │ │ │ ├── error.list │ │ │ ├── fill.c │ │ │ ├── flag.c │ │ │ ├── foreign.c │ │ │ ├── foreign.h │ │ │ ├── getarhdr.c │ │ │ ├── getarsym.c │ │ │ ├── getbase.c │ │ │ ├── getdata.c │ │ │ ├── getehdr.c │ │ │ ├── getident.c │ │ │ ├── getphdr.c │ │ │ ├── getscn.c │ │ │ ├── getshdr.c │ │ │ ├── hash.c │ │ │ ├── input.c │ │ │ ├── kind.c │ │ │ ├── member.h │ │ │ ├── mmap.c │ │ │ ├── ndxscn.c │ │ │ ├── newdata.c │ │ │ ├── newehdr.c │ │ │ ├── newphdr.c │ │ │ ├── newscn.c │ │ │ ├── next.c │ │ │ ├── nextscn.c │ │ │ ├── output.c │ │ │ ├── rand.c │ │ │ ├── rawdata.c │ │ │ ├── rawfile.c │ │ │ ├── rawput.c │ │ │ ├── strptr.c │ │ │ ├── svr4.c │ │ │ ├── syn.h │ │ │ ├── tune.h │ │ │ ├── update.c │ │ │ └── xlate.m4 │ │ ├── i386 │ │ │ └── makefile │ │ └── misc │ │ │ ├── String.c │ │ │ ├── String.h │ │ │ ├── args.c │ │ │ ├── demangle.c │ │ │ ├── elf_dem.h │ │ │ ├── nlist.c │ │ │ └── nplist.c │ ├── libld │ │ ├── common │ │ │ ├── allocldptr.c │ │ │ ├── freeldptr.c │ │ │ ├── ldaclose.c │ │ │ ├── ldahread.c │ │ │ ├── ldaopen.c │ │ │ ├── ldclose.c │ │ │ ├── lddef.h │ │ │ ├── ldfhread.c │ │ │ ├── ldgetname.c │ │ │ ├── ldlread.c │ │ │ ├── ldlseek.c │ │ │ ├── ldnlseek.c │ │ │ ├── ldnrseek.c │ │ │ ├── ldnshread.c │ │ │ ├── ldnsseek.c │ │ │ ├── ldohseek.c │ │ │ ├── ldopen.c │ │ │ ├── ldrseek.c │ │ │ ├── ldshread.c │ │ │ ├── ldsseek.c │ │ │ ├── ldtbindex.c │ │ │ ├── ldtbread.c │ │ │ ├── ldtbseek.c │ │ │ ├── llib-lld.c │ │ │ ├── makefile │ │ │ ├── sgetl.c │ │ │ ├── sputl.c │ │ │ ├── synsyms.h │ │ │ └── vldldptr.c │ │ └── i386 │ │ │ └── makefile │ ├── lorder │ │ ├── common │ │ │ └── lorder │ │ └── i386 │ │ │ └── makefile │ ├── lprof │ │ ├── bblk │ │ │ ├── bblk.mk │ │ │ ├── comdef.h │ │ │ ├── comext.h │ │ │ ├── comglb.c │ │ │ ├── i386 │ │ │ │ ├── mac.c │ │ │ │ └── macglb.c │ │ │ ├── macdef.h │ │ │ └── parse.c │ │ ├── cmd │ │ │ ├── cmd.mk │ │ │ ├── cor_errs.h │ │ │ ├── coredefs.h │ │ │ ├── env.h │ │ │ ├── glob.h │ │ │ ├── lin_rept.c │ │ │ ├── list_rept.c │ │ │ ├── main.c │ │ │ ├── merge.c │ │ │ ├── rept_utl.c │ │ │ ├── src_list.c │ │ │ ├── sum.c │ │ │ └── utility.c │ │ ├── hdr │ │ │ ├── covfile.h │ │ │ ├── filedata.h │ │ │ ├── funcdata.h │ │ │ ├── hidelibc.h │ │ │ ├── hidelibelf.h │ │ │ └── retcode.h │ │ ├── i386 │ │ │ └── makefile │ │ ├── libprof │ │ │ ├── comops.c │ │ │ ├── cov_errs.h │ │ │ ├── cov_join.c │ │ │ ├── debug.h │ │ │ ├── dump.c │ │ │ ├── exist.c │ │ │ ├── libprof.mk │ │ │ ├── lst_str.h │ │ │ ├── new.c │ │ │ ├── profopt.h │ │ │ ├── soqueue.c │ │ │ ├── symint.h │ │ │ ├── symintClose.c │ │ │ ├── symintErr.c │ │ │ ├── symintHdr.h │ │ │ ├── symintLoad.c │ │ │ ├── symintOpen.c │ │ │ └── symintUtil.c │ │ ├── lprof.mk │ │ └── lprofinc.mk │ ├── m4 │ │ ├── common │ │ │ ├── m4.c │ │ │ ├── m4.h │ │ │ ├── m4ext.c │ │ │ ├── m4macs.c │ │ │ └── m4y.y │ │ └── i386 │ │ │ └── makefile │ ├── mcs │ │ ├── common │ │ │ └── main.c │ │ └── i386 │ │ │ └── makefile │ ├── nm │ │ ├── common │ │ │ └── nm.c │ │ └── i386 │ │ │ └── makefile │ ├── optim │ │ ├── common │ │ │ ├── inter.c │ │ │ ├── optim.c │ │ │ └── optim.h │ │ └── i386 │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── defs │ │ │ ├── inline.c │ │ │ ├── local.c │ │ │ ├── makefile │ │ │ ├── optutil.c │ │ │ ├── optutil.h │ │ │ ├── peep.c │ │ │ ├── regal.c │ │ │ ├── regal.h │ │ │ ├── w1opt.c │ │ │ ├── w2opt.c │ │ │ ├── w3opt.c │ │ │ ├── w4opt.c │ │ │ └── w6opt.c │ ├── sgs.install │ ├── sgs.mk │ ├── sgs.mk.i386 │ ├── size │ │ ├── common │ │ │ ├── defs.h │ │ │ ├── fcns.c │ │ │ ├── main.c │ │ │ ├── process.c │ │ │ └── process.h │ │ └── i386 │ │ │ └── makefile │ ├── strip │ │ ├── common │ │ │ └── main.c │ │ └── i386 │ │ │ └── makefile │ ├── tsort │ │ ├── common │ │ │ ├── Err.c │ │ │ ├── erraction.c │ │ │ ├── errafter.c │ │ │ ├── errbefore.c │ │ │ ├── errexit.c │ │ │ ├── errmsg.h │ │ │ ├── errprefix.c │ │ │ ├── errsource.c │ │ │ ├── errstrtok.c │ │ │ ├── errtag.c │ │ │ ├── errtext.c │ │ │ ├── errtofix.c │ │ │ ├── errusage.c │ │ │ ├── tsort.c │ │ │ ├── zfopen.c │ │ │ └── zmalloc.c │ │ └── i386 │ │ │ └── makefile │ ├── unix_conv │ │ ├── common │ │ │ ├── 5.0.ar.h │ │ │ ├── convert.c │ │ │ ├── old.a.out.h │ │ │ └── old.ar.h │ │ └── i386 │ │ │ └── makefile │ ├── xenv │ │ └── i386 │ │ │ ├── README │ │ │ ├── env-i386 │ │ │ ├── env.tmp │ │ │ ├── i286 │ │ │ ├── i386 │ │ │ ├── make-i386 │ │ │ ├── make.tmp │ │ │ ├── makefile │ │ │ ├── pathedit │ │ │ ├── paths.h │ │ │ ├── pted.native │ │ │ ├── pted.nonx │ │ │ ├── pted.unx │ │ │ ├── sgs.h │ │ │ ├── template.mk │ │ │ ├── u370 │ │ │ ├── u3b │ │ │ ├── u3b15 │ │ │ ├── u3b2 │ │ │ ├── u3b5 │ │ │ ├── uts │ │ │ └── vax │ └── yacc │ │ ├── common │ │ ├── dextern │ │ ├── files │ │ ├── y1.c │ │ ├── y2.c │ │ ├── y3.c │ │ ├── y4.c │ │ ├── yacc.mk │ │ └── yaccpar │ │ └── i386 │ │ └── makefile ├── sh │ ├── args.c │ ├── blok.c │ ├── bltin.c │ ├── brkincr.h │ ├── cmd.c │ ├── ctype.c │ ├── ctype.h │ ├── defs.c │ ├── defs.h │ ├── dup.h │ ├── echo.c │ ├── error.c │ ├── expand.c │ ├── fault.c │ ├── func.c │ ├── hash.c │ ├── hash.h │ ├── hashserv.c │ ├── io.c │ ├── jobs.c │ ├── mac.h │ ├── macro.c │ ├── main.c │ ├── mode.h │ ├── msg.c │ ├── name.c │ ├── name.h │ ├── print.c │ ├── profile.c │ ├── pwd.c │ ├── service.c │ ├── setbrk.c │ ├── sh.mk │ ├── stak.c │ ├── stak.h │ ├── string.c │ ├── sym.h │ ├── test.c │ ├── timeout.h │ ├── ulimit.c │ ├── word.c │ └── xec.c ├── shl │ ├── aux.c │ ├── defs.c │ ├── defs.h │ ├── layer.c │ ├── lex.l │ ├── misc.c │ ├── mpx.c │ ├── newmain.c │ ├── shl.mk │ ├── signal.c │ ├── stat.c │ ├── system.c │ └── yacc.y ├── sleep │ ├── sleep.c │ └── sleep.mk ├── sort │ ├── sort.c │ └── sort.mk ├── spell │ ├── american │ ├── british │ ├── compress.sh │ ├── extra │ ├── hash.c │ ├── hash.h │ ├── hashcheck.c │ ├── hashlook.c │ ├── hashmake.c │ ├── huff.c │ ├── huff.h │ ├── list │ ├── local │ ├── malloc.c │ ├── spell.mk │ ├── spell.sh │ ├── spellin.c │ ├── spellprog.c │ └── stop ├── spline │ ├── spline.c │ └── spline.mk ├── split │ ├── split.c │ └── split.mk ├── srchtxt │ ├── srchtxt.c │ └── srchtxt.mk ├── streams │ ├── kmacct │ │ ├── kmacct.mk │ │ ├── kmacntl.c │ │ ├── kmamkdb │ │ ├── kmapr.c │ │ └── kmaprint.c │ ├── log │ │ ├── str.mk │ │ ├── strace.c │ │ ├── strclean.c │ │ └── strerr.c │ ├── strcmd │ │ ├── strchg.c │ │ ├── strcmd.mk │ │ └── strconf.c │ └── streams.mk ├── strings │ ├── strings.c │ ├── strings.mk │ └── x.out.h ├── su │ ├── su.c │ ├── su.dfl │ └── su.mk ├── sulogin │ ├── sulogin.c │ └── sulogin.mk ├── sum │ ├── sum.c │ └── sum.mk ├── swap │ ├── swap.c │ └── swap.mk ├── sync │ ├── sync.c │ └── sync.mk ├── sysdef │ ├── sysdef.c │ └── sysdef.mk ├── syslogd │ ├── syslogd.c │ └── syslogd.mk ├── tabs │ ├── tabs.c │ └── tabs.mk ├── tail │ ├── tail.c │ └── tail.mk ├── tar │ ├── tar.c │ ├── tar.dfl │ └── tar.mk ├── tee │ ├── tee.c │ └── tee.mk ├── terminfo │ ├── Doc.sed │ ├── README │ ├── adds.ti │ ├── annarbor.ti │ ├── ansi.ti │ ├── att.ti │ ├── attprint.ti │ ├── beehive.ti │ ├── cdc.ti │ ├── ckout │ ├── colorscan.ti │ ├── cvt.ex │ ├── cvt.h │ ├── cvt.sed │ ├── datamedia.ti │ ├── dec.ti │ ├── diablo.ti │ ├── fortune.ti │ ├── general.ti │ ├── hardcopy.ti │ ├── hazeltine.ti │ ├── hds.ti │ ├── header │ ├── heath.ti │ ├── homebrew.ti │ ├── hp.ti │ ├── lsi.ti │ ├── microterm.ti │ ├── misc.ti │ ├── pc.ti │ ├── perkinelmer.ti │ ├── print.ti │ ├── special.ti │ ├── sperry.ti │ ├── tabset │ │ ├── 3101 │ │ ├── beehive │ │ ├── hds │ │ ├── hds3 │ │ ├── std │ │ ├── teleray │ │ ├── vt100 │ │ └── xerox1720 │ ├── tektronix.ti │ ├── teleray.ti │ ├── televideo.ti │ ├── termcap │ ├── terminfo.mk │ ├── ti.ti │ ├── trailer │ ├── tymshare.ti │ ├── visual.ti │ └── wyse.ti ├── test │ ├── test.mk │ └── test.sh ├── time │ ├── time.c │ └── time.mk ├── touch │ ├── touch.c │ └── touch.mk ├── tplot │ ├── banner.c │ ├── driver.c │ ├── tplot.mk │ ├── tplot.sh │ └── vplot.c ├── tr │ ├── tr.c │ └── tr.mk ├── true │ ├── true.mk │ └── true.sh ├── truss │ ├── actions.c │ ├── codes.c │ ├── expound.c │ ├── incdec.c │ ├── ioc.h │ ├── ipc.c │ ├── listopts.c │ ├── main.c │ ├── pcontrol.c │ ├── pcontrol.h │ ├── print.c │ ├── print.h │ ├── procset.c │ ├── proto.h │ ├── ramdata.c │ ├── ramdata.h │ ├── systable.c │ ├── systable.h │ ├── truss.mk │ └── xstat.c ├── tset │ ├── delays │ ├── tset.c │ └── tset.mk ├── tty │ ├── tty.c │ └── tty.mk ├── ttymon │ ├── admutil.c │ ├── parms.h │ ├── stty.c │ ├── stty.h │ ├── stty.mk │ ├── sttydefs.c │ ├── sttyparse.c │ ├── sttytable.c │ ├── tmautobaud.c │ ├── tmchild.c │ ├── tmexpress.c │ ├── tmextern.h │ ├── tmglobal.c │ ├── tmhandler.c │ ├── tmlock.c │ ├── tmlog.c │ ├── tmparse.c │ ├── tmpeek.c │ ├── tmpmtab.c │ ├── tmsac.c │ ├── tmsig.c │ ├── tmstruct.h │ ├── tmterm.c │ ├── tmttydefs.c │ ├── tmutil.c │ ├── tmutmp.c │ ├── ttyadm.c │ ├── ttymon.c │ ├── ttymon.h │ ├── ttymon.mk │ ├── ulockf.c │ └── uucp.h ├── uadmin │ ├── uadmin.c │ └── uadmin.mk ├── unadv │ ├── unadv.c │ └── unadv.mk ├── uname │ ├── uname.c │ └── uname.mk ├── uniq │ ├── uniq.c │ └── uniq.mk ├── units │ ├── units.c │ ├── units.mk │ └── unittab ├── unlink │ ├── unlink.c │ └── unlink.mk ├── unpack │ ├── unpack.c │ └── unpack.mk ├── users │ ├── Prototype │ ├── users.c │ └── users.mk ├── valtools │ ├── Prototype │ ├── ckdate.c │ ├── ckgid.c │ ├── ckint.c │ ├── ckitem.c │ ├── ckkeywd.c │ ├── ckpath.c │ ├── ckrange.c │ ├── ckstr.c │ ├── cktime.c │ ├── ckuid.c │ ├── ckyorn.c │ ├── puttext.c │ ├── usage.h │ └── valtools.mk ├── vi │ ├── PRESERVE │ ├── README │ ├── misc │ │ ├── READ_ME │ │ ├── ctags.c │ │ ├── cxref.sh │ │ ├── del.h.cb │ │ ├── fold.c │ │ ├── makefile │ │ ├── mkstr.c │ │ └── xstr.c │ ├── port │ │ ├── READ_ME │ │ ├── asfix.c70 │ │ ├── bcopy.c │ │ ├── ex.c │ │ ├── ex.h │ │ ├── ex.news │ │ ├── ex_addr.c │ │ ├── ex_argv.h │ │ ├── ex_cmds.c │ │ ├── ex_cmds2.c │ │ ├── ex_cmdsub.c │ │ ├── ex_data.c │ │ ├── ex_extern.c │ │ ├── ex_get.c │ │ ├── ex_io.c │ │ ├── ex_put.c │ │ ├── ex_re.c │ │ ├── ex_re.h │ │ ├── ex_set.c │ │ ├── ex_subr.c │ │ ├── ex_temp.c │ │ ├── ex_temp.h │ │ ├── ex_tty.c │ │ ├── ex_tty.h │ │ ├── ex_tune.h │ │ ├── ex_unix.c │ │ ├── ex_v.c │ │ ├── ex_vadj.c │ │ ├── ex_vars.h │ │ ├── ex_vget.c │ │ ├── ex_vis.h │ │ ├── ex_vmain.c │ │ ├── ex_voper.c │ │ ├── ex_vops.c │ │ ├── ex_vops2.c │ │ ├── ex_vops3.c │ │ ├── ex_vput.c │ │ ├── ex_vwind.c │ │ ├── expreserve.c │ │ ├── exrecover.c │ │ ├── makefile.370 │ │ ├── makefile.70 │ │ ├── makefile.c70 │ │ ├── makefile.usg │ │ ├── makeoptions │ │ ├── ovdoprnt.s │ │ ├── ovprintf.c │ │ ├── printf.c │ │ └── rofix │ └── vi.mk ├── vtlmgr │ ├── newvt.c │ ├── vtgetty.c │ ├── vtlmgr.c │ └── vtlmgr.mk ├── wall │ ├── wall.c │ └── wall.mk ├── wc │ ├── wc.c │ └── wc.mk ├── who │ ├── who.c │ └── who.mk ├── whodo │ ├── whodo.c │ └── whodo.mk ├── write │ ├── write.c │ └── write.mk ├── wsinit │ ├── wsinit.c │ ├── wsinit.mk │ └── wstations.sh ├── x286emul │ ├── cxenix.c │ ├── debug.c │ ├── exec.c │ ├── float.s │ ├── h │ │ ├── a.out.h │ │ ├── brk.h │ │ └── syscall.h │ ├── ioctl.c │ ├── main.c │ ├── miscsys.c │ ├── moresys.c │ ├── msgsys.c │ ├── run286.s │ ├── sendsig.s │ ├── setdscr.c │ ├── shm.c │ ├── signal.c │ ├── syscall.c │ ├── syscalla.s │ ├── sysent.c │ ├── sysent.h │ ├── utils.c │ ├── vars.h │ └── x286emul.mk ├── xargs │ ├── xargs.c │ └── xargs.mk ├── xinstall │ ├── custom.sh │ ├── fixperm.c │ ├── help.src │ ├── inst.perms │ ├── xinstall.mk │ └── xinstall.sh ├── xrestore │ ├── dumprestor.h │ ├── restor.c │ ├── restor.dfl │ └── xrestore.mk ├── xtract │ ├── xtract.c │ └── xtract.mk ├── yes │ ├── yes.c │ └── yes.mk ├── ypcmd │ ├── getlist.c │ ├── makedbm.c │ ├── net_files │ │ ├── Makefile │ │ ├── aliases │ │ └── updaters │ ├── openchild.c │ ├── pong.c │ ├── udpublickey.c │ ├── yp_b.h │ ├── yp_b_subr.c │ ├── yp_b_svc.c │ ├── yp_getalias.c │ ├── ypalias.c │ ├── ypbind.c │ ├── ypcat.c │ ├── ypcmd.mk │ ├── ypdefs.h │ ├── ypinit.sh │ ├── ypmatch.c │ ├── yppoll.c │ ├── yppush.c │ ├── ypserv.c │ ├── ypserv_ancil.c │ ├── ypserv_map.c │ ├── ypserv_proc.c │ ├── ypset.c │ ├── ypsym.h │ ├── ypupd.x │ ├── ypupdated.c │ ├── ypv2_bind.h │ ├── ypwhich.c │ ├── ypxfr.c │ ├── ypxfr_1day.sh │ ├── ypxfr_1hour.sh │ └── ypxfr_2day.sh ├── zdump │ ├── ialloc.c │ ├── time.h │ ├── zdump.c │ └── zdump.mk └── zic │ ├── asia │ ├── australasia │ ├── etcetera │ ├── europe │ ├── ialloc.c │ ├── northamerica │ ├── pacificnew │ ├── scheck.c │ ├── southamerica │ ├── zic.c │ └── zic.mk ├── head ├── a.out.h ├── agent.h ├── aouthdr.h ├── ar.h ├── archives.h ├── arpa │ ├── ftp.h │ ├── inet.h │ ├── nameser.h │ ├── telnet.h │ └── tftp.h ├── assert.h ├── bkrs.h ├── core.h ├── cpio.h ├── crypt.h ├── ctype.h ├── deflt.h ├── devmgmt.h ├── dial.h ├── dirent.h ├── dlfcn.h ├── elf.h ├── errno.h ├── fatal.h ├── fcntl.h ├── filehdr.h ├── float.h ├── fmtmsg.h ├── ftw.h ├── grp.h ├── ieeefp.h ├── langinfo.h ├── lastlog.h ├── ldfcn.h ├── libelf.h ├── libgenIO.h ├── limits.h ├── linenum.h ├── link.h ├── listen.h ├── locale.h ├── macros.h ├── malloc.h ├── math.h ├── math.h3b5x ├── memory.h ├── mnttab.h ├── mon.h ├── nan.h ├── netconfig.h ├── netdb.h ├── netdir.h ├── nl_types.h ├── nlist.h ├── nsaddr.h ├── nserve.h ├── pkgdev.h ├── pkginfo.h ├── pkglocs.h ├── pkgstrct.h ├── pkgtrans.h ├── pn.h ├── poll.h ├── prof.h ├── protocols │ ├── dumprestore.h │ ├── routed.h │ ├── rwhod.h │ └── timed.h ├── pw.h ├── pwd.h ├── regexp.h ├── reloc.h ├── resolv.h ├── rje.h ├── rpc │ └── mp.h ├── rpcsvc │ ├── dbm.h │ ├── mount.h │ ├── rstat.h │ ├── rusers.h │ ├── rwall.h │ ├── spray.h │ ├── yp_prot.h │ ├── ypclnt.h │ └── ypupd.h ├── sac.h ├── scnhdr.h ├── search.h ├── setjmp.h ├── sgtty.h ├── shadow.h ├── siginfo.h ├── signal.h ├── stand.h ├── std.h ├── stdarg.h ├── stddef.h ├── stdio.h ├── stdlib.h ├── storclass.h ├── string.h ├── stropts.h ├── sum.h ├── syms.h ├── sys.i286 ├── sys.i386 ├── sys.pdp ├── sys.u3b15 ├── sys.u3b5 ├── sys.vax ├── sys │ └── un.h ├── syslog.h ├── table.h ├── tar.h ├── termio.h ├── termios.h ├── time.h ├── tiuser.h ├── ttysrv.h ├── tzfile.h ├── ucontext.h ├── ulimit.h ├── unistd.h ├── userdefs.h ├── ustat.h ├── utime.h ├── utmp.h ├── utmpx.h ├── valtools.h ├── values.h ├── values.h3b5x ├── varargs.h ├── wait.h └── windows.h ├── lib ├── .lib.mk ├── .libmk.temp ├── libTL │ ├── TLappend.c │ ├── TLassign.c │ ├── TLclose.c │ ├── TLdelete.c │ ├── TLgetentry.c │ ├── TLgetfield.c │ ├── TLopen.c │ ├── TLread.c │ ├── TLsearches.c │ ├── TLsubst.c │ ├── TLsync.c │ ├── TLtest.c │ ├── TLwrite.c │ ├── description.c │ ├── entry.c │ ├── field.c │ ├── file.c │ ├── hdrs │ │ └── internal.h │ ├── libTL.mk │ ├── parse.c │ ├── search.c │ ├── space.c │ ├── table.c │ └── utils.c ├── libadm │ ├── ckdate.c │ ├── ckgid.c │ ├── ckint.c │ ├── ckitem.c │ ├── ckkeywd.c │ ├── ckpath.c │ ├── ckrange.c │ ├── ckstr.c │ ├── cktime.c │ ├── ckuid.c │ ├── ckyorn.c │ ├── data.c │ ├── devattr.c │ ├── devreserv.c │ ├── devtab.c │ ├── devtab.h │ ├── dgrpent.c │ ├── filenames.c │ ├── getdev.c │ ├── getdgrp.c │ ├── getinput.c │ ├── getvol.c │ ├── libadm.mk │ ├── libadm3.2.mk │ ├── listdev.c │ ├── listdgrp.c │ ├── memory.c │ ├── oampkgncmp.c │ ├── oampkgnm.c │ ├── pkginfo.c │ ├── pkgnmchk.c │ ├── pkgparam.c │ ├── putdev.c │ ├── putdgrp.c │ ├── puterror.c │ ├── puthelp.c │ ├── putprmpt.c │ ├── puttext.c │ ├── regexp.c │ └── space.c ├── libc │ ├── i386 │ │ ├── abi_objects │ │ ├── ansi.def │ │ ├── crt │ │ │ ├── cerror.s │ │ │ ├── fpreal.s │ │ │ └── mcount.s │ │ ├── csu │ │ │ ├── crt0.s │ │ │ ├── crt1.s │ │ │ ├── crti.s │ │ │ ├── crtn.s │ │ │ ├── mcrt0.s │ │ │ ├── mcrt1.s │ │ │ ├── pcrt1.s │ │ │ ├── pcrti.s │ │ │ └── pcrtn.s │ │ ├── fp │ │ │ ├── finite.c │ │ │ ├── fp.h │ │ │ ├── fp_data.c │ │ │ ├── fpgetmask.c │ │ │ ├── fpgetround.c │ │ │ ├── fpgetsticky.c │ │ │ ├── fpparts.h │ │ │ ├── fpsetmask.c │ │ │ ├── fpsetround.c │ │ │ ├── fpsetsticky.c │ │ │ ├── fpstart.s │ │ │ ├── fpstart0.s │ │ │ ├── fpstart1.c │ │ │ ├── logb.c │ │ │ └── scalb.c │ │ ├── gen │ │ │ ├── abs.s │ │ │ ├── atof.c │ │ │ ├── biglitpow.s │ │ │ ├── cuexit.s │ │ │ ├── dtop.c │ │ │ ├── ecvt.c │ │ │ ├── fk_ctype.s │ │ │ ├── fk_iob.s │ │ │ ├── fpgetrnd.s │ │ │ ├── fpsetrnd.s │ │ │ ├── frexp.c │ │ │ ├── gen_def.c │ │ │ ├── getctxt.c │ │ │ ├── i386_data.s │ │ │ ├── isnand.s │ │ │ ├── isnanf.s │ │ │ ├── ladd.s │ │ │ ├── lconstants.c │ │ │ ├── ldexp.c │ │ │ ├── ldivide.s │ │ │ ├── lexp10.c │ │ │ ├── llog10.c │ │ │ ├── lmul.s │ │ │ ├── lshiftl.s │ │ │ ├── lsign.s │ │ │ ├── lsub.s │ │ │ ├── ltostr.c │ │ │ ├── makectxt.c │ │ │ ├── mall_data.s │ │ │ ├── memccpy.s │ │ │ ├── memchr.s │ │ │ ├── memcmp.s │ │ │ ├── memcpy.s │ │ │ ├── memset.s │ │ │ ├── ptod.c │ │ │ ├── setjmp.s │ │ │ ├── sh_data.c │ │ │ ├── siginfolst.c │ │ │ ├── siglongjmp.c │ │ │ ├── sigsetjmp.s │ │ │ ├── strcat.s │ │ │ ├── strchr.s │ │ │ ├── strcmp.s │ │ │ ├── strcpy.s │ │ │ ├── strlen.s │ │ │ ├── strncat.s │ │ │ ├── strncmp.s │ │ │ ├── strncpy.s │ │ │ ├── strrchr.s │ │ │ ├── strtod.c │ │ │ └── swapctxt.c │ │ ├── m4.def │ │ ├── makefile │ │ ├── mcount.def │ │ ├── nonansi.def │ │ ├── nonpic.def │ │ ├── pic.def │ │ ├── shared_objects │ │ ├── shlibc.mk │ │ ├── spec │ │ ├── sys.def │ │ └── sys │ │ │ ├── _nfssys.s │ │ │ ├── _rename.s │ │ │ ├── _sigaction.s │ │ │ ├── _signal.s │ │ │ ├── access.s │ │ │ ├── acct.s │ │ │ ├── adjtime.s │ │ │ ├── alarm.s │ │ │ ├── chdir.s │ │ │ ├── chmod.s │ │ │ ├── chown.s │ │ │ ├── chroot.s │ │ │ ├── close.s │ │ │ ├── creat.s │ │ │ ├── dup.s │ │ │ ├── execl.s │ │ │ ├── execle.s │ │ │ ├── exect.s │ │ │ ├── execv.s │ │ │ ├── execve.s │ │ │ ├── exit.s │ │ │ ├── fchdir.s │ │ │ ├── fchmod.s │ │ │ ├── fchown.s │ │ │ ├── fcntl.s │ │ │ ├── fork.s │ │ │ ├── fpathconf.s │ │ │ ├── fstat.s │ │ │ ├── fstatf.s │ │ │ ├── fstatfs.s │ │ │ ├── fstatvfs.s │ │ │ ├── fsync.s │ │ │ ├── fxstat.s │ │ │ ├── getdents.s │ │ │ ├── getegid.s │ │ │ ├── geteuid.s │ │ │ ├── getgid.s │ │ │ ├── getgroups.s │ │ │ ├── getmsg.s │ │ │ ├── getpid.s │ │ │ ├── getpmsg.s │ │ │ ├── getppid.s │ │ │ ├── getrlimit.s │ │ │ ├── getuid.s │ │ │ ├── gtty.s │ │ │ ├── ioctl.s │ │ │ ├── kill.s │ │ │ ├── lchown.s │ │ │ ├── link.s │ │ │ ├── lseek.s │ │ │ ├── lstat.s │ │ │ ├── lxstat.s │ │ │ ├── memcntl.s │ │ │ ├── mincore.s │ │ │ ├── mkdir.s │ │ │ ├── mknod.s │ │ │ ├── mmap.s │ │ │ ├── mount.s │ │ │ ├── mprotect.s │ │ │ ├── msgsys.c │ │ │ ├── msgsys.s │ │ │ ├── munmap.s │ │ │ ├── nice.s │ │ │ ├── nuname.s │ │ │ ├── open.s │ │ │ ├── pathconf.s │ │ │ ├── pause.s │ │ │ ├── pipe.s │ │ │ ├── plock.s │ │ │ ├── poll.s │ │ │ ├── priocntlset.s │ │ │ ├── profil.s │ │ │ ├── ptrace.s │ │ │ ├── putmsg.s │ │ │ ├── putpmsg.s │ │ │ ├── read.s │ │ │ ├── readlink.s │ │ │ ├── readv.s │ │ │ ├── rfsys.s │ │ │ ├── rmdir.s │ │ │ ├── sbrk.s │ │ │ ├── semsys.c │ │ │ ├── semsys.s │ │ │ ├── seteguid.s │ │ │ ├── setgid.s │ │ │ ├── setgroups.s │ │ │ ├── setpgrp.s │ │ │ ├── setrlimit.s │ │ │ ├── setsid.s │ │ │ ├── setuid.s │ │ │ ├── setuname.s │ │ │ ├── shmsys.c │ │ │ ├── shmsys.s │ │ │ ├── sigaction.c │ │ │ ├── sigaltstk.s │ │ │ ├── signal.s │ │ │ ├── sigpending.s │ │ │ ├── sigprocmsk.s │ │ │ ├── sigsendset.s │ │ │ ├── sigsuspend.s │ │ │ ├── stat.s │ │ │ ├── statf.s │ │ │ ├── statfs.s │ │ │ ├── statvfs.s │ │ │ ├── stime.s │ │ │ ├── stty.s │ │ │ ├── symlink.s │ │ │ ├── sync.s │ │ │ ├── syscall.s │ │ │ ├── sysconfig.s │ │ │ ├── sysfs.s │ │ │ ├── sysi86.s │ │ │ ├── sysinfo.s │ │ │ ├── time.s │ │ │ ├── times.s │ │ │ ├── uadmin.s │ │ │ ├── ucontext.s │ │ │ ├── ulimit.s │ │ │ ├── umask.s │ │ │ ├── umount.s │ │ │ ├── uname.s │ │ │ ├── unlink.s │ │ │ ├── ustat.s │ │ │ ├── utime.s │ │ │ ├── utssys.s │ │ │ ├── vfork.s │ │ │ ├── wait.s │ │ │ ├── waitid.s │ │ │ ├── write.s │ │ │ ├── writev.s │ │ │ ├── xmknod.s │ │ │ └── xstat.s │ ├── inc │ │ ├── shlib.h │ │ └── synonyms.h │ ├── libc.mk │ ├── port │ │ ├── gen │ │ │ ├── _ctype.c │ │ │ ├── _loc_data.c │ │ │ ├── _locale.c │ │ │ ├── _locale.h │ │ │ ├── _set_tab.c │ │ │ ├── _shrd_data.c │ │ │ ├── _wchar.h │ │ │ ├── _xftw.c │ │ │ ├── a64l.c │ │ │ ├── abort.c │ │ │ ├── abs.c │ │ │ ├── assert.c │ │ │ ├── atexit.c │ │ │ ├── atof.c │ │ │ ├── atoi.c │ │ │ ├── atol.c │ │ │ ├── bsearch.c │ │ │ ├── calloc.c │ │ │ ├── cat_init.c │ │ │ ├── catclose.c │ │ │ ├── catgets.c │ │ │ ├── catopen.c │ │ │ ├── cfgetispeed.c │ │ │ ├── cfgetospeed.c │ │ │ ├── cfree.c │ │ │ ├── cfsetispeed.c │ │ │ ├── cfsetospeed.c │ │ │ ├── cftime.c │ │ │ ├── clock.c │ │ │ ├── closedir.c │ │ │ ├── colldata.c │ │ │ ├── colldata.h │ │ │ ├── crypt.c │ │ │ ├── ctime.c │ │ │ ├── ctype.c │ │ │ ├── ctypefcns.c │ │ │ ├── div.c │ │ │ ├── drand48.c │ │ │ ├── dup2.c │ │ │ ├── ecvt.c │ │ │ ├── errlist │ │ │ ├── errlist.awk │ │ │ ├── execvp.c │ │ │ ├── fattach.c │ │ │ ├── fdetach.c │ │ │ ├── ffs.c │ │ │ ├── fmtmsg.c │ │ │ ├── frexp.c │ │ │ ├── ftok.c │ │ │ ├── ftw.c │ │ │ ├── gcvt.c │ │ │ ├── getcwd.c │ │ │ ├── getdate.c │ │ │ ├── getdate_data.c │ │ │ ├── getdate_gd.c │ │ │ ├── getenv.c │ │ │ ├── getgrent.c │ │ │ ├── getgrnam.c │ │ │ ├── gethz.c │ │ │ ├── getlogin.c │ │ │ ├── getmntent.c │ │ │ ├── getopt.c │ │ │ ├── getpw.c │ │ │ ├── getpwent.c │ │ │ ├── getpwnam.c │ │ │ ├── getsetitimer.c │ │ │ ├── getspent.c │ │ │ ├── getsubopt.c │ │ │ ├── gettimeofday.c │ │ │ ├── gettxt.c │ │ │ ├── getut.c │ │ │ ├── getutx.c │ │ │ ├── getvfsent.c │ │ │ ├── hrtcftime.c │ │ │ ├── hrtctime.c │ │ │ ├── hrtnewres.c │ │ │ ├── hrtstrftime.c │ │ │ ├── hsearch.c │ │ │ ├── import_def.c │ │ │ ├── initgroups.c │ │ │ ├── insque.c │ │ │ ├── isastream.c │ │ │ ├── isatty.c │ │ │ ├── l3.c │ │ │ ├── l64a.c │ │ │ ├── lckpwdf.c │ │ │ ├── ldexp.c │ │ │ ├── lfind.c │ │ │ ├── localeconv.c │ │ │ ├── lsearch.c │ │ │ ├── makefile │ │ │ ├── mallint.h │ │ │ ├── malloc.c │ │ │ ├── mbstowcs.c │ │ │ ├── mbtowc.c │ │ │ ├── memalign.c │ │ │ ├── memccpy.c │ │ │ ├── memchr.c │ │ │ ├── memcmp.c │ │ │ ├── memcpy.c │ │ │ ├── memmove.c │ │ │ ├── memset.c │ │ │ ├── mkdev.c │ │ │ ├── mkfifo.c │ │ │ ├── mktemp.c │ │ │ ├── mlock.c │ │ │ ├── mlockall.c │ │ │ ├── modf.c │ │ │ ├── modff.c │ │ │ ├── mon.c │ │ │ ├── msync.c │ │ │ ├── munlock.c │ │ │ ├── munlockall.c │ │ │ ├── nftw.c │ │ │ ├── nl_langinfo.c │ │ │ ├── old_tolower.c │ │ │ ├── old_toupper.c │ │ │ ├── opendir.c │ │ │ ├── opt_data.c │ │ │ ├── perror.c │ │ │ ├── priocntl.c │ │ │ ├── psiginfo.c │ │ │ ├── psignal.c │ │ │ ├── pt.c │ │ │ ├── putenv.c │ │ │ ├── putpwent.c │ │ │ ├── qsort.c │ │ │ ├── raise.c │ │ │ ├── rand.c │ │ │ ├── readdir.c │ │ │ ├── realpath.c │ │ │ ├── rename.c │ │ │ ├── rewinddir.c │ │ │ ├── seekdir.c │ │ │ ├── select.c │ │ │ ├── setlocale.c │ │ │ ├── sigflag.c │ │ │ ├── siglist.c │ │ │ ├── sigsend.c │ │ │ ├── sigsetops.c │ │ │ ├── sleep.c │ │ │ ├── ssignal.c │ │ │ ├── str2id.c │ │ │ ├── str2sig.c │ │ │ ├── strcat.c │ │ │ ├── strchr.c │ │ │ ├── strcmp.c │ │ │ ├── strcpy.c │ │ │ ├── strcspn.c │ │ │ ├── strdup.c │ │ │ ├── strerror.c │ │ │ ├── strftime.c │ │ │ ├── strlen.c │ │ │ ├── strncat.c │ │ │ ├── strncmp.c │ │ │ ├── strncpy.c │ │ │ ├── strpbrk.c │ │ │ ├── strrchr.c │ │ │ ├── strspn.c │ │ │ ├── strstr.c │ │ │ ├── strtod.c │ │ │ ├── strtok.c │ │ │ ├── strtol.c │ │ │ ├── strtoul.c │ │ │ ├── strxfrm.c │ │ │ ├── swab.c │ │ │ ├── swapctl.c │ │ │ ├── sysconf.c │ │ │ ├── syslog.c │ │ │ ├── tcdrain.c │ │ │ ├── tcflow.c │ │ │ ├── tcflush.c │ │ │ ├── tcgetattr.c │ │ │ ├── tcgetpgrp.c │ │ │ ├── tcgetsid.c │ │ │ ├── tcsendbreak.c │ │ │ ├── tcsetattr.c │ │ │ ├── tcsetpgrp.c │ │ │ ├── tell.c │ │ │ ├── telldir.c │ │ │ ├── tfind.c │ │ │ ├── time_comm.c │ │ │ ├── time_data.c │ │ │ ├── time_gdata.c │ │ │ ├── tolower.c │ │ │ ├── toupper.c │ │ │ ├── truncate.c │ │ │ ├── tsearch.c │ │ │ ├── ttyname.c │ │ │ ├── ttyslot.c │ │ │ ├── valloc.c │ │ │ ├── values-Xa.c │ │ │ ├── values-Xc.c │ │ │ ├── values-Xt.c │ │ │ ├── waitpid.c │ │ │ ├── wcstombs.c │ │ │ └── wctomb.c │ │ ├── makefile │ │ ├── print │ │ │ ├── doprnt.c │ │ │ ├── fprintf.c │ │ │ ├── makefile │ │ │ ├── print.h │ │ │ ├── printf.c │ │ │ ├── sprintf.c │ │ │ ├── vfprintf.c │ │ │ ├── vprintf.c │ │ │ └── vsprintf.c │ │ ├── stdio │ │ │ ├── _filbuf.c │ │ │ ├── _findbuf.c │ │ │ ├── _flsbuf.c │ │ │ ├── _wrtchk.c │ │ │ ├── clearerr.c │ │ │ ├── clrerr.c │ │ │ ├── ctermid.c │ │ │ ├── cuserid.c │ │ │ ├── data.c │ │ │ ├── doscan.c │ │ │ ├── fdopen.c │ │ │ ├── feof.c │ │ │ ├── ferror.c │ │ │ ├── fgetc.c │ │ │ ├── fgets.c │ │ │ ├── fileno.c │ │ │ ├── flush.c │ │ │ ├── fopen.c │ │ │ ├── fpos.c │ │ │ ├── fputc.c │ │ │ ├── fputs.c │ │ │ ├── fread.c │ │ │ ├── fseek.c │ │ │ ├── ftell.c │ │ │ ├── fwrite.c │ │ │ ├── getc.c │ │ │ ├── getchar.c │ │ │ ├── getpass.c │ │ │ ├── gets.c │ │ │ ├── getw.c │ │ │ ├── makefile │ │ │ ├── popen.c │ │ │ ├── putc.c │ │ │ ├── putchar.c │ │ │ ├── puts.c │ │ │ ├── putw.c │ │ │ ├── rew.c │ │ │ ├── rewind.c │ │ │ ├── scanf.c │ │ │ ├── setbuf.c │ │ │ ├── setvbuf.c │ │ │ ├── stdiom.h │ │ │ ├── system.c │ │ │ ├── tempnam.c │ │ │ ├── tmpfile.c │ │ │ ├── tmpnam.c │ │ │ └── ungetc.c │ │ └── sys │ │ │ ├── execl.c │ │ │ ├── execle.c │ │ │ ├── execv.c │ │ │ ├── hrtsys.c │ │ │ ├── lockf.c │ │ │ ├── makefile │ │ │ ├── msgsys.c │ │ │ ├── nfssys.c │ │ │ ├── semsys.c │ │ │ └── shmsys.c │ └── tstansi.c ├── libcmd │ ├── deflt.c │ ├── getterm.c │ ├── libcmd.mk │ ├── magic.c │ └── sum.c ├── libcrypt │ ├── crypt.c │ ├── cryptio.c │ ├── des_crypt.c │ ├── des_encrypt.c │ ├── libcrypt.mk │ └── synonyms.h ├── libdl │ ├── i386 │ │ ├── dlclose.s │ │ ├── dlerror.s │ │ ├── dlopen.s │ │ └── dlsym.s │ └── libdl.mk ├── libgen │ ├── _range.h │ ├── _regexp.h │ ├── _wchar.h │ ├── basename.c │ ├── bgets.c │ ├── bufsplit.c │ ├── copylist.c │ ├── dirname.c │ ├── eaccess.c │ ├── gmatch.c │ ├── isencrypt.c │ ├── libgen.h │ ├── libgen.mk │ ├── mkdirp.c │ ├── mklib-dot-h │ ├── p2open.c │ ├── pathfind.c │ ├── reg_compile.c │ ├── reg_step.c │ ├── regcmp.c │ ├── regex.c │ ├── regexpr.h │ ├── rmdirp.c │ ├── strccpy.c │ ├── strecpy.c │ ├── strfind.c │ ├── strrspn.c │ ├── strtrns.c │ └── synonyms.h ├── libgenIO │ ├── g_init.c │ ├── g_read.c │ ├── g_write.c │ └── libgenIO.mk ├── libl │ ├── lib │ │ ├── allprint.c │ │ ├── main.c │ │ ├── ncform │ │ ├── nrform │ │ ├── reject.c │ │ ├── yyless.c │ │ └── yywrap.c │ └── libl.mk ├── libm │ ├── i386 │ │ ├── ansi.def │ │ ├── atan.s │ │ ├── atanf.s │ │ ├── exp.s │ │ ├── expf.s │ │ ├── fmod.c │ │ ├── fmodf.c │ │ ├── log.c │ │ ├── logf.c │ │ ├── m4.def │ │ ├── makefile │ │ ├── mcount.def │ │ ├── reduce.s │ │ ├── reducef.s │ │ ├── rem.c │ │ ├── sin.s │ │ ├── sinf.s │ │ ├── sqrt.c │ │ └── sqrtf.c │ ├── libm.mk │ ├── port │ │ ├── acosh.c │ │ ├── asin.c │ │ ├── asinf.c │ │ ├── asinh.c │ │ ├── atan.c │ │ ├── atanf.c │ │ ├── atanh.c │ │ ├── cbrt.c │ │ ├── erf.c │ │ ├── exp.c │ │ ├── expf.c │ │ ├── fabs.c │ │ ├── fabsf.c │ │ ├── floor.c │ │ ├── floorf.c │ │ ├── fmod.c │ │ ├── fmodf.c │ │ ├── fpparts.h │ │ ├── gamma.c │ │ ├── hypot.c │ │ ├── j0.c │ │ ├── j1.c │ │ ├── jn.c │ │ ├── log.c │ │ ├── log1p.c │ │ ├── logf.c │ │ ├── makefile │ │ ├── matherr.c │ │ ├── pow.c │ │ ├── powf.c │ │ ├── reduce.c │ │ ├── reducef.c │ │ ├── rem.c │ │ ├── rint.c │ │ ├── sin.c │ │ ├── sinf.c │ │ ├── sinh.c │ │ ├── sinhf.c │ │ ├── sqrt.c │ │ ├── sqrtf.c │ │ ├── synonyms.h │ │ ├── tanh.c │ │ └── tanhf.c │ └── tstansi.c ├── libmalloc │ ├── libmalloc.mk │ ├── mallint.h │ └── malloc.c ├── libmp │ ├── gcd.c │ ├── libmp.mk │ ├── madd.c │ ├── mdiv.c │ ├── mout.c │ ├── msqrt.c │ ├── mult.c │ ├── ngcd.c │ ├── pow.c │ └── util.c ├── libnls │ ├── libnls.mk │ ├── nlsdata.c │ ├── nlsenv.c │ └── nlsrequest.c ├── libns │ ├── astoa.c │ ├── attconnect.c │ ├── canon.c │ ├── getoken.c │ ├── idload.h │ ├── ind_data.c │ ├── libns.mk │ ├── logmalloc.c │ ├── negotiate.c │ ├── netname.c │ ├── ns_comm.c │ ├── ns_dfinfo.c │ ├── ns_errlist.c │ ├── ns_error.c │ ├── ns_findp.c │ ├── ns_getaddr.c │ ├── ns_getblock.c │ ├── ns_info.c │ ├── ns_initaddr.c │ ├── ns_sendpass.c │ ├── ns_syntax.c │ ├── ns_verify.c │ ├── nsblock.c │ ├── nsdb.h │ ├── nslog.c │ ├── nslog.h │ ├── nsports.c │ ├── nsports.h │ ├── nsquery.c │ ├── nsrports.c │ ├── rfrcv.c │ ├── rfrequest.c │ ├── rfs_up.c │ ├── rtoken.c │ ├── stdns.h │ ├── stoa.c │ ├── swtab.c │ └── uidmap.c ├── libnsl │ ├── des │ │ ├── _fixcrypt.awk │ │ ├── des.mk │ │ ├── intl_crypt.c │ │ └── intl_soft.c │ ├── dial │ │ ├── altconn.c │ │ ├── callers.c │ │ ├── conn.c │ │ ├── dial.c │ │ ├── dial.mk │ │ ├── dk.h │ │ ├── dkbreak.c │ │ ├── dkdial.c │ │ ├── dkerr.c │ │ ├── dkminor.c │ │ ├── dtnamer.c │ │ ├── getargs.c │ │ ├── interface.c │ │ ├── line.c │ │ ├── parms.h │ │ ├── stoa.c │ │ ├── strecpy.c │ │ ├── strsave.c │ │ ├── sysexits.h │ │ ├── sysfiles.c │ │ ├── sysfiles.h │ │ ├── ulockf.c │ │ ├── uucp.h │ │ └── uucpdefs.c │ ├── libnsl.mk │ ├── netdir │ │ ├── netdir.c │ │ └── netdir.mk │ ├── netselect │ │ ├── netcspace.h │ │ ├── netselect.c │ │ └── netselect.mk │ ├── nsl │ │ ├── __calloc_def.c │ │ ├── __close_def.c │ │ ├── __errno_def.c │ │ ├── __fcntl_def.c │ │ ├── __free_def.c │ │ ├── __getmsg_def.c │ │ ├── __getpmsg_df.c │ │ ├── __ioctl_def.c │ │ ├── __memcpy_def.c │ │ ├── __open_def.c │ │ ├── __patch.c │ │ ├── __perror_def.c │ │ ├── __putmsg_def.c │ │ ├── __putpmsg_df.c │ │ ├── __sigset_def.c │ │ ├── __strlen_def.c │ │ ├── __ulimit_def.c │ │ ├── __write_def.c │ │ ├── _conn_util.c │ │ ├── _data.c │ │ ├── _data2.c │ │ ├── _dummy.c │ │ ├── _errlst.c │ │ ├── _import.h │ │ ├── _spec │ │ ├── _utility.c │ │ ├── nsl.mk │ │ ├── t_accept.c │ │ ├── t_alloc.c │ │ ├── t_bind.c │ │ ├── t_close.c │ │ ├── t_connect.c │ │ ├── t_error.c │ │ ├── t_free.c │ │ ├── t_getinfo.c │ │ ├── t_getname.c │ │ ├── t_getstate.c │ │ ├── t_listen.c │ │ ├── t_look.c │ │ ├── t_open.c │ │ ├── t_optmgmt.c │ │ ├── t_rcv.c │ │ ├── t_rcvconnect.c │ │ ├── t_rcvdis.c │ │ ├── t_rcvrel.c │ │ ├── t_rcvudata.c │ │ ├── t_rcvuderr.c │ │ ├── t_snd.c │ │ ├── t_snddis.c │ │ ├── t_sndrel.c │ │ ├── t_sndudata.c │ │ ├── t_sync.c │ │ └── t_unbind.c │ ├── rpc │ │ ├── auth_des.c │ │ ├── auth_none.c │ │ ├── auth_sys.c │ │ ├── authdes_prot.c │ │ ├── authsys_prot.c │ │ ├── clnt_bcast.c │ │ ├── clnt_bsoc.c │ │ ├── clnt_dg.c │ │ ├── clnt_generic.c │ │ ├── clnt_perror.c │ │ ├── clnt_raw.c │ │ ├── clnt_simple.c │ │ ├── clnt_vc.c │ │ ├── getdname.c │ │ ├── gethostent.c │ │ ├── gethostname.c │ │ ├── getrpcent.c │ │ ├── inet_ntoa.c │ │ ├── key_call.c │ │ ├── key_prot.c │ │ ├── netname.c │ │ ├── netnamer.c │ │ ├── openchild.c │ │ ├── pmap_clnt.c │ │ ├── pmap_prot.c │ │ ├── port.c │ │ ├── publickey.c │ │ ├── rpc.mk │ │ ├── rpc_callmsg.c │ │ ├── rpc_comdata.c │ │ ├── rpc_generic.c │ │ ├── rpc_prot.c │ │ ├── rpc_soc.c │ │ ├── rpcb_clnt.c │ │ ├── rpcb_prot.c │ │ ├── rpcdname.c │ │ ├── rtime_tli.c │ │ ├── secretkey.c │ │ ├── svc.c │ │ ├── svc_auth.c │ │ ├── svc_auth_sys.c │ │ ├── svc_dg.c │ │ ├── svc_generic.c │ │ ├── svc_raw.c │ │ ├── svc_run.c │ │ ├── svc_simple.c │ │ ├── svc_vc.c │ │ ├── svcauth_des.c │ │ ├── svcdesname.c │ │ ├── ti_opts.c │ │ ├── xcrypt.c │ │ ├── xdr.c │ │ ├── xdr_array.c │ │ ├── xdr_float.c │ │ ├── xdr_mbuf.c │ │ ├── xdr_mem.c │ │ ├── xdr_rec.c │ │ ├── xdr_refer.c │ │ └── xdr_stdio.c │ ├── saf │ │ ├── checkver.c │ │ ├── doconfig.c │ │ ├── saf.mk │ │ ├── ut.c │ │ └── utx.c │ └── yp │ │ ├── dbm.c │ │ ├── yp.mk │ │ ├── yp_all.c │ │ ├── yp_b.h │ │ ├── yp_b.x │ │ ├── yp_b_clnt.c │ │ ├── yp_b_xdr.c │ │ ├── yp_bind.c │ │ ├── yp_enum.c │ │ ├── yp_master.c │ │ ├── yp_match.c │ │ ├── yp_order.c │ │ ├── yp_update.c │ │ ├── yperr_string.c │ │ ├── ypmaint_xdr.c │ │ ├── ypprot_err.c │ │ ├── ypupd.c │ │ ├── ypupd.h │ │ └── ypxdr.c ├── libpkg │ ├── canonize.c │ ├── ckvolseq.c │ ├── cvtpath.c │ ├── devtype.c │ ├── dstream.c │ ├── estrdup.c │ ├── gpkglist.c │ ├── gpkgmap.c │ ├── isdir.c │ ├── libpkg.mk │ ├── libpkg3.2.mk │ ├── logerr.c │ ├── mappath.c │ ├── pkgexecl.c │ ├── pkgexecv.c │ ├── pkgmount.c │ ├── pkgtrans.c │ ├── pkgxpand.c │ ├── ppkgmap.c │ ├── progerr.c │ ├── putcfile.c │ ├── rrmdir.c │ ├── runcmd.c │ ├── spkgdir.c │ ├── srchcfile.c │ ├── stubs.c │ ├── tputcfent.c │ └── verify.c ├── libplot │ ├── libplot.mk │ ├── plot │ │ ├── arc.c │ │ ├── box.c │ │ ├── circle.c │ │ ├── close.c │ │ ├── cont.c │ │ ├── dot.c │ │ ├── erase.c │ │ ├── label.c │ │ ├── line.c │ │ ├── linmod.c │ │ ├── move.c │ │ ├── open.c │ │ ├── plot.mk │ │ ├── point.c │ │ ├── putsi.c │ │ └── space.c │ ├── t300 │ │ ├── arc.c │ │ ├── box.c │ │ ├── circle.c │ │ ├── close.c │ │ ├── con.h │ │ ├── dot.c │ │ ├── erase.c │ │ ├── label.c │ │ ├── line.c │ │ ├── linmod.c │ │ ├── move.c │ │ ├── open.c │ │ ├── point.c │ │ ├── space.c │ │ ├── subr.c │ │ └── t300.mk │ ├── t300s │ │ ├── arc.c │ │ ├── box.c │ │ ├── circle.c │ │ ├── close.c │ │ ├── con.h │ │ ├── dot.c │ │ ├── erase.c │ │ ├── label.c │ │ ├── line.c │ │ ├── linmod.c │ │ ├── move.c │ │ ├── open.c │ │ ├── point.c │ │ ├── space.c │ │ ├── subr.c │ │ └── t300s.mk │ ├── t4014 │ │ ├── arc.c │ │ ├── box.c │ │ ├── circle.c │ │ ├── close.c │ │ ├── dot.c │ │ ├── erase.c │ │ ├── label.c │ │ ├── line.c │ │ ├── linemod.c │ │ ├── move.c │ │ ├── open.c │ │ ├── point.c │ │ ├── scale.c │ │ ├── space.c │ │ ├── subr.c │ │ └── t4014.mk │ ├── t450 │ │ ├── arc.c │ │ ├── box.c │ │ ├── circle.c │ │ ├── close.c │ │ ├── con.h │ │ ├── dot.c │ │ ├── erase.c │ │ ├── label.c │ │ ├── line.c │ │ ├── linmod.c │ │ ├── move.c │ │ ├── open.c │ │ ├── point.c │ │ ├── space.c │ │ ├── subr.c │ │ └── t450.mk │ └── vt0 │ │ ├── arc.c │ │ ├── box.c │ │ ├── circle.c │ │ ├── close.c │ │ ├── dot.c │ │ ├── erase.c │ │ ├── frame.c │ │ ├── label.c │ │ ├── line.c │ │ ├── linmod.c │ │ ├── move.c │ │ ├── open.c │ │ ├── point.c │ │ ├── space.c │ │ ├── subr.c │ │ └── vt0.mk ├── librpcsvc │ ├── klm_prot.c │ ├── klm_prot.h │ ├── klm_prot.x │ ├── librpcsvc.mk │ ├── nlm_prot.c │ ├── nlm_prot.h │ ├── nlm_prot.x │ ├── rusersxdr.c │ ├── rwall.x │ ├── rwallxdr.c │ ├── sm_inter.c │ ├── sm_inter.h │ ├── sm_inter.x │ ├── spray.x │ └── sprayxdr.c ├── libsocket │ ├── inet │ │ ├── bindresvport.c │ │ ├── byteorder.c │ │ ├── ether_addr.c │ │ ├── getdomainame.c │ │ ├── gethostent.c │ │ ├── gethostname.c │ │ ├── getnetbyaddr.c │ │ ├── getnetbyname.c │ │ ├── getnetent.c │ │ ├── getproto.c │ │ ├── getprotoent.c │ │ ├── getprotoname.c │ │ ├── getservent.c │ │ ├── gthostnamadr.c │ │ ├── gtservbyname.c │ │ ├── gtservbyport.c │ │ ├── inet.mk │ │ ├── inet_addr.c │ │ ├── inet_lnaof.c │ │ ├── inet_mkaddr.c │ │ ├── inet_netof.c │ │ ├── inet_network.c │ │ ├── inet_ntoa.c │ │ ├── inet_sethost.c │ │ ├── nd_gethost.c │ │ ├── rcmd.c │ │ ├── rexec.c │ │ └── ruserpass.c │ ├── libsocket.mk │ └── socket │ │ ├── _conn_util.c │ │ ├── _utility.c │ │ ├── accept.c │ │ ├── bind.c │ │ ├── callselect.c │ │ ├── connect.c │ │ ├── getpeernm.c │ │ ├── getsocknm.c │ │ ├── getsockopt.c │ │ ├── listen.c │ │ ├── receive.c │ │ ├── s_ioctl.c │ │ ├── send.c │ │ ├── setpeernm.c │ │ ├── setsocknm.c │ │ ├── setsockopt.c │ │ ├── shutdown.c │ │ ├── socket.c │ │ ├── socket.mk │ │ └── socketpair.c ├── libw │ ├── _wchar.h │ ├── getwidth.c │ ├── libw.h │ ├── libw.mk │ ├── mbftowc.c │ ├── scrwidth.c │ └── wisprint.c ├── libwindows │ ├── libwindows.c │ └── libwindows.mk ├── liby │ ├── libmai.c │ ├── liby.mk │ └── libzer.c ├── nametoaddr │ ├── nametoaddr.mk │ ├── npack │ │ ├── npack.c │ │ └── npack.mk │ ├── oam │ │ ├── name_to_addr │ │ │ ├── Help │ │ │ ├── inet │ │ │ │ ├── Form.inethost │ │ │ │ ├── Form.inetserv │ │ │ │ ├── Help │ │ │ │ ├── Menu.inet │ │ │ │ ├── Text.badaddr │ │ │ │ ├── Text.badport │ │ │ │ ├── Text.h_exists │ │ │ │ ├── Text.h_success │ │ │ │ ├── Text.s_exists │ │ │ │ ├── Text.s_success │ │ │ │ └── bin │ │ │ │ │ ├── inet.host │ │ │ │ │ └── inet.services │ │ │ ├── loopback │ │ │ │ ├── Form.lbserv │ │ │ │ ├── Help │ │ │ │ ├── Menu.loopback │ │ │ │ ├── Text.badport │ │ │ │ ├── Text.exists │ │ │ │ ├── Text.lts │ │ │ │ ├── Text.lts_ord │ │ │ │ ├── Text.ord │ │ │ │ ├── Text.ots │ │ │ │ ├── Text.ots_lts │ │ │ │ ├── Text.ots_ord │ │ │ │ ├── Text.success │ │ │ │ └── bin │ │ │ │ │ └── loopback.serv │ │ │ ├── map.menu │ │ │ ├── npack │ │ │ │ ├── Form.npackhost │ │ │ │ ├── Form.npackserv │ │ │ │ ├── Help │ │ │ │ ├── Menu.npack │ │ │ │ ├── Text.badaddr │ │ │ │ ├── Text.badport │ │ │ │ ├── Text.h_exists │ │ │ │ ├── Text.h_success │ │ │ │ ├── Text.s_exists │ │ │ │ ├── Text.s_success │ │ │ │ └── bin │ │ │ │ │ ├── npack.host │ │ │ │ │ └── npack.services │ │ │ └── starlan │ │ │ │ ├── Form.slhost │ │ │ │ ├── Form.slserv │ │ │ │ ├── Help │ │ │ │ ├── Menu.starlan │ │ │ │ ├── Text.badaddr │ │ │ │ ├── Text.badport │ │ │ │ ├── Text.dgh_only │ │ │ │ ├── Text.dgs_only │ │ │ │ ├── Text.h_exists │ │ │ │ ├── Text.h_only │ │ │ │ ├── Text.h_success │ │ │ │ ├── Text.s_exists │ │ │ │ ├── Text.s_only │ │ │ │ ├── Text.s_success │ │ │ │ └── bin │ │ │ │ ├── starlan.host │ │ │ │ └── starlan.servic │ │ └── oam.mk │ ├── resolv │ │ ├── README │ │ ├── libresolv │ │ │ ├── gthostnamadr.c │ │ │ ├── libresolv.mk │ │ │ ├── res.h │ │ │ ├── res_comp.c │ │ │ ├── res_debug.c │ │ │ ├── res_init.c │ │ │ ├── res_mkquery.c │ │ │ ├── res_query.c │ │ │ ├── res_send.c │ │ │ ├── sethostent.c │ │ │ └── strcasecmp.c │ │ ├── libsocket │ │ │ ├── inet │ │ │ │ ├── bindresvport.c │ │ │ │ ├── byteorder.c │ │ │ │ ├── ether_addr.c │ │ │ │ ├── getnetbyaddr.c │ │ │ │ ├── getnetbyname.c │ │ │ │ ├── getnetent.c │ │ │ │ ├── getproto.c │ │ │ │ ├── getprotoent.c │ │ │ │ ├── getprotoname.c │ │ │ │ ├── getservent.c │ │ │ │ ├── gtservbyname.c │ │ │ │ ├── gtservbyport.c │ │ │ │ ├── inet.mk │ │ │ │ ├── inet_addr.c │ │ │ │ ├── inet_lnaof.c │ │ │ │ ├── inet_mkaddr.c │ │ │ │ ├── inet_netof.c │ │ │ │ ├── inet_network.c │ │ │ │ ├── rcmd.c │ │ │ │ ├── rexec.c │ │ │ │ └── ruserpass.c │ │ │ ├── libsocket.mk │ │ │ └── socket │ │ │ │ ├── _conn_util.c │ │ │ │ ├── _utility.c │ │ │ │ ├── accept.c │ │ │ │ ├── bind.c │ │ │ │ ├── connect.c │ │ │ │ ├── getpeernm.c │ │ │ │ ├── getsocknm.c │ │ │ │ ├── getsockopt.c │ │ │ │ ├── listen.c │ │ │ │ ├── receive.c │ │ │ │ ├── s_ioctl.c │ │ │ │ ├── send.c │ │ │ │ ├── setpeernm.c │ │ │ │ ├── setsocknm.c │ │ │ │ ├── setsockopt.c │ │ │ │ ├── shutdown.c │ │ │ │ ├── socket.c │ │ │ │ ├── socket.mk │ │ │ │ └── socketpair.c │ │ ├── resolv.c │ │ ├── resolv.mk │ │ └── resolvabi.h │ ├── straddr │ │ ├── straddr.c │ │ └── straddr.mk │ └── tcpip │ │ ├── file_db.c │ │ ├── tcpip.c │ │ └── tcpip.mk ├── rtld │ ├── common │ │ ├── dlfcns.c │ │ ├── dllib.h │ │ ├── externs.h │ │ ├── globals.c │ │ ├── map.c │ │ ├── paths.c │ │ ├── rtfcns.c │ │ ├── rtinc.h │ │ ├── rtld.c │ │ └── rtld.h │ ├── i386 │ │ ├── align.s │ │ ├── binder.c │ │ ├── clrpage.s │ │ ├── genset.awk │ │ ├── genset.in │ │ ├── machdep.h │ │ ├── makefile │ │ ├── reloc.c │ │ ├── rtbinder.s │ │ ├── rtboot.s │ │ ├── rtmemcpy.s │ │ └── rtsetup.c │ ├── m32 │ │ ├── rtmemcpy.s │ │ └── rtsyscall.s │ └── rtld.mk ├── xlibcurses │ ├── demo │ │ ├── .menu.data │ │ ├── aliens.6 │ │ ├── aliens.c │ │ ├── ft │ │ ├── makefile │ │ ├── menu.c │ │ ├── menu.readme │ │ ├── pacman │ │ │ ├── README │ │ │ ├── getopt.c │ │ │ ├── makefile │ │ │ ├── monster.c │ │ │ ├── movie.c │ │ │ ├── pacdefs.h │ │ │ ├── pacman.6 │ │ │ ├── pacman.c │ │ │ └── util.c │ │ ├── rain.6 │ │ ├── rain.c │ │ ├── window │ │ │ ├── README │ │ │ ├── ioctl.h │ │ │ ├── pty.c │ │ │ ├── tty.h │ │ │ ├── window.1 │ │ │ └── window.c │ │ ├── worms.6 │ │ └── worms.c │ ├── screen │ │ ├── V2.__sscans.c │ │ ├── V2._sprintw.c │ │ ├── V2.makenew.c │ │ ├── V3.box.c │ │ ├── V3.initscr.c │ │ ├── V3.m_addch.c │ │ ├── V3.m_addstr.c │ │ ├── V3.m_clear.c │ │ ├── V3.m_erase.c │ │ ├── V3.m_initscr.c │ │ ├── V3.m_move.c │ │ ├── V3.m_newterm.c │ │ ├── V3.m_refresh.c │ │ ├── V3.newterm.c │ │ ├── V3.pechochar.c │ │ ├── V3.upd_old_y.c │ │ ├── V3.vidattr.c │ │ ├── V3.vidputs.c │ │ ├── V3.waddch.c │ │ ├── V3.wattroff.c │ │ ├── V3.wattron.c │ │ ├── V3.wattrset.c │ │ ├── V3.wechochar.c │ │ ├── V3.winsch.c │ │ ├── _addch.c │ │ ├── _addchnstr.c │ │ ├── _addchstr.c │ │ ├── _addnstr.c │ │ ├── _addstr.c │ │ ├── _attroff.c │ │ ├── _attron.c │ │ ├── _attrset.c │ │ ├── _beep.c │ │ ├── _bkgd.c │ │ ├── _bkgdset.c │ │ ├── _border.c │ │ ├── _box.c │ │ ├── _clear.c │ │ ├── _clrtobot.c │ │ ├── _clrtoeol.c │ │ ├── _crmode.c │ │ ├── _del_curterm.c │ │ ├── _delch.c │ │ ├── _deleteln.c │ │ ├── _echo.c │ │ ├── _echochar.c │ │ ├── _erase.c │ │ ├── _fixterm.c │ │ ├── _flash.c │ │ ├── _garbagdlins.c │ │ ├── _garbagedwin.c │ │ ├── _getch.c │ │ ├── _getstr.c │ │ ├── _halfdelay.c │ │ ├── _hline.c │ │ ├── _inch.c │ │ ├── _inchnstr.c │ │ ├── _inchstr.c │ │ ├── _innstr.c │ │ ├── _insch.c │ │ ├── _insdelln.c │ │ ├── _insertln.c │ │ ├── _insnstr.c │ │ ├── _insstr.c │ │ ├── _instr.c │ │ ├── _intrflush.c │ │ ├── _meta.c │ │ ├── _move.c │ │ ├── _mvaddch.c │ │ ├── _mvaddchnstr.c │ │ ├── _mvaddchstr.c │ │ ├── _mvaddnstr.c │ │ ├── _mvaddstr.c │ │ ├── _mvdelch.c │ │ ├── _mvgetch.c │ │ ├── _mvgetstr.c │ │ ├── _mvhline.c │ │ ├── _mvinch.c │ │ ├── _mvinchnstr.c │ │ ├── _mvinchstr.c │ │ ├── _mvinnstr.c │ │ ├── _mvinsch.c │ │ ├── _mvinsnstr.c │ │ ├── _mvinsstr.c │ │ ├── _mvinstr.c │ │ ├── _mvvline.c │ │ ├── _mvwaddch.c │ │ ├── _mvwaddchnst.c │ │ ├── _mvwaddchstr.c │ │ ├── _mvwaddnstr.c │ │ ├── _mvwaddstr.c │ │ ├── _mvwdelch.c │ │ ├── _mvwgetch.c │ │ ├── _mvwgetstr.c │ │ ├── _mvwhline.c │ │ ├── _mvwinch.c │ │ ├── _mvwinchnst.c │ │ ├── _mvwinchstr.c │ │ ├── _mvwinnstr.c │ │ ├── _mvwinsch.c │ │ ├── _mvwinsnstr.c │ │ ├── _mvwinsstr.c │ │ ├── _mvwinstr.c │ │ ├── _mvwvline.c │ │ ├── _newterm.c │ │ ├── _nl.c │ │ ├── _nocrmode.c │ │ ├── _noecho.c │ │ ├── _nonl.c │ │ ├── _noqiflush.c │ │ ├── _overlay.c │ │ ├── _overwrite.c │ │ ├── _qiflush.c │ │ ├── _refresh.c │ │ ├── _resetterm.c │ │ ├── _saveterm.c │ │ ├── _scr_init.c │ │ ├── _scr_restore.c │ │ ├── _scr_set.c │ │ ├── _scrl.c │ │ ├── _scroll.c │ │ ├── _set_curterm.c │ │ ├── _set_term.c │ │ ├── _setscrreg.c │ │ ├── _slk_init.c │ │ ├── _standend.c │ │ ├── _standout.c │ │ ├── _subpad.c │ │ ├── _timeout.c │ │ ├── _touchline.c │ │ ├── _unctrl.c │ │ ├── _vline.c │ │ ├── _waddchstr.c │ │ ├── _waddstr.c │ │ ├── _wclear.c │ │ ├── _wdeleteln.c │ │ ├── _werase.c │ │ ├── _winsertln.c │ │ ├── _winsstr.c │ │ ├── _wstandend.c │ │ ├── _wstandout.c │ │ ├── baudrate.c │ │ ├── can_change.c │ │ ├── caps │ │ ├── captoinfo.c │ │ ├── cbreak.c │ │ ├── cexpand.c │ │ ├── chgtinfo.1 │ │ ├── chgtinfo.c │ │ ├── chkinput.c │ │ ├── clearok.c │ │ ├── color_cont.c │ │ ├── compiler.h │ │ ├── copyright.h │ │ ├── copywin.c │ │ ├── curs_set.c │ │ ├── curserr.c │ │ ├── curses.c │ │ ├── curses.ed │ │ ├── curses_inc.h │ │ ├── curshdr.h │ │ ├── def_prog.c │ │ ├── delay.c │ │ ├── delay_out.c │ │ ├── delkey.c │ │ ├── delkeymap.c │ │ ├── delscreen.c │ │ ├── delterm.c │ │ ├── delwin.c │ │ ├── derwin.c │ │ ├── doprnt.c │ │ ├── doscan.c │ │ ├── doupdate.c │ │ ├── draino.c │ │ ├── dupwin.c │ │ ├── endwin.c │ │ ├── erasechar.c │ │ ├── flushinp.c │ │ ├── getattrs.c │ │ ├── getbegyx.c │ │ ├── getbkgd.c │ │ ├── getmaxyx.c │ │ ├── getopt.c │ │ ├── getparyx.c │ │ ├── getsyx.c │ │ ├── gettmode.c │ │ ├── getwin.c │ │ ├── getyx.c │ │ ├── has_colors.c │ │ ├── has_ic.c │ │ ├── has_il.c │ │ ├── idcok.c │ │ ├── idlok.c │ │ ├── iexpand.c │ │ ├── immedok.c │ │ ├── infocmp.c │ │ ├── infotocap.c │ │ ├── init_acs.c │ │ ├── init_color.c │ │ ├── init_costs.c │ │ ├── init_pair.c │ │ ├── initscr.c │ │ ├── is_linetou.c │ │ ├── is_wintou.c │ │ ├── keyname.sh │ │ ├── keypad.c │ │ ├── killchar.c │ │ ├── leaveok.c │ │ ├── llib-lcurses │ │ ├── longname.c │ │ ├── makefile │ │ ├── makefile.bsd │ │ ├── makenew.c │ │ ├── maketerm.ed │ │ ├── memSset.c │ │ ├── meta.c │ │ ├── mouse.c │ │ ├── mvcur.c │ │ ├── mvderwin.c │ │ ├── mvprintw.c │ │ ├── mvscanw.c │ │ ├── mvwin.c │ │ ├── mvwprintw.c │ │ ├── mvwscanw.c │ │ ├── napms.c │ │ ├── newkey.c │ │ ├── newpad.c │ │ ├── newscreen.c │ │ ├── newwin.c │ │ ├── nocbreak.c │ │ ├── nodelay.c │ │ ├── noraw.c │ │ ├── notimeout.c │ │ ├── object.h │ │ ├── otermcap.c │ │ ├── otermcap.h │ │ ├── outch.c │ │ ├── overlap.c │ │ ├── pair_cont.c │ │ ├── pechochar.c │ │ ├── pnoutref.c │ │ ├── prefresh.c │ │ ├── print.c │ │ ├── print.h │ │ ├── printw.c │ │ ├── putp.c │ │ ├── putwin.c │ │ ├── quick_echo.c │ │ ├── raw.c │ │ ├── redrawwin.c │ │ ├── reset_sh.c │ │ ├── resetty.c │ │ ├── restart.c │ │ ├── ring.c │ │ ├── ripoffline.c │ │ ├── rmident.sh │ │ ├── savetty.c │ │ ├── scanw.c │ │ ├── scr_all.c │ │ ├── scr_dump.c │ │ ├── scr_ll_dump.c │ │ ├── scr_reset.c │ │ ├── scrollok.c │ │ ├── setcurscreen.c │ │ ├── setcurterm.c │ │ ├── setecho.c │ │ ├── setkeymap.c │ │ ├── setnonl.c │ │ ├── setqiflush.c │ │ ├── setsyx.c │ │ ├── setterm.c │ │ ├── setupterm.c │ │ ├── show.c │ │ ├── slk_atroff.c │ │ ├── slk_atron.c │ │ ├── slk_atrset.c │ │ ├── slk_clear.c │ │ ├── slk_label.c │ │ ├── slk_noutref.c │ │ ├── slk_refresh.c │ │ ├── slk_restore.c │ │ ├── slk_set.c │ │ ├── slk_start.c │ │ ├── slk_touch.c │ │ ├── start_col.c │ │ ├── subwin.c │ │ ├── syncok.c │ │ ├── tcsearch.c │ │ ├── termattrs.c │ │ ├── termcap.ed │ │ ├── termerr.c │ │ ├── termname.c │ │ ├── testterminfo.c │ │ ├── tgetch.c │ │ ├── tgoto.c │ │ ├── tic_captab.c │ │ ├── tic_error.c │ │ ├── tic_hash.c │ │ ├── tic_main.c │ │ ├── tic_parse.c │ │ ├── tic_read.c │ │ ├── tic_scan.c │ │ ├── tifget.ed │ │ ├── tiget.ed │ │ ├── tinputfd.c │ │ ├── touchwin.c │ │ ├── tparm.c │ │ ├── tput.c │ │ ├── tputs.c │ │ ├── trace.c │ │ ├── tstp.c │ │ ├── ttimeout.c │ │ ├── typeahead.c │ │ ├── unctrl.c │ │ ├── unctrl.h │ │ ├── ungetch.c │ │ ├── untouchwin.c │ │ ├── use_env.c │ │ ├── vidputs.c │ │ ├── vidupdate.c │ │ ├── vsprintf.c │ │ ├── vsscanf.c │ │ ├── vwprintw.c │ │ ├── vwscanw.c │ │ ├── waddch.c │ │ ├── waddchnstr.c │ │ ├── waddnstr.c │ │ ├── wattroff.c │ │ ├── wattron.c │ │ ├── wattrset.c │ │ ├── wbkgd.c │ │ ├── wbkgdset.c │ │ ├── wborder.c │ │ ├── wclrtobot.c │ │ ├── wclrtoeol.c │ │ ├── wdelch.c │ │ ├── wechochar.c │ │ ├── wgetch.c │ │ ├── wgetstr.c │ │ ├── whline.c │ │ ├── winch.c │ │ ├── winchnstr.c │ │ ├── winchstr.c │ │ ├── winnstr.c │ │ ├── winsch.c │ │ ├── winsdelln.c │ │ ├── winsnstr.c │ │ ├── winstr.c │ │ ├── wmove.c │ │ ├── wnoutref.c │ │ ├── wprintw.c │ │ ├── wredrawln.c │ │ ├── wrefresh.c │ │ ├── wscanw.c │ │ ├── wscrl.c │ │ ├── wsetscrreg.c │ │ ├── wsyncdown.c │ │ ├── wsyncup.c │ │ ├── wtimeout.c │ │ ├── wtouchln.c │ │ └── wvline.c │ └── xlibcurses.mk ├── zlibeti │ ├── curses │ │ ├── INSTALL │ │ ├── ORDER.1 │ │ ├── ORDER.2 │ │ ├── ORDER.3 │ │ ├── Rlist.svr2curs │ │ ├── UNINSTALL │ │ ├── proto.1 │ │ ├── proto.2 │ │ ├── proto.3 │ │ ├── setup │ │ └── svr2curs.name │ ├── demo │ │ ├── form0.c │ │ ├── form1.c │ │ ├── form2.c │ │ ├── makefile │ │ ├── menu0.c │ │ └── menu1.c │ ├── eti.h │ ├── form │ │ ├── chg_char.c │ │ ├── chg_data.c │ │ ├── chg_field.c │ │ ├── chg_page.c │ │ ├── driver.c │ │ ├── field.c │ │ ├── field_back.c │ │ ├── field_buf.c │ │ ├── field_fore.c │ │ ├── field_init.c │ │ ├── field_just.c │ │ ├── field_opts.c │ │ ├── field_pad.c │ │ ├── field_stat.c │ │ ├── field_term.c │ │ ├── field_user.c │ │ ├── fieldtype.c │ │ ├── form.c │ │ ├── form.h │ │ ├── form_init.c │ │ ├── form_opts.c │ │ ├── form_sub.c │ │ ├── form_term.c │ │ ├── form_user.c │ │ ├── form_win.c │ │ ├── llib-lform.c │ │ ├── makefile │ │ ├── post.c │ │ ├── regcmp.c │ │ ├── regex.c │ │ ├── ty_alnum.c │ │ ├── ty_alpha.c │ │ ├── ty_enum.c │ │ ├── ty_int.c │ │ ├── ty_num.c │ │ ├── ty_regexp.c │ │ ├── utility.c │ │ └── utility.h │ ├── man3 │ │ └── menu.3c │ ├── menu │ │ ├── affect.c │ │ ├── chk.c │ │ ├── connect.c │ │ ├── curitem.c │ │ ├── driver.c │ │ ├── global.c │ │ ├── itemcount.c │ │ ├── itemopts.c │ │ ├── itemusrptr.c │ │ ├── itemvalue.c │ │ ├── link.c │ │ ├── llib-lmenu.c │ │ ├── makefile │ │ ├── menu.h │ │ ├── menuback.c │ │ ├── menucursor.c │ │ ├── menufore.c │ │ ├── menuformat.c │ │ ├── menugrey.c │ │ ├── menuitems.c │ │ ├── menumark.c │ │ ├── menuopts.c │ │ ├── menupad.c │ │ ├── menuserptr.c │ │ ├── menusub.c │ │ ├── menuwin.c │ │ ├── newitem.c │ │ ├── newmenu.c │ │ ├── pattern.c │ │ ├── post.c │ │ ├── private.h │ │ ├── scale.c │ │ ├── show.c │ │ ├── terminit.c │ │ ├── tests │ │ │ ├── input1 │ │ │ ├── makefile │ │ │ └── word.list │ │ ├── topitem.c │ │ └── visible.c │ ├── panel │ │ ├── bottom.c │ │ ├── delete.c │ │ ├── llib-lpanel.c │ │ ├── makefile │ │ ├── misc.c │ │ ├── move.c │ │ ├── new.c │ │ ├── panel.h │ │ ├── private.h │ │ ├── replace.c │ │ ├── top.c │ │ └── update.c │ └── zlibeti.mk └── zlibetitam │ ├── ReadMagic.c │ ├── Virt2Ansi.c │ ├── chartam.h │ ├── compat.c │ ├── cvttam.h │ ├── design.mm │ ├── doborder.c │ ├── envinit.c │ ├── form.c │ ├── form.h │ ├── help.c │ ├── help.h │ ├── help_ds.c │ ├── help_kb.c │ ├── kcodes.h │ ├── keypad.c │ ├── listop.c │ ├── llib-lcvt.c │ ├── llib-lform.c │ ├── llib-lmenu.c │ ├── llib-lmsg.c │ ├── llib-lpbf.c │ ├── llib-ltam.c │ ├── llib-lwind.c │ ├── man3 │ └── tam.3c │ ├── mbegin.c │ ├── mcitems.c │ ├── mctitle.c │ ├── mdisplay.c │ ├── mend.c │ ├── menu.c │ ├── menu.h │ ├── message.c │ ├── message.h │ ├── minput.c │ ├── mmatch.c │ ├── mscroll.c │ ├── mshape.c │ ├── mtitle.c │ ├── mtrunc.c │ ├── path.h │ ├── pbf.c │ ├── pbf.h │ ├── post.c │ ├── print.h │ ├── subcurses.h │ ├── sys │ ├── font.h │ ├── iohw.h │ ├── mouse.h │ ├── signal.h │ └── window.h │ ├── tam.h │ ├── tamdefs.c │ ├── tamwin.h │ ├── temp.h │ ├── track.c │ ├── track.h │ ├── undowindow.c │ ├── validwin.c │ ├── wcmd.c │ ├── wcreate.c │ ├── wdelete.c │ ├── werase.c │ ├── wexit.c │ ├── wgetc.c │ ├── wgetpos.c │ ├── wgetsel.c │ ├── wgetstat.c │ ├── wgoto.c │ ├── wind.c │ ├── wind.h │ ├── winit.c │ ├── winsize.c │ ├── wlabel.c │ ├── wnodelay.c │ ├── wpostwait.c │ ├── wprexec.c │ ├── wprintf.c │ ├── wprompt.c │ ├── wput.c │ ├── wrefresh.c │ ├── wselect.c │ ├── wsetstat.c │ ├── wslk.c │ ├── wuser.c │ └── zlibetitam.mk ├── pkg ├── face │ ├── depend │ ├── pkginfo │ ├── postremove │ ├── preinstall │ └── prototype ├── scde │ ├── depend │ ├── i.Z │ ├── pkginfo │ ├── postinstall │ ├── postremove │ ├── preinstall │ ├── profile │ ├── prototype │ ├── request │ └── space └── terminf │ ├── pkginfo │ ├── postinstall │ ├── postremove │ ├── prototype │ └── request ├── proto ├── cpout.c └── i386 │ ├── PACKAGES │ └── peruser │ │ ├── peruser.mk │ │ ├── pkginfo │ │ ├── postinstall │ │ ├── prototype │ │ └── update.c │ ├── Plists │ ├── Plist │ ├── Plist.USO │ └── Plist.dev │ ├── README │ ├── at386 │ ├── cmd │ │ ├── INSTALL │ │ ├── INSTALL2 │ │ ├── INSTALL3 │ │ ├── INSTALL4 │ │ ├── ask_drive.sh │ │ ├── boot_make.sh │ │ ├── cmd.mk │ │ ├── make_flops.sh │ │ ├── mdevice.mini │ │ ├── mini_kernel.sh │ │ ├── mult.pkg │ │ ├── readfloppy.sh │ │ └── stune.mini │ ├── disk.ele │ ├── disk.elesm │ ├── inittab │ ├── inittab2 │ ├── ioctl.syscon │ ├── profile │ ├── proto.flop │ ├── proto.mk │ ├── scsi.mk │ ├── scsi │ │ ├── INSTALL │ │ ├── INSTALL2 │ │ ├── INSTALL4 │ │ ├── INSTALLA │ │ ├── boot_make │ │ ├── proto.S │ │ └── proto.scsi │ ├── tape.mk │ ├── tape │ │ ├── INSTALL │ │ ├── INSTALL2 │ │ ├── INSTALL4 │ │ ├── INSTALLA │ │ ├── bld.sds │ │ ├── bld.set1 │ │ ├── proto.T │ │ ├── proto.tape │ │ └── tape.idins │ └── work.1 │ ├── machid.c │ └── prep ├── ucb.dirs ├── ucbcmd ├── arch │ ├── arch.mk │ └── arch.sh ├── basename │ ├── basename.c │ └── basename.mk ├── biff │ ├── biff.c │ └── biff.mk ├── cc │ ├── cc.mk │ └── cc.sh ├── checkeq │ ├── checkeq.c │ └── checkeq.mk ├── checknr │ ├── checknr.c │ └── checknr.mk ├── chown │ ├── chown.c │ └── chown.mk ├── deroff │ ├── deroff.c │ └── deroff.mk ├── df │ ├── df.c │ └── df.mk ├── diffmk │ ├── diffmk.mk │ └── diffmk.sh ├── du │ ├── du.c │ └── du.mk ├── echo │ ├── echo.c │ └── echo.mk ├── eqn │ ├── diacrit.c │ ├── e.h │ ├── e.y │ ├── eqn.d │ │ └── eqn.mk │ ├── eqn.mk │ ├── eqnbox.c │ ├── eqnchar.d │ │ ├── eqnchar │ │ └── eqnchar.mk │ ├── font.c │ ├── fromto.c │ ├── funny.c │ ├── glob.c │ ├── integral.c │ ├── io.c │ ├── lex.c │ ├── lookup.c │ ├── mark.c │ ├── matrix.c │ ├── move.c │ ├── neqn.d │ │ └── neqn.mk │ ├── over.c │ ├── paren.c │ ├── pile.c │ ├── shift.c │ ├── size.c │ ├── sqrt.c │ └── text.c ├── expand │ ├── expand.c │ ├── expand.mk │ └── unexpand.c ├── fastboot │ ├── fastboot.mk │ └── fastboot.sh ├── fasthalt │ ├── fasthalt.mk │ └── fasthalt.sh ├── fsirand │ ├── fsirand.c │ └── fsirand.mk ├── groups │ ├── groups.c │ └── groups.mk ├── grpck │ ├── grpck.c │ └── grpck.mk ├── halt │ ├── halt.c │ └── halt.mk ├── hostid │ ├── hostid.c │ └── hostid.mk ├── hostname │ ├── hostname.mk │ └── hostname.sh ├── install │ ├── install.c │ └── install.mk ├── lastcomm │ ├── lastcomm.c │ └── lastcomm.mk ├── ld │ ├── ld.mk │ └── ld.sh ├── lint │ ├── lint.mk │ └── lint.sh ├── ln │ ├── ln.c │ └── ln.mk ├── logger │ ├── logger.c │ └── logger.mk ├── look │ ├── look.c │ ├── look.mk │ └── words ├── ls │ ├── ls.c │ └── ls.mk ├── mach │ ├── mach.mk │ └── mach.sh ├── man │ ├── catman.c │ ├── getNAME.c │ ├── makewhatis.sh │ ├── man.c │ └── man.mk ├── mt │ ├── mt.c │ ├── mt.mk │ ├── sun │ │ ├── dkio.h │ │ └── dklabel.h │ └── sundev │ │ ├── arreg.h │ │ ├── screg.h │ │ ├── scsi.h │ │ ├── sireg.h │ │ ├── tmreg.h │ │ └── xtreg.h ├── pagesize │ ├── pagesize.c │ └── pagesize.mk ├── plot │ ├── atoplot.c │ ├── chrtab.c │ ├── crtdriver.c │ ├── crtplot.c │ ├── debug.c │ ├── driver.c │ ├── libplot │ │ ├── aed │ │ │ ├── aed.h │ │ │ ├── aed.mk │ │ │ ├── arc.c │ │ │ ├── box.c │ │ │ ├── circle.c │ │ │ ├── close.c │ │ │ ├── cont.c │ │ │ ├── dot.c │ │ │ ├── erase.c │ │ │ ├── label.c │ │ │ ├── line.c │ │ │ ├── linemod.c │ │ │ ├── move.c │ │ │ ├── open.c │ │ │ ├── point.c │ │ │ ├── space.c │ │ │ └── subr.c │ │ ├── bitgraph │ │ │ ├── arc.c │ │ │ ├── bg.h │ │ │ ├── bitgraph.mk │ │ │ ├── box.c │ │ │ ├── circle.c │ │ │ ├── close.c │ │ │ ├── cont.c │ │ │ ├── dot.c │ │ │ ├── erase.c │ │ │ ├── label.c │ │ │ ├── line.c │ │ │ ├── linemod.c │ │ │ ├── move.c │ │ │ ├── open.c │ │ │ ├── point.c │ │ │ └── space.c │ │ ├── dumb │ │ │ ├── arc.c │ │ │ ├── box.c │ │ │ ├── circle.c │ │ │ ├── close.c │ │ │ ├── cont.c │ │ │ ├── dot.c │ │ │ ├── dumb.h │ │ │ ├── dumb.mk │ │ │ ├── erase.c │ │ │ ├── label.c │ │ │ ├── line.c │ │ │ ├── linemod.c │ │ │ ├── move.c │ │ │ ├── open.c │ │ │ ├── point.c │ │ │ ├── space.c │ │ │ └── subr.c │ │ ├── gigi │ │ │ ├── arc.c │ │ │ ├── box.c │ │ │ ├── circle.c │ │ │ ├── close.c │ │ │ ├── cont.c │ │ │ ├── dot.c │ │ │ ├── erase.c │ │ │ ├── gigi.h │ │ │ ├── gigi.mk │ │ │ ├── label.c │ │ │ ├── line.c │ │ │ ├── linemod.c │ │ │ ├── move.c │ │ │ ├── open.c │ │ │ ├── point.c │ │ │ └── space.c │ │ ├── hp2648 │ │ │ ├── arc.c │ │ │ ├── box.c │ │ │ ├── circle.c │ │ │ ├── close.c │ │ │ ├── cont.c │ │ │ ├── dot.c │ │ │ ├── erase.c │ │ │ ├── hp2648.h │ │ │ ├── hp2648.mk │ │ │ ├── label.c │ │ │ ├── line.c │ │ │ ├── linemod.c │ │ │ ├── move.c │ │ │ ├── open.c │ │ │ ├── point.c │ │ │ ├── space.c │ │ │ └── subr.c │ │ ├── hp7221 │ │ │ ├── arc.c │ │ │ ├── box.c │ │ │ ├── circle.c │ │ │ ├── close.c │ │ │ ├── cont.c │ │ │ ├── dot.c │ │ │ ├── erase.c │ │ │ ├── hp7221.h │ │ │ ├── hp7221.mk │ │ │ ├── label.c │ │ │ ├── line.c │ │ │ ├── linemod.c │ │ │ ├── move.c │ │ │ ├── open.c │ │ │ ├── point.c │ │ │ ├── space.c │ │ │ └── subr.c │ │ ├── imagen │ │ │ ├── arc.c │ │ │ ├── box.c │ │ │ ├── charset.c │ │ │ ├── circle.c │ │ │ ├── close.c │ │ │ ├── cont.c │ │ │ ├── dot.c │ │ │ ├── erase.c │ │ │ ├── imPcodes.h │ │ │ ├── imagen.mk │ │ │ ├── imp.h │ │ │ ├── label.c │ │ │ ├── line.c │ │ │ ├── linemod.c │ │ │ ├── move.c │ │ │ ├── open.c │ │ │ ├── point.c │ │ │ ├── scale.c │ │ │ └── space.c │ │ ├── libplot.mk │ │ ├── plot │ │ │ ├── arc.c │ │ │ ├── box.c │ │ │ ├── circle.c │ │ │ ├── close.c │ │ │ ├── cont.c │ │ │ ├── dot.c │ │ │ ├── erase.c │ │ │ ├── label.c │ │ │ ├── line.c │ │ │ ├── linmod.c │ │ │ ├── move.c │ │ │ ├── open.c │ │ │ ├── plot.mk │ │ │ ├── point.c │ │ │ ├── putsi.c │ │ │ └── space.c │ │ ├── t300 │ │ │ ├── arc.c │ │ │ ├── box.c │ │ │ ├── circle.c │ │ │ ├── close.c │ │ │ ├── con.h │ │ │ ├── dot.c │ │ │ ├── erase.c │ │ │ ├── label.c │ │ │ ├── line.c │ │ │ ├── linmod.c │ │ │ ├── move.c │ │ │ ├── open.c │ │ │ ├── point.c │ │ │ ├── space.c │ │ │ ├── subr.c │ │ │ └── t300.mk │ │ ├── t300s │ │ │ ├── arc.c │ │ │ ├── box.c │ │ │ ├── circle.c │ │ │ ├── close.c │ │ │ ├── con.h │ │ │ ├── dot.c │ │ │ ├── erase.c │ │ │ ├── label.c │ │ │ ├── line.c │ │ │ ├── linmod.c │ │ │ ├── move.c │ │ │ ├── open.c │ │ │ ├── point.c │ │ │ ├── space.c │ │ │ ├── subr.c │ │ │ └── t300s.mk │ │ ├── t4013 │ │ │ ├── arc.c │ │ │ ├── box.c │ │ │ ├── circle.c │ │ │ ├── close.c │ │ │ ├── dot.c │ │ │ ├── erase.c │ │ │ ├── label.c │ │ │ ├── line.c │ │ │ ├── linemod.c │ │ │ ├── move.c │ │ │ ├── open.c │ │ │ ├── point.c │ │ │ ├── scale.c │ │ │ ├── space.c │ │ │ ├── subr.c │ │ │ └── t4013.mk │ │ ├── t4014 │ │ │ ├── arc.c │ │ │ ├── box.c │ │ │ ├── circle.c │ │ │ ├── close.c │ │ │ ├── dot.c │ │ │ ├── erase.c │ │ │ ├── label.c │ │ │ ├── line.c │ │ │ ├── linemod.c │ │ │ ├── move.c │ │ │ ├── open.c │ │ │ ├── point.c │ │ │ ├── scale.c │ │ │ ├── space.c │ │ │ ├── subr.c │ │ │ └── t4014.mk │ │ ├── t450 │ │ │ ├── arc.c │ │ │ ├── box.c │ │ │ ├── circle.c │ │ │ ├── close.c │ │ │ ├── con.h │ │ │ ├── dot.c │ │ │ ├── erase.c │ │ │ ├── label.c │ │ │ ├── line.c │ │ │ ├── linmod.c │ │ │ ├── move.c │ │ │ ├── open.c │ │ │ ├── point.c │ │ │ ├── space.c │ │ │ ├── subr.c │ │ │ └── t450.mk │ │ ├── tf77 │ │ │ ├── arc.c │ │ │ ├── box.c │ │ │ ├── circle.c │ │ │ ├── clospl.c │ │ │ ├── cont.c │ │ │ ├── dot.c │ │ │ ├── erase.c │ │ │ ├── label.c │ │ │ ├── line.c │ │ │ ├── linemd.c │ │ │ ├── move.c │ │ │ ├── open.c │ │ │ ├── point.c │ │ │ ├── space.c │ │ │ └── tf77.mk │ │ └── vt0 │ │ │ ├── arc.c │ │ │ ├── box.c │ │ │ ├── circle.c │ │ │ ├── close.c │ │ │ ├── dot.c │ │ │ ├── erase.c │ │ │ ├── frame.c │ │ │ ├── label.c │ │ │ ├── line.c │ │ │ ├── linmod.c │ │ │ ├── move.c │ │ │ ├── open.c │ │ │ ├── point.c │ │ │ ├── space.c │ │ │ ├── subr.c │ │ │ └── vt0.mk │ ├── plot.mk │ ├── plot.sh │ ├── plottoa.c │ ├── vfont.h │ └── vplot.c ├── printenv │ ├── printenv.c │ └── printenv.mk ├── prt │ ├── hdr │ │ ├── defines.h │ │ └── had.h │ ├── lib │ │ ├── cat.c │ │ ├── clean.c │ │ ├── date_ab.c │ │ ├── dname.c │ │ ├── dofile.c │ │ ├── fatal.c │ │ ├── fdfopen.c │ │ ├── imatch.c │ │ ├── lib.mk │ │ ├── repl.c │ │ ├── setsig.c │ │ ├── sname.c │ │ ├── trnslat.c │ │ ├── userexit.c │ │ ├── xmsg.c │ │ └── xopen.c │ ├── prt.c │ └── prt.mk ├── ps │ ├── ps.c │ └── ps.mk ├── pwck │ ├── pwck.c │ └── pwck.mk ├── reboot │ ├── reboot.c │ └── reboot.mk ├── refer │ ├── addbib.c │ ├── deliv2.c │ ├── glue1.c │ ├── glue2.c │ ├── glue3.c │ ├── glue4.c │ ├── glue5.c │ ├── hunt1.c │ ├── hunt2.c │ ├── hunt3.c │ ├── hunt5.c │ ├── hunt6.c │ ├── hunt7.c │ ├── hunt8.c │ ├── hunt9.c │ ├── indxbib.sh │ ├── inv1.c │ ├── inv2.c │ ├── inv3.c │ ├── inv5.c │ ├── inv6.c │ ├── lookbib.c │ ├── mkey1.c │ ├── mkey2.c │ ├── mkey3.c │ ├── papers │ │ ├── Rbstjissue │ │ ├── Rv7man │ │ ├── papers.mk │ │ └── runinv │ ├── refer..c │ ├── refer.mk │ ├── refer0.c │ ├── refer1.c │ ├── refer2.c │ ├── refer3.c │ ├── refer4.c │ ├── refer5.c │ ├── refer6.c │ ├── refer7.c │ ├── refer8.c │ ├── roffbib.sh │ ├── shell.c │ ├── sortbib.c │ ├── tick.c │ ├── tmac.bib │ └── types.c ├── renice │ ├── renice.c │ └── renice.mk ├── sccscmd │ ├── sccs.c │ ├── sccscmd.mk │ └── sysexits.h ├── sendmail │ ├── aux │ │ ├── Makefile │ │ ├── mailstats.c │ │ ├── mconnect.c │ │ └── vacation.c │ ├── cf │ │ ├── Makefile │ │ ├── base.m4 │ │ ├── compat.m4 │ │ ├── ddnm.m4 │ │ ├── etherm.m4 │ │ ├── localm.m4 │ │ ├── mailsurr │ │ ├── main.mc │ │ ├── subsidiary.mc │ │ ├── sunbase.m4 │ │ ├── uucpm.m4 │ │ └── version.m4 │ ├── include │ │ ├── netconfig.h │ │ ├── sysexits.h │ │ ├── useful.h │ │ ├── useful.h.sun │ │ └── userdbm.h │ ├── lib │ │ ├── Makefile │ │ ├── aliases │ │ └── sendmail.hf │ ├── sendmail.mk │ ├── src │ │ ├── Makefile │ │ ├── alias.c │ │ ├── arpadate.c │ │ ├── bcmp.c │ │ ├── bcopy.c │ │ ├── bzero.c │ │ ├── clock.c │ │ ├── collect.c │ │ ├── conf.c │ │ ├── conf.h │ │ ├── convtime.c │ │ ├── daemon.c │ │ ├── deliver.c │ │ ├── domain.c │ │ ├── envelope.c │ │ ├── err.c │ │ ├── getdname.c │ │ ├── getdtblsize.c │ │ ├── headers.c │ │ ├── index.c │ │ ├── macro.c │ │ ├── mailstats.h │ │ ├── mailsurr │ │ ├── main.c │ │ ├── noyp.c │ │ ├── parseaddr.c │ │ ├── queue.c │ │ ├── readcf.c │ │ ├── recipient.c │ │ ├── remote.c │ │ ├── rpcdname.c │ │ ├── savemail.c │ │ ├── sendmail.h │ │ ├── signal.c │ │ ├── srvrsmtp.c │ │ ├── stab.c │ │ ├── stats.c │ │ ├── stricmp.c │ │ ├── sysexits.c │ │ ├── trace.c │ │ ├── usersmtp.c │ │ ├── util.c │ │ ├── version.c │ │ └── ypdomain.c │ └── ucblib │ │ ├── Makefile │ │ ├── mail.c │ │ └── rmail.c ├── shutdown │ ├── mountxdr.c │ ├── shutdown.c │ └── shutdown.mk ├── soelim │ ├── soelim.c │ └── soelim.mk ├── stty │ ├── stty.c │ ├── stty.h │ ├── stty.mk │ ├── sttyparse.c │ └── sttytable.c ├── sum │ ├── sum.c │ └── sum.mk ├── tbl │ ├── t..c │ ├── t0.c │ ├── t1.c │ ├── t2.c │ ├── t3.c │ ├── t4.c │ ├── t5.c │ ├── t6.c │ ├── t7.c │ ├── t8.c │ ├── t9.c │ ├── tb.c │ ├── tbl.mk │ ├── tc.c │ ├── te.c │ ├── tf.c │ ├── tg.c │ ├── ti.c │ ├── tm.c │ ├── ts.c │ ├── tt.c │ ├── tu.c │ └── tv.c ├── tcopy │ ├── tcopy.c │ └── tcopy.mk ├── test │ ├── test.c │ └── test.mk ├── tr │ ├── tr.c │ └── tr.mk ├── troff │ ├── ext.h │ ├── hytab.c │ ├── n1.c │ ├── n2.c │ ├── n3.c │ ├── n4.c │ ├── n5.c │ ├── n7.c │ ├── n8.c │ ├── n9.c │ ├── ni.c │ ├── nii.c │ ├── nroff.d │ │ ├── n10.c │ │ ├── n6.c │ │ ├── nroff.mk │ │ ├── terms.d │ │ │ ├── README │ │ │ ├── a.2631 │ │ │ ├── a.2631-c │ │ │ ├── a.2631-e │ │ │ ├── a.300 │ │ │ ├── a.300-12 │ │ │ ├── a.300s │ │ │ ├── a.300s-12 │ │ │ ├── a.382 │ │ │ ├── a.4000a │ │ │ ├── a.450 │ │ │ ├── a.450-12 │ │ │ ├── a.832 │ │ │ ├── a.lp │ │ │ ├── ab.37 │ │ │ ├── ab.8510 │ │ │ ├── ab.X │ │ │ ├── ab.tn300 │ │ │ ├── b.300 │ │ │ ├── b.lp │ │ │ ├── convert.sh │ │ │ ├── template │ │ │ └── terms.mk │ │ └── tw.h │ ├── suftab.c │ ├── tdef.h │ ├── troff.d │ │ ├── README │ │ ├── dev.h │ │ ├── devaps │ │ │ ├── B │ │ │ ├── BI │ │ │ ├── C │ │ │ ├── CE │ │ │ ├── CI │ │ │ ├── CT │ │ │ ├── CW │ │ │ ├── CX │ │ │ ├── DESC │ │ │ ├── G │ │ │ ├── GB │ │ │ ├── GI │ │ │ ├── GR │ │ │ ├── GS │ │ │ ├── H │ │ │ ├── HB │ │ │ ├── HI │ │ │ ├── HK │ │ │ ├── HL │ │ │ ├── HX │ │ │ ├── I │ │ │ ├── LINKFILE │ │ │ ├── MB │ │ │ ├── MI │ │ │ ├── MR │ │ │ ├── MX │ │ │ ├── PA │ │ │ ├── PB │ │ │ ├── PI │ │ │ ├── PO │ │ │ ├── PX │ │ │ ├── R │ │ │ ├── README │ │ │ ├── S │ │ │ ├── S1 │ │ │ ├── SC │ │ │ ├── SM │ │ │ ├── TB │ │ │ ├── TX │ │ │ ├── aps.h │ │ │ ├── build.c │ │ │ ├── charlib │ │ │ │ ├── LH.36 │ │ │ │ ├── LV.36 │ │ │ │ └── README │ │ │ ├── daps.c │ │ │ ├── daps.g │ │ │ ├── daps.h │ │ │ ├── devaps.mk │ │ │ ├── makedev.c │ │ │ └── version │ │ ├── draw.c │ │ ├── makedev.c │ │ ├── maketables │ │ ├── t10.c │ │ ├── t6.c │ │ ├── ta.c │ │ ├── tmac.d │ │ │ ├── BIG │ │ │ ├── acm.me │ │ │ ├── an │ │ │ ├── bib │ │ │ ├── bl │ │ │ ├── boston │ │ │ ├── boston.toc │ │ │ ├── chars.me │ │ │ ├── deltext.me │ │ │ ├── e │ │ │ ├── eqn.me │ │ │ ├── exp │ │ │ ├── exp.acc │ │ │ ├── exp.eqn │ │ │ ├── exp.ref │ │ │ ├── exp.tbl │ │ │ ├── exp.toc │ │ │ ├── float.me │ │ │ ├── footnote.me │ │ │ ├── index.me │ │ │ ├── local.me │ │ │ ├── m │ │ │ ├── man.macs │ │ │ ├── mmn │ │ │ ├── mmt │ │ │ ├── ms.acc │ │ │ ├── ms.cov │ │ │ ├── ms.eqn │ │ │ ├── ms.ref │ │ │ ├── ms.tbl │ │ │ ├── ms.ths │ │ │ ├── ms.toc │ │ │ ├── null.me │ │ │ ├── refer.me │ │ │ ├── revisions │ │ │ ├── s │ │ │ ├── sh.me │ │ │ ├── sun │ │ │ ├── sunman │ │ │ ├── tbl.me │ │ │ ├── thesis.me │ │ │ ├── tmac.mk │ │ │ ├── tx.map │ │ │ ├── uff │ │ │ ├── v │ │ │ └── xps │ │ ├── troff.mk │ │ └── troff.sh │ └── troff.mk ├── tset │ ├── tset.c │ ├── tset.delays.h │ └── tset.mk ├── ul │ ├── ul.c │ └── ul.mk ├── unifdef │ ├── unifdef.c │ └── unifdef.mk ├── users │ ├── users.c │ └── users.mk ├── w │ ├── w.c │ └── w.mk ├── which │ ├── which.csh │ └── which.mk ├── whoami │ ├── whoami.c │ └── whoami.mk └── xstr │ ├── xstr.c │ └── xstr.mk ├── ucbhead ├── a.out.h ├── assert.h ├── curses.h ├── dbm.h ├── fp.h ├── math.h ├── mp.h ├── ndbm.h ├── regexp.h ├── resolv.h ├── setjmp.h ├── sgtty.h ├── signal.h ├── stdio.h ├── strings.h ├── struct.h ├── sunfp.h ├── sys │ ├── dir.h │ ├── fcntl.h │ ├── file.h │ ├── ieeefp.h │ ├── ioctl.h │ ├── mtio.h │ ├── param.h │ ├── reboot.h │ ├── resource.h │ ├── signal.h │ ├── sysmacros.h │ ├── tty.h │ ├── ttychars.h │ ├── types.h │ ├── vfs.h │ └── wait.h ├── syscall.h ├── sysexits.h ├── ufs │ └── quota.h ├── unistd.h └── vfont.h ├── ucblib ├── libc │ ├── i386 │ │ ├── gen │ │ │ ├── alloca.s │ │ │ └── makefile │ │ ├── makefile │ │ └── sys │ │ │ ├── _times.s │ │ │ ├── makefile │ │ │ ├── setjmp.s │ │ │ └── syscall.s │ ├── libc.mk │ └── port │ │ ├── gen │ │ ├── _nlist.c │ │ ├── _psignal.c │ │ ├── _swapFLAGS.c │ │ ├── base_conv.h │ │ ├── bcmp.c │ │ ├── bcopy.c │ │ ├── bzero.c │ │ ├── decimal_bin.c │ │ ├── double_decim.c │ │ ├── econvert.c │ │ ├── float_decim.c │ │ ├── fp_class.c │ │ ├── ftime.c │ │ ├── gconvert.c │ │ ├── getusershell.c │ │ ├── getwd.c │ │ ├── ieee_func.c │ │ ├── ieee_globals.c │ │ ├── ieee_handler.c │ │ ├── index.c │ │ ├── libm.h │ │ ├── makefile │ │ ├── mkstemp.c │ │ ├── mon.c │ │ ├── mon.h │ │ ├── ndbm.c │ │ ├── nice.c │ │ ├── nlist.c │ │ ├── psignal.c │ │ ├── rand.c │ │ ├── random.c │ │ ├── readdir.c │ │ ├── regex.c │ │ ├── rindex.c │ │ ├── scandir.c │ │ ├── seconvert.c │ │ ├── setbuffer.c │ │ ├── setpriority.c │ │ ├── shlib.h │ │ ├── sigfpe.c │ │ ├── siglist.c │ │ ├── sleep.c │ │ ├── stdiom.h │ │ ├── stricmp.c │ │ ├── synonyms.h │ │ ├── times.c │ │ ├── timezone.c │ │ ├── ualarm.c │ │ └── usleep.c │ │ ├── makefile │ │ ├── stdio │ │ ├── _locale.h │ │ ├── doprnt.c │ │ ├── doprnt.h │ │ ├── fopen.c │ │ ├── fprintf.c │ │ ├── makefile │ │ ├── print.h │ │ ├── printf.c │ │ ├── sprintf.c │ │ ├── stdiom.h │ │ ├── vfprintf.c │ │ ├── vprintf.c │ │ └── vsprintf.c │ │ └── sys │ │ ├── getdtblsize.c │ │ ├── gethostid.c │ │ ├── gethostname.c │ │ ├── getpagesize.c │ │ ├── getrusage.c │ │ ├── gettimeofday.c │ │ ├── killpg.c │ │ ├── makefile │ │ ├── mctl.c │ │ ├── reboot.c │ │ ├── setreid.c │ │ ├── signal.c │ │ ├── utimes.c │ │ └── wait3.c ├── libcurses │ ├── addch.c │ ├── addstr.c │ ├── box.c │ ├── clear.c │ ├── clrtobot.c │ ├── clrtoeol.c │ ├── cr_put.c │ ├── cr_tty.c │ ├── curses.c │ ├── curses.ext │ ├── curses.h │ ├── delch.c │ ├── deleteln.c │ ├── delwin.c │ ├── endwin.c │ ├── erase.c │ ├── fullname.c │ ├── getch.c │ ├── getstr.c │ ├── id_subwins.c │ ├── idlok.c │ ├── initscr.c │ ├── insch.c │ ├── insertln.c │ ├── libcurses.mk │ ├── longname.c │ ├── move.c │ ├── mvprintw.c │ ├── mvscanw.c │ ├── mvwin.c │ ├── newwin.c │ ├── overlay.c │ ├── overwrite.c │ ├── printw.c │ ├── putchar.c │ ├── refresh.c │ ├── scanw.c │ ├── scroll.c │ ├── standout.c │ ├── toucholap.c │ ├── touchwin.c │ ├── tstp.c │ └── unctrl.c ├── libdbm │ ├── dbm.c │ └── libdbm.mk ├── libmp │ ├── gcd.c │ ├── libmp.mk │ ├── madd.c │ ├── mdiv.c │ ├── mout.c │ ├── msqrt.c │ ├── mult.c │ ├── pow.c │ └── util.c ├── librpcsoc │ ├── clnt_tcp.c │ ├── clnt_udp.c │ ├── librpcsoc.mk │ ├── rtime.c │ ├── svc_tcp.c │ └── svc_udp.c └── libtermcap │ ├── libtermcap.mk │ ├── termcap.c │ ├── tgoto.c │ └── tputs.c ├── uts └── i386 │ ├── boot │ ├── at386 │ │ ├── GDT.s │ │ ├── Gensymvals │ │ ├── Makefile │ │ ├── boot.c │ │ ├── bstart.s │ │ ├── default.c │ │ ├── default │ │ │ ├── default.at386 │ │ │ ├── default.att │ │ │ ├── default.att512 │ │ │ ├── default.cpq │ │ │ └── default.mk │ │ ├── disk.c │ │ ├── gets.c │ │ ├── initprog │ │ │ ├── at386.s │ │ │ ├── att.s │ │ │ ├── binimapfile │ │ │ ├── compaq.s │ │ │ ├── initprog.mk │ │ │ ├── inout.s │ │ │ ├── misc.c │ │ │ └── video.c │ │ ├── load.c │ │ ├── mapfile │ │ ├── memcpy.s │ │ ├── memsize.c │ │ ├── physaddr.c │ │ ├── pit.s │ │ ├── printf.c │ │ ├── prot.s │ │ ├── start.s │ │ ├── string.c │ │ ├── tool │ │ │ ├── doitfd │ │ │ ├── doithd │ │ │ ├── doitinit │ │ │ ├── rmhdr.c │ │ │ ├── setfilter.c │ │ │ └── tools.mk │ │ ├── touchpage.s │ │ └── util.s │ ├── boot.mk │ ├── bootat.mk │ ├── bootlib │ │ ├── bfsfilesys.c │ │ ├── blfile.c │ │ ├── bootlib.mk │ │ ├── elf.c │ │ ├── filesys.c │ │ └── s5filesys.c │ ├── sys │ │ ├── blb.h │ │ ├── boot.h │ │ ├── dib.h │ │ ├── error.h │ │ ├── farcall.h │ │ ├── filsys.h │ │ ├── hdrs.h │ │ ├── inode.h │ │ ├── iobuf.h │ │ ├── libfm.h │ │ ├── omf2386.h │ │ ├── prot.h │ │ └── s2main.h │ └── tool │ │ └── boot.sed │ ├── des │ ├── des.h │ ├── des.mk │ ├── des_crypt.h │ ├── desdata.h │ ├── intldes_soft.c │ ├── intldescrypt.c │ └── softdes.h │ ├── disp │ ├── disp.c │ ├── disp.mk │ ├── priocntl.c │ ├── rt.c │ ├── sysclass.c │ └── ts.c │ ├── exec │ ├── coff │ │ ├── coff.c │ │ └── coff.mk │ ├── dosx │ │ ├── dosx.c │ │ └── dosx.mk │ ├── elf │ │ ├── elf.c │ │ └── elf.mk │ ├── exec.mk │ ├── i286x │ │ ├── i286x.c │ │ └── i286x.mk │ ├── intp │ │ ├── intp.c │ │ └── intp.mk │ └── xout │ │ ├── xout.c │ │ └── xout.mk │ ├── fp │ ├── Gensymvals │ ├── arith.s │ ├── dcode.s │ ├── divmul.s │ ├── e80387.h │ ├── fp.mk │ ├── lipsq.s │ ├── mapfile │ ├── reg.s │ ├── remsc.s │ ├── round.s │ ├── sizes.h │ ├── status.s │ ├── store.s │ ├── subadd.s │ ├── tool │ │ ├── setfilter.c │ │ └── tools.mk │ ├── trans.s │ └── vuifile │ ├── fs │ ├── bfs │ │ ├── bfs.mk │ │ ├── bfs_compact.c │ │ ├── bfs_subr.c │ │ ├── bfs_vfsops.c │ │ └── bfs_vnops.c │ ├── dnlc.c │ ├── fdfs │ │ ├── fdfs.mk │ │ └── fdops.c │ ├── fifofs │ │ ├── fifofs.mk │ │ ├── fifosubr.c │ │ └── fifovnops.c │ ├── fs.mk │ ├── fs_subr.c │ ├── fs_subr.h │ ├── fsflush.c │ ├── lookup.c │ ├── namefs │ │ ├── namefs.mk │ │ ├── namevfs.c │ │ └── namevno.c │ ├── nfs │ │ ├── nfs.mk │ │ ├── nfs_aux.c │ │ ├── nfs_client.c │ │ ├── nfs_cnvt.c │ │ ├── nfs_common.c │ │ ├── nfs_export.c │ │ ├── nfs_server.c │ │ ├── nfs_subr.c │ │ ├── nfs_vfsops.c │ │ ├── nfs_vnops.c │ │ ├── nfs_xdr.c │ │ └── nfssys.c │ ├── pathname.c │ ├── proc │ │ ├── prdata.h │ │ ├── prioctl.c │ │ ├── prmachdep.c │ │ ├── proc.mk │ │ ├── prsubr.c │ │ ├── prusrio.c │ │ ├── prvfsops.c │ │ └── prvnops.c │ ├── rfs │ │ ├── du.c │ │ ├── du.h │ │ ├── rf_admin.c │ │ ├── rf_admin.h │ │ ├── rf_auth.c │ │ ├── rf_auth.h │ │ ├── rf_cache.c │ │ ├── rf_cache.h │ │ ├── rf_canon.c │ │ ├── rf_canon.h │ │ ├── rf_cirmgr.c │ │ ├── rf_comm.c │ │ ├── rf_getsz.c │ │ ├── rf_rsrc.c │ │ ├── rf_serve.c │ │ ├── rf_serve.h │ │ ├── rf_sys.c │ │ ├── rf_vfsops.c │ │ ├── rf_vnops.c │ │ ├── rfcl_subr.c │ │ ├── rfcl_subr.h │ │ ├── rfs.mk │ │ ├── rfsr_ops.c │ │ └── rfsr_subr.c │ ├── s5 │ │ ├── s5.mk │ │ ├── s5alloc.c │ │ ├── s5blklist.c │ │ ├── s5bmap.c │ │ ├── s5dir.c │ │ ├── s5getsz.c │ │ ├── s5inode.c │ │ ├── s5rdwri.c │ │ ├── s5vfsops.c │ │ └── s5vnops.c │ ├── specfs │ │ ├── specfs.mk │ │ ├── specgetsz.c │ │ ├── specsubr.c │ │ ├── specvfsops.c │ │ └── specvnops.c │ ├── strcalls.c │ ├── ufs │ │ ├── quota.c │ │ ├── quota_ufs.c │ │ ├── quotacalls.c │ │ ├── ufs.mk │ │ ├── ufs_alloc.c │ │ ├── ufs_blklist.c │ │ ├── ufs_bmap.c │ │ ├── ufs_dir.c │ │ ├── ufs_dsort.c │ │ ├── ufs_inode.c │ │ ├── ufs_subr.c │ │ ├── ufs_tables.c │ │ ├── ufs_vfsops.c │ │ └── ufs_vnops.c │ ├── vfs.c │ ├── vncalls.c │ ├── vnode.c │ └── xnamfs │ │ ├── xnamfs.mk │ │ ├── xnamsubr.c │ │ ├── xnamvfsops.c │ │ ├── xnamvnops.c │ │ ├── xsd.c │ │ └── xsem.c │ ├── io │ ├── ansi.c │ ├── char.c │ ├── clist.c │ ├── clone.c │ ├── connld.c │ ├── cpyrt.c │ ├── ctl87.c │ ├── dmacheck.c │ ├── emap.c │ ├── gentty.c │ ├── hrtimers.c │ ├── i8237A.c │ ├── io.mk │ ├── iosubr.c │ ├── kmacct.c │ ├── ladd.s │ ├── ldivide.c │ ├── ldterm.c │ ├── lmul.c │ ├── log.c │ ├── lshiftl.s │ ├── lsign.s │ ├── lsub.s │ ├── mem.c │ ├── nsxt.c │ ├── nxt.c │ ├── osm.c │ ├── partab.c │ ├── pckt.c │ ├── physdsk.c │ ├── pipemod.c │ ├── prf.c │ ├── ptem.c │ ├── ptm.c │ ├── pts.c │ ├── raio.c │ ├── ramd.c │ ├── sad.c │ ├── sockmod.c │ ├── stream.c │ ├── sxt.c │ ├── sysmsg.c │ ├── ticlts.c │ ├── ticots.c │ ├── ticotsord.c │ ├── timod.c │ ├── tirdwr.c │ ├── tt1.c │ ├── ttcompat.c │ ├── tty.c │ ├── weitek.c │ ├── ws │ │ ├── ws.mk │ │ ├── ws_8042.c │ │ ├── ws_ansi.c │ │ ├── ws_cmap.c │ │ ├── ws_subr.c │ │ ├── ws_tables.c │ │ └── ws_tcl.c │ ├── xque.c │ └── xt.c │ ├── kdb │ ├── README │ ├── cmd │ │ ├── cmd.mk │ │ ├── kdb.c │ │ ├── unixsyms.c │ │ ├── unixsyms.h │ │ ├── unixsyms2.c │ │ └── unixsyms3.c │ ├── db_as.h │ ├── gdebugger │ │ ├── README │ │ ├── dbg.c │ │ └── gdebugger.mk │ ├── kdb-util │ │ ├── README │ │ ├── db_as.c │ │ ├── kdb-util.mk │ │ └── kdb.c │ ├── kdb.mk │ └── kdb │ │ ├── README │ │ ├── bits.c │ │ ├── db.c │ │ ├── dbcmd.h │ │ ├── dbcon.c │ │ ├── dbintrp.c │ │ ├── dblex.c │ │ ├── dbshow.c │ │ ├── dbshow2.c │ │ ├── debugger.h │ │ ├── dis.h │ │ ├── extn.c │ │ ├── kdb.mk │ │ ├── opset.c │ │ ├── structs.h │ │ ├── tbls.c │ │ └── utls.c │ ├── kernmap │ ├── klm │ ├── klm.mk │ ├── klm_kprot.c │ ├── klm_lkmgr.c │ ├── klm_prot.h │ └── lockmgr.h │ ├── ktli │ ├── ktli.mk │ ├── t_kalloc.c │ ├── t_kbind.c │ ├── t_kclose.c │ ├── t_kconnect.c │ ├── t_kfree.c │ ├── t_kgtstate.c │ ├── t_kopen.c │ ├── t_krcvudat.c │ ├── t_ksndudat.c │ ├── t_kspoll.c │ ├── t_kunbind.c │ └── t_kutil.c │ ├── master.d │ ├── RFS │ │ ├── mfsys │ │ ├── sfsys │ │ ├── space.c │ │ └── stubs.c │ ├── ansi │ │ ├── mdev │ │ └── sdev │ ├── app │ │ ├── mdev │ │ └── sdev │ ├── arp │ │ ├── mdev │ │ ├── node │ │ ├── sdev │ │ └── space.c │ ├── async │ │ ├── mdev │ │ ├── sdev │ │ ├── space.c │ │ └── stubs.c │ ├── bfs │ │ ├── mfsys │ │ └── sfsys │ ├── char │ │ ├── mdev │ │ └── sdev │ ├── clist │ │ ├── mdev │ │ ├── sdev │ │ └── stubs.c │ ├── clone │ │ ├── mdev │ │ └── sdev │ ├── coff │ │ ├── mdev │ │ ├── sdev │ │ └── stubs.c │ ├── connld │ │ ├── mdev │ │ └── sdev │ ├── cpyrt │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── des │ │ ├── mdev │ │ └── sdev │ ├── dosx │ │ ├── mdev │ │ └── sdev │ ├── elf │ │ ├── mdev │ │ └── sdev │ ├── events │ │ ├── mfsys │ │ ├── sfsys │ │ ├── space.c │ │ └── stubs.c │ ├── fdfs │ │ ├── mfsys │ │ └── sfsys │ ├── fifofs │ │ ├── mfsys │ │ └── sfsys │ ├── fp │ │ ├── mdev │ │ └── sdev │ ├── gdebugger │ │ ├── mdev │ │ └── sdev │ ├── gendisp │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── gentty │ │ ├── mdev │ │ └── sdev │ ├── hrt │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── i286x │ │ ├── mdev │ │ └── sdev │ ├── icmp │ │ ├── mdev │ │ ├── node │ │ └── sdev │ ├── init.base │ ├── intp │ │ ├── mdev │ │ ├── sdev │ │ └── stubs.c │ ├── ip │ │ ├── mdev │ │ ├── node │ │ ├── sdev │ │ └── space.c │ ├── ipc │ │ ├── mdev │ │ └── sdev │ ├── kdb-util │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── kdb │ │ ├── mdev │ │ └── sdev │ ├── kernel │ │ └── space.c │ ├── klm │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── kma │ │ ├── mdev │ │ └── sdev │ ├── kmacct │ │ ├── mdev │ │ ├── sdev │ │ ├── space.c │ │ └── stubs.c │ ├── krpc │ │ ├── mdev │ │ └── sdev │ ├── ktli │ │ ├── mdev │ │ └── sdev │ ├── ldterm │ │ ├── mdev │ │ └── sdev │ ├── llcloop │ │ ├── mdev │ │ ├── node │ │ ├── sdev │ │ └── space.c │ ├── log │ │ ├── mdev │ │ ├── node │ │ ├── sdev │ │ └── space.c │ ├── master.d.mk │ ├── mem │ │ ├── mdev │ │ └── sdev │ ├── merge │ │ ├── mdev │ │ ├── sdev │ │ └── stubs.c │ ├── msg │ │ ├── mdev │ │ ├── sdev │ │ ├── space.c │ │ └── stubs.c │ ├── mtune │ ├── namefs │ │ ├── mfsys │ │ └── sfsys │ ├── nfa │ │ ├── mfsys │ │ ├── sfsys │ │ └── stubs.c │ ├── nfs │ │ ├── mfsys │ │ ├── sfsys │ │ ├── space.c │ │ └── stubs.c │ ├── nmi │ │ ├── mdev │ │ └── sdev │ ├── npat │ │ └── space.c │ ├── nsxt │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── nxt │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── osm │ │ ├── mdev │ │ └── sdev │ ├── pckt │ │ ├── mdev │ │ └── sdev │ ├── pic │ │ └── space.c │ ├── pipemod │ │ ├── mdev │ │ └── sdev │ ├── prf │ │ ├── mdev │ │ ├── node │ │ ├── sdev │ │ ├── space.c │ │ └── stubs.c │ ├── proc │ │ ├── mfsys │ │ └── sfsys │ ├── ptem │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── ptm │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── pts │ │ ├── mdev │ │ └── sdev │ ├── raio │ │ ├── mdev │ │ ├── sdev │ │ └── stubs.c │ ├── ramd │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── rawip │ │ ├── mdev │ │ ├── node │ │ └── sdev │ ├── rmc │ │ ├── mdev │ │ ├── sdev │ │ └── stubs.c │ ├── rt │ │ ├── mdev │ │ ├── sdev │ │ ├── space.c │ │ └── stubs.c │ ├── s5 │ │ ├── mfsys │ │ ├── sfsys │ │ └── space.c │ ├── sad │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── sassign │ ├── sem │ │ ├── mdev │ │ ├── sdev │ │ ├── space.c │ │ └── stubs.c │ ├── shm │ │ ├── mdev │ │ ├── sdev │ │ ├── space.c │ │ └── stubs.c │ ├── sockmod │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── specfs │ │ ├── mfsys │ │ └── sfsys │ ├── stune │ ├── sxt │ │ ├── mdev │ │ ├── sdev │ │ ├── space.c │ │ └── stubs.c │ ├── sysmsg │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── tcp │ │ ├── mdev │ │ ├── node │ │ ├── sdev │ │ └── space.c │ ├── ticlts │ │ ├── mdev │ │ ├── node │ │ └── sdev │ ├── ticots │ │ ├── mdev │ │ ├── node │ │ └── sdev │ ├── ticotsor │ │ ├── mdev │ │ ├── node │ │ └── sdev │ ├── timod │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── tirdwr │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── ts │ │ ├── mdev │ │ ├── sdev │ │ └── space.c │ ├── ttcompat │ │ ├── mdev │ │ └── sdev │ ├── udp │ │ ├── mdev │ │ ├── node │ │ ├── sdev │ │ └── space.c │ ├── ufs │ │ ├── mfsys │ │ ├── sfsys │ │ └── space.c │ ├── vx │ │ ├── mdev │ │ ├── sdev │ │ ├── space.c │ │ └── stubs.c │ ├── weitek │ │ ├── mdev │ │ ├── sdev │ │ ├── space.c │ │ └── stubs.c │ ├── ws │ │ ├── mdev │ │ ├── sdev │ │ ├── space.c │ │ └── stubs.c │ ├── xnamfs │ │ ├── mfsys │ │ ├── sfsys │ │ ├── space.c │ │ └── stubs.c │ ├── xout │ │ ├── mdev │ │ ├── sdev │ │ └── stubs.c │ ├── xque │ │ ├── mdev │ │ └── sdev │ └── xt │ │ ├── mdev │ │ ├── sdev │ │ ├── space.c │ │ └── stubs.c │ ├── ml │ ├── Gensymvals │ ├── cswitch.s │ ├── intr.s │ ├── misc.s │ ├── ml.mk │ ├── oemsup.s │ ├── pic.c │ ├── pit.c │ ├── string.s │ ├── syms.s │ ├── tables1.c │ ├── tables2.c │ ├── tool │ │ ├── setfilter.c │ │ └── tools.mk │ ├── ttrap.s │ ├── uprt.s │ ├── v86gptrap.s │ └── weitek.s │ ├── net │ ├── af.h │ ├── if.h │ ├── if_arp.h │ ├── route.h │ └── strioc.h │ ├── netinet │ ├── app.c │ ├── arp.c │ ├── arp.h │ ├── arp.mk │ ├── icmp_var.h │ ├── if_ether.h │ ├── in.c │ ├── in.h │ ├── in_cksum.c │ ├── in_pcb.c │ ├── in_pcb.h │ ├── in_switch.c │ ├── in_systm.h │ ├── in_transp.c │ ├── in_var.h │ ├── insrem.h │ ├── ip.h │ ├── ip.mk │ ├── ip_icmp.c │ ├── ip_icmp.h │ ├── ip_input.c │ ├── ip_main.c │ ├── ip_output.c │ ├── ip_str.h │ ├── ip_var.h │ ├── ip_vers.c │ ├── llcloop.c │ ├── llcloop.h │ ├── llcloop.mk │ ├── netinet.mk │ ├── netlib.c │ ├── nihdr.h │ ├── raw_ip.c │ ├── raw_ip_cb.c │ ├── raw_ip_main.c │ ├── route.c │ ├── symredef.h │ ├── tcp.h │ ├── tcp.mk │ ├── tcp_debug.c │ ├── tcp_debug.h │ ├── tcp_fsm.h │ ├── tcp_input.c │ ├── tcp_main.c │ ├── tcp_output.c │ ├── tcp_seq.h │ ├── tcp_state.c │ ├── tcp_subr.c │ ├── tcp_timer.c │ ├── tcp_timer.h │ ├── tcp_var.h │ ├── tcpip.h │ ├── udp.h │ ├── udp.mk │ ├── udp_io.c │ ├── udp_main.c │ ├── udp_state.c │ └── udp_var.h │ ├── nfs │ ├── export.h │ ├── mount.h │ ├── nfs.h │ ├── nfs_clnt.h │ ├── nfssys.h │ └── rnode.h │ ├── os │ ├── acct.c │ ├── bio.c │ ├── bitmap.c │ ├── bitmasks.c │ ├── bs.c │ ├── clock.c │ ├── cmn_err.c │ ├── core.c │ ├── cred.c │ ├── cxenix.c │ ├── ddi.c │ ├── exec.c │ ├── execargs.c │ ├── exit.c │ ├── fbio.c │ ├── fio.c │ ├── flock.c │ ├── fork.c │ ├── fp.c │ ├── grow.c │ ├── ipc.c │ ├── kma.c │ ├── kperf.c │ ├── list.c │ ├── local.c │ ├── lock.c │ ├── machdep.c │ ├── main.c │ ├── malloc.c │ ├── mapfile.c │ ├── mod.c │ ├── move.c │ ├── msg.c │ ├── name.c │ ├── nmi.c │ ├── oem.c │ ├── os.mk │ ├── pgrp.c │ ├── pid.c │ ├── pipe.c │ ├── pmstub.c │ ├── predki.c │ ├── procset.c │ ├── scalls.c │ ├── sched.c │ ├── sem.c │ ├── session.c │ ├── shm.c │ ├── sig.c │ ├── slp.c │ ├── startup.c │ ├── streamio.c │ ├── strsubr.c │ ├── subr.c │ ├── sysent.c │ ├── sysi86.c │ ├── todc.c │ ├── trap.c │ ├── vm_meter.c │ ├── vm_pageout.c │ ├── vm_subr.c │ ├── xmmu.c │ └── xsys.c │ ├── rpc │ ├── auth.h │ ├── auth_des.c │ ├── auth_des.h │ ├── auth_kern.c │ ├── auth_sys.h │ ├── auth_unix.h │ ├── authdesprt.c │ ├── authdesubr.c │ ├── authu_prot.c │ ├── clnt.h │ ├── clnt_clts.c │ ├── clnt_gen.c │ ├── clnt_perr.c │ ├── clnt_soc.h │ ├── des_crypt.h │ ├── key_call.c │ ├── key_prot.c │ ├── key_prot.h │ ├── makefile │ ├── nettype.h │ ├── pmap_clnt.h │ ├── pmap_prot.h │ ├── pmap_rmt.h │ ├── raw.h │ ├── rpc.h │ ├── rpc.mk │ ├── rpc_calmsg.c │ ├── rpc_com.h │ ├── rpc_msg.h │ ├── rpc_prot.c │ ├── rpc_subr.c │ ├── rpcb_clnt.h │ ├── rpcb_prot.h │ ├── rpcent.h │ ├── svc.c │ ├── svc.h │ ├── svc_auth.c │ ├── svc_auth.h │ ├── svc_authu.c │ ├── svc_clts.c │ ├── svc_gen.c │ ├── svc_soc.h │ ├── svcauthdes.c │ ├── types.h │ ├── xdr.c │ ├── xdr.h │ ├── xdr_array.c │ ├── xdr_mblk.c │ └── xdr_mem.c │ ├── sys │ ├── acct.h │ ├── adv.h │ ├── alttbl.h │ ├── ansi.h │ ├── ascii.h │ ├── asy.h │ ├── asyncio.h │ ├── asyncsys.h │ ├── at_ansi.h │ ├── auxv.h │ ├── bitmap.h │ ├── bitmasks.h │ ├── boot.h │ ├── boothdr.h │ ├── bootinfo.h │ ├── buf.h │ ├── byteorder.h │ ├── callo.h │ ├── cdump.h │ ├── chanmux.h │ ├── char.h │ ├── class.h │ ├── clock.h │ ├── cmn_err.h │ ├── conf.h │ ├── cram.h │ ├── cred.h │ ├── crtctl.h │ ├── ddi.h │ ├── debug.h │ ├── debugreg.h │ ├── dir.h │ ├── dirent.h │ ├── disp.h │ ├── dl.h │ ├── dlpi.h │ ├── dma.h │ ├── dmaable.h │ ├── dnlc.h │ ├── eisa.h │ ├── elf.h │ ├── elf_386.h │ ├── elftypes.h │ ├── elog.h │ ├── emap.h │ ├── erec.h │ ├── err.h │ ├── errno.h │ ├── ertyp.h │ ├── euc.h │ ├── eucioctl.h │ ├── evc.h │ ├── evecb.h │ ├── events.h │ ├── evsys.h │ ├── evsyscall.h │ ├── exec.h │ ├── fault.h │ ├── fblk.h │ ├── fbuf.h │ ├── fcntl.h │ ├── fd.h │ ├── fdisk.h │ ├── file.h │ ├── filio.h │ ├── filsys.h │ ├── flock.h │ ├── fp.h │ ├── fs │ │ ├── bfs.h │ │ ├── bfs_compact.h │ │ ├── fifonode.h │ │ ├── namenode.h │ │ ├── rf_acct.h │ │ ├── rf_vfs.h │ │ ├── s5dir.h │ │ ├── s5fblk.h │ │ ├── s5filsys.h │ │ ├── s5ino.h │ │ ├── s5inode.h │ │ ├── s5macros.h │ │ ├── s5param.h │ │ ├── snode.h │ │ ├── ufs_fs.h │ │ ├── ufs_fsdir.h │ │ ├── ufs_inode.h │ │ ├── ufs_quota.h │ │ └── xnamnode.h │ ├── fsiboot.h │ ├── fsid.h │ ├── fstyp.h │ ├── gdpstr.h │ ├── genvid.h │ ├── getpages.h │ ├── hd.h │ ├── hetero.h │ ├── hrtcntl.h │ ├── hrtsys.h │ ├── i8237A.h │ ├── idtab.h │ ├── immu.h │ ├── info.h │ ├── inline.h │ ├── ino.h │ ├── inode.h │ ├── iobuf.h │ ├── ioccom.h │ ├── ioctl.h │ ├── ipc.h │ ├── ipl.h │ ├── istk.h │ ├── jioctl.h │ ├── kb.h │ ├── kd.h │ ├── kdebugger.h │ ├── kmacct.h │ ├── kmem.h │ ├── ldterm.h │ ├── lihdr.h │ ├── list.h │ ├── lock.h │ ├── locking.h │ ├── log.h │ ├── lp.h │ ├── macro.h │ ├── map.h │ ├── merge386.h │ ├── mkdev.h │ ├── mman.h │ ├── mntent.h │ ├── mnttab.h │ ├── mode.h │ ├── mount.h │ ├── mouse.h │ ├── msg.h │ ├── nami.h │ ├── netconfig.h │ ├── netcspace.h │ ├── nserve.h │ ├── nsxt.h │ ├── nxt.h │ ├── nxtproto.h │ ├── open.h │ ├── page.h │ ├── param.h │ ├── pathname.h │ ├── pfdat.h │ ├── pic.h │ ├── pit.h │ ├── poll.h │ ├── pp_dep.h │ ├── priocntl.h │ ├── privilege.h │ ├── proc.h │ ├── procfs.h │ ├── procset.h │ ├── proctl.h │ ├── protosw.h │ ├── prsystm.h │ ├── ptem.h │ ├── ptms.h │ ├── que.h │ ├── queue.h │ ├── ramd.h │ ├── recover.h │ ├── reg.h │ ├── region.h │ ├── regset.h │ ├── resource.h │ ├── rf_adv.h │ ├── rf_cirmgr.h │ ├── rf_comm.h │ ├── rf_debug.h │ ├── rf_messg.h │ ├── rf_sys.h │ ├── rt.h │ ├── rtc.h │ ├── rtpriocntl.h │ ├── sad.h │ ├── sd.h │ ├── sdi_edt.h │ ├── seg.h │ ├── select.h │ ├── sem.h │ ├── sema.h │ ├── session.h │ ├── shm.h │ ├── sigaction.h │ ├── siginfo.h │ ├── signal.h │ ├── socket.h │ ├── socketvar.h │ ├── sockio.h │ ├── sockmod.h │ ├── stat.h │ ├── statfs.h │ ├── statvfs.h │ ├── stermio.h │ ├── stream.h │ ├── strlog.h │ ├── strmdep.h │ ├── stropts.h │ ├── strppc.h │ ├── strstat.h │ ├── strsubr.h │ ├── strtty.h │ ├── swap.h │ ├── sxt.h │ ├── sys.i386 │ ├── syscall.h │ ├── sysconfig.h │ ├── sysi86.h │ ├── sysinfo.h │ ├── syslog.h │ ├── sysmacros.h │ ├── sysmsg.h │ ├── systeminfo.h │ ├── systm.h │ ├── t_kuser.h │ ├── tape.h │ ├── termio.h │ ├── termios.h │ ├── termiox.h │ ├── ticlts.h │ ├── ticots.h │ ├── ticotsord.h │ ├── tihdr.h │ ├── time.h │ ├── timeb.h │ ├── times.h │ ├── timod.h │ ├── tirdwr.h │ ├── tiuser.h │ ├── trace.h │ ├── trap.h │ ├── ts.h │ ├── tspriocntl.h │ ├── tsproc.h │ ├── tss.h │ ├── ttcompat.h │ ├── ttold.h │ ├── tty.h │ ├── ttychars.h │ ├── ttydev.h │ ├── tuneable.h │ ├── types.h │ ├── uadmin.h │ ├── ucontext.h │ ├── uio.h │ ├── ulimit.h │ ├── un.h │ ├── unistd.h │ ├── user.h │ ├── ustat.h │ ├── utime.h │ ├── utsname.h │ ├── utssys.h │ ├── v86.h │ ├── var.h │ ├── vdc.h │ ├── vfs.h │ ├── vfstab.h │ ├── vid.h │ ├── vm.h │ ├── vmmac.h │ ├── vmmeter.h │ ├── vmparam.h │ ├── vmsystm.h │ ├── vnode.h │ ├── vt.h │ ├── vtoc.h │ ├── wait.h │ ├── weitek.h │ ├── ws │ │ ├── 8042.h │ │ ├── chan.h │ │ ├── tcl.h │ │ └── ws.h │ ├── x.out.h │ ├── xdebug.h │ ├── xque.h │ ├── xt.h │ └── xtproto.h │ ├── tags │ ├── unix.mk │ ├── vm │ ├── anon.h │ ├── as.h │ ├── bootconf.h │ ├── cpu.h │ ├── debugger.h │ ├── faultcatch.h │ ├── faultcode.h │ ├── hat.h │ ├── kernel.h │ ├── memprobe.c │ ├── mp.h │ ├── page.h │ ├── pte.h │ ├── pvn.h │ ├── reboot.h │ ├── rm.h │ ├── seg.h │ ├── seg_dev.c │ ├── seg_dev.h │ ├── seg_dummy.c │ ├── seg_dummy.h │ ├── seg_kmem.c │ ├── seg_kmem.h │ ├── seg_map.c │ ├── seg_map.h │ ├── seg_objs.c │ ├── seg_objs.h │ ├── seg_u.c │ ├── seg_u.h │ ├── seg_vn.c │ ├── seg_vn.h │ ├── seg_vpix.c │ ├── seg_vpix.h │ ├── trace.h │ ├── ucopy.c │ ├── vm.mk │ ├── vm_anon.c │ ├── vm_as.c │ ├── vm_hat.c │ ├── vm_hat.h │ ├── vm_machdep.c │ ├── vm_mp.c │ ├── vm_page.c │ ├── vm_pvn.c │ ├── vm_rm.c │ ├── vm_seg.c │ ├── vm_swap.c │ ├── vm_vpage.c │ ├── vmlog.h │ └── vpage.h │ ├── vuifile │ └── vx │ ├── v86.c │ ├── v86subr.c │ └── vx.mk └── xcplib ├── libx ├── i386 │ ├── m4.def │ ├── makefile │ ├── mcount.def │ ├── sys.def │ └── sys │ │ ├── _sdget.s │ │ ├── chsize.s │ │ ├── creatsem.s │ │ ├── execseg.s │ │ ├── ftime.s │ │ ├── locking.s │ │ ├── nap.s │ │ ├── nbwaitsem.s │ │ ├── opensem.s │ │ ├── proctl.s │ │ ├── rdchk.s │ │ ├── sdenter.s │ │ ├── sdfree.s │ │ ├── sdgetv.s │ │ ├── sdleave.s │ │ ├── sdwaitv.s │ │ ├── sigsem.s │ │ ├── unexecseg.s │ │ └── waitsem.s ├── libx.mk ├── libx │ ├── i386 │ │ ├── m4.def │ │ ├── makefile │ │ ├── mcount.def │ │ ├── sys.def │ │ └── sys │ │ │ ├── _sdget.s │ │ │ ├── chsize.s │ │ │ ├── creatsem.s │ │ │ ├── execseg.s │ │ │ ├── ftime.s │ │ │ ├── locking.s │ │ │ ├── nap.s │ │ │ ├── nbwaitsem.s │ │ │ ├── opensem.s │ │ │ ├── proctl.s │ │ │ ├── rdchk.s │ │ │ ├── sdenter.s │ │ │ ├── sdfree.s │ │ │ ├── sdgetv.s │ │ │ ├── sdleave.s │ │ │ ├── sdwaitv.s │ │ │ ├── sigsem.s │ │ │ ├── unexecseg.s │ │ │ └── waitsem.s │ ├── libx.mk │ └── port │ │ ├── makefile │ │ └── sys │ │ ├── lock.c │ │ ├── makefile │ │ └── sdget.c └── port │ ├── makefile │ └── sys │ ├── lock.c │ ├── makefile │ └── sdget.c ├── lxcurses ├── addch.c ├── addstr.c ├── box.c ├── clear.c ├── clrtobot.c ├── clrtoeol.c ├── cr_put.c ├── cr_tty.c ├── curses.c ├── delch.c ├── deleteln.c ├── delwin.c ├── endwin.c ├── erase.c ├── ext.h ├── getch.c ├── getstr.c ├── initscr.c ├── insch.c ├── insertln.c ├── longname.c ├── lxcurses.mk ├── move.c ├── mvprintw.c ├── mvscanw.c ├── mvwin.c ├── newwin.c ├── overlay.c ├── overwrite.c ├── printw.c ├── refresh.c ├── save_mode.c ├── scanw.c ├── scroll.c ├── standout.c ├── test.c ├── touchwin.c ├── tstp.c ├── unctrl.c └── xcurses.h └── lxtermlib ├── lxtermlib.mk ├── tc1.c ├── tc2.c ├── tc3.c ├── termcap.c ├── tgoto.c └── tputs.c /:mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mk -------------------------------------------------------------------------------- /:mk.addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mk.addon -------------------------------------------------------------------------------- /:mk.arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mk.arch -------------------------------------------------------------------------------- /:mk.csds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mk.csds -------------------------------------------------------------------------------- /:mk.fnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mk.fnd -------------------------------------------------------------------------------- /:mk.i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mk.i386 -------------------------------------------------------------------------------- /:mkcmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mkcmd -------------------------------------------------------------------------------- /:mkhead: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mkhead -------------------------------------------------------------------------------- /:mklib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mklib -------------------------------------------------------------------------------- /:mkoam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mkoam -------------------------------------------------------------------------------- /:mksyshead: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mksyshead -------------------------------------------------------------------------------- /:mkucb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mkucb -------------------------------------------------------------------------------- /:mkucbcmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mkucbcmd -------------------------------------------------------------------------------- /:mkucbhead: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mkucbhead -------------------------------------------------------------------------------- /:mkucblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mkucblib -------------------------------------------------------------------------------- /:mkuts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mkuts -------------------------------------------------------------------------------- /:mkxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mkxcp -------------------------------------------------------------------------------- /:mkxcpcmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mkxcpcmd -------------------------------------------------------------------------------- /:mkxcplib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/:mkxcplib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/README.md -------------------------------------------------------------------------------- /add-on/pkg.lp/depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /add-on/qt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/add-on/qt/README -------------------------------------------------------------------------------- /add-on/qt/io/qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/add-on/qt/io/qt.h -------------------------------------------------------------------------------- /add-on/qt/qt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/add-on/qt/qt.mk -------------------------------------------------------------------------------- /add-on/wd/ID/Master: -------------------------------------------------------------------------------- 1 | *ident "@(#)wd:ID/Master 1.1.2.1" 2 | wd I iSHcfM wd 0 0-4 1 32 -1 3 | -------------------------------------------------------------------------------- /add-on/wd/ID/Node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/add-on/wd/ID/Node -------------------------------------------------------------------------------- /add-on/wd/io/wd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/add-on/wd/io/wd.c -------------------------------------------------------------------------------- /add-on/wd/wd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/add-on/wd/wd.mk -------------------------------------------------------------------------------- /add-on/xl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/add-on/xl/README -------------------------------------------------------------------------------- /add-on/xl/io/fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/add-on/xl/io/fd.c -------------------------------------------------------------------------------- /add-on/xl/io/xl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/add-on/xl/io/xl.c -------------------------------------------------------------------------------- /add-on/xl/io/xl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/add-on/xl/io/xl.h -------------------------------------------------------------------------------- /add-on/xl/xl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/add-on/xl/xl.mk -------------------------------------------------------------------------------- /add-on/xx/ID/Sfsys: -------------------------------------------------------------------------------- 1 | #ident "@(#)xx:ID/Sfsys 1.1" 2 | XENIX Y 3 | -------------------------------------------------------------------------------- /add-on/xx/xx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/add-on/xx/xx.mk -------------------------------------------------------------------------------- /cmd/.adm/.adm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/.adm/.adm.mk -------------------------------------------------------------------------------- /cmd/.adm/.proto: -------------------------------------------------------------------------------- 1 | #ident "@(#)adm:.proto 1.2" 2 | cd $d 3 | ulimit $l 4 | umask $m 5 | $< 6 | -------------------------------------------------------------------------------- /cmd/.adm/_sysconfig: -------------------------------------------------------------------------------- 1 | # VERSION=1 2 | -------------------------------------------------------------------------------- /cmd/.adm/adm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/.adm/adm -------------------------------------------------------------------------------- /cmd/.adm/ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/.adm/ascii -------------------------------------------------------------------------------- /cmd/.adm/at.allow: -------------------------------------------------------------------------------- 1 | root 2 | sys 3 | adm 4 | uucp 5 | -------------------------------------------------------------------------------- /cmd/.adm/bsetdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/.adm/bsetdate -------------------------------------------------------------------------------- /cmd/.adm/cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/.adm/cleanup -------------------------------------------------------------------------------- /cmd/.adm/cron.allow: -------------------------------------------------------------------------------- 1 | root 2 | sys 3 | adm 4 | uucp 5 | -------------------------------------------------------------------------------- /cmd/.adm/cshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/.adm/cshrc -------------------------------------------------------------------------------- /cmd/.adm/dfspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/.adm/dfspace -------------------------------------------------------------------------------- /cmd/.adm/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/.adm/group -------------------------------------------------------------------------------- /cmd/.adm/i386/_sactab: -------------------------------------------------------------------------------- 1 | # VERSION=1 2 | -------------------------------------------------------------------------------- /cmd/.adm/i386/_sysconfig: -------------------------------------------------------------------------------- 1 | # VERSION=1 2 | -------------------------------------------------------------------------------- /cmd/.adm/i386/adm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/.adm/i386/adm -------------------------------------------------------------------------------- /cmd/.adm/i386/checklist: -------------------------------------------------------------------------------- 1 | /dev/root 2 | -------------------------------------------------------------------------------- /cmd/.adm/i386/motd: -------------------------------------------------------------------------------- 1 | #ident "@(#)adm:i386/motd 1.1" 2 | -------------------------------------------------------------------------------- /cmd/.adm/i386/queuedefs: -------------------------------------------------------------------------------- 1 | a.4j1n 2 | b.2j2n90w 3 | -------------------------------------------------------------------------------- /cmd/.adm/i386/uucp: -------------------------------------------------------------------------------- 1 | #ident "@(#)adm:i386/uucp 1.1" 2 | rm -f /usr/spool/locks/LCK* 3 | -------------------------------------------------------------------------------- /cmd/.adm/issue: -------------------------------------------------------------------------------- 1 | Welcome to the AT&T 386 UNIX System 2 | -------------------------------------------------------------------------------- /cmd/.adm/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/.adm/profile -------------------------------------------------------------------------------- /cmd/.adm/queuedefs: -------------------------------------------------------------------------------- 1 | a.4j1n 2 | b.2j2n90w 3 | -------------------------------------------------------------------------------- /cmd/.adm/rc0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/.adm/rc0 -------------------------------------------------------------------------------- /cmd/.adm/rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/.adm/rc2 -------------------------------------------------------------------------------- /cmd/.adm/root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/.adm/root -------------------------------------------------------------------------------- /cmd/.adm/sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/.adm/sys -------------------------------------------------------------------------------- /cmd/acct/acct.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/acct/acct.mk -------------------------------------------------------------------------------- /cmd/acct/acct.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/acct/acct.sh -------------------------------------------------------------------------------- /cmd/acct/accton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/acct/accton.c -------------------------------------------------------------------------------- /cmd/acct/ctmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/acct/ctmp.h -------------------------------------------------------------------------------- /cmd/acct/fwtmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/acct/fwtmp.c -------------------------------------------------------------------------------- /cmd/acct/holidays: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/acct/holidays -------------------------------------------------------------------------------- /cmd/acct/ptmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/acct/ptmp.h -------------------------------------------------------------------------------- /cmd/acct/tacct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/acct/tacct.h -------------------------------------------------------------------------------- /cmd/adv/adv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/adv/adv.c -------------------------------------------------------------------------------- /cmd/adv/adv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/adv/adv.mk -------------------------------------------------------------------------------- /cmd/awk/awk.g.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/awk/awk.g.y -------------------------------------------------------------------------------- /cmd/awk/awk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/awk/awk.h -------------------------------------------------------------------------------- /cmd/awk/awk.lx.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/awk/awk.lx.l -------------------------------------------------------------------------------- /cmd/awk/awk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/awk/awk.mk -------------------------------------------------------------------------------- /cmd/awk/b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/awk/b.c -------------------------------------------------------------------------------- /cmd/awk/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/awk/lib.c -------------------------------------------------------------------------------- /cmd/awk/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/awk/main.c -------------------------------------------------------------------------------- /cmd/awk/maketab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/awk/maketab.c -------------------------------------------------------------------------------- /cmd/awk/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/awk/parse.c -------------------------------------------------------------------------------- /cmd/awk/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/awk/run.c -------------------------------------------------------------------------------- /cmd/awk/tran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/awk/tran.c -------------------------------------------------------------------------------- /cmd/bc/bc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bc/bc.mk -------------------------------------------------------------------------------- /cmd/bc/bc.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bc/bc.y -------------------------------------------------------------------------------- /cmd/bc/lib.b.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bc/lib.b.data -------------------------------------------------------------------------------- /cmd/bdiff/bdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bdiff/bdiff.c -------------------------------------------------------------------------------- /cmd/bfs/bfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bfs/bfs.c -------------------------------------------------------------------------------- /cmd/bfs/bfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bfs/bfs.mk -------------------------------------------------------------------------------- /cmd/bkrs/bkrs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bkrs/bkrs.mk -------------------------------------------------------------------------------- /cmd/bnu/Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/Config -------------------------------------------------------------------------------- /cmd/bnu/Cvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/Cvt -------------------------------------------------------------------------------- /cmd/bnu/Devconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/Devconfig -------------------------------------------------------------------------------- /cmd/bnu/Devices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/Devices -------------------------------------------------------------------------------- /cmd/bnu/Dialcodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/Dialcodes -------------------------------------------------------------------------------- /cmd/bnu/Dialers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/Dialers -------------------------------------------------------------------------------- /cmd/bnu/Grades: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/Grades -------------------------------------------------------------------------------- /cmd/bnu/Install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/Install -------------------------------------------------------------------------------- /cmd/bnu/Limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/Limits -------------------------------------------------------------------------------- /cmd/bnu/Poll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/Poll -------------------------------------------------------------------------------- /cmd/bnu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/README -------------------------------------------------------------------------------- /cmd/bnu/SetUp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/SetUp -------------------------------------------------------------------------------- /cmd/bnu/Sysfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/Sysfiles -------------------------------------------------------------------------------- /cmd/bnu/Systems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/Systems -------------------------------------------------------------------------------- /cmd/bnu/Teardown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/Teardown -------------------------------------------------------------------------------- /cmd/bnu/Uutry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/Uutry -------------------------------------------------------------------------------- /cmd/bnu/account.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/account.c -------------------------------------------------------------------------------- /cmd/bnu/altconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/altconn.c -------------------------------------------------------------------------------- /cmd/bnu/anlwrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/anlwrk.c -------------------------------------------------------------------------------- /cmd/bnu/bnu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/bnu.mk -------------------------------------------------------------------------------- /cmd/bnu/callers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/callers.c -------------------------------------------------------------------------------- /cmd/bnu/cntrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/cntrl.c -------------------------------------------------------------------------------- /cmd/bnu/conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/conn.c -------------------------------------------------------------------------------- /cmd/bnu/cpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/cpmv.c -------------------------------------------------------------------------------- /cmd/bnu/ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/ct.c -------------------------------------------------------------------------------- /cmd/bnu/cu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/cu.c -------------------------------------------------------------------------------- /cmd/bnu/dial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/dial.c -------------------------------------------------------------------------------- /cmd/bnu/dial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/dial.h -------------------------------------------------------------------------------- /cmd/bnu/dial.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/dial.mk -------------------------------------------------------------------------------- /cmd/bnu/dio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/dio.c -------------------------------------------------------------------------------- /cmd/bnu/dk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/dk.h -------------------------------------------------------------------------------- /cmd/bnu/dkbreak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/dkbreak.c -------------------------------------------------------------------------------- /cmd/bnu/dkdial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/dkdial.c -------------------------------------------------------------------------------- /cmd/bnu/dkerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/dkerr.c -------------------------------------------------------------------------------- /cmd/bnu/dkminor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/dkminor.c -------------------------------------------------------------------------------- /cmd/bnu/dtnamer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/dtnamer.c -------------------------------------------------------------------------------- /cmd/bnu/eio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/eio.c -------------------------------------------------------------------------------- /cmd/bnu/expfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/expfile.c -------------------------------------------------------------------------------- /cmd/bnu/gename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/gename.c -------------------------------------------------------------------------------- /cmd/bnu/getargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/getargs.c -------------------------------------------------------------------------------- /cmd/bnu/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/getopt.c -------------------------------------------------------------------------------- /cmd/bnu/getprm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/getprm.c -------------------------------------------------------------------------------- /cmd/bnu/gio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/gio.c -------------------------------------------------------------------------------- /cmd/bnu/gnamef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/gnamef.c -------------------------------------------------------------------------------- /cmd/bnu/gnxseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/gnxseq.c -------------------------------------------------------------------------------- /cmd/bnu/grades.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/grades.c -------------------------------------------------------------------------------- /cmd/bnu/gtcfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/gtcfile.c -------------------------------------------------------------------------------- /cmd/bnu/gwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/gwd.c -------------------------------------------------------------------------------- /cmd/bnu/imsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/imsg.c -------------------------------------------------------------------------------- /cmd/bnu/limits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/limits.c -------------------------------------------------------------------------------- /cmd/bnu/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/line.c -------------------------------------------------------------------------------- /cmd/bnu/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/log.h -------------------------------------------------------------------------------- /cmd/bnu/logent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/logent.c -------------------------------------------------------------------------------- /cmd/bnu/mailst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/mailst.c -------------------------------------------------------------------------------- /cmd/bnu/parms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/parms.h -------------------------------------------------------------------------------- /cmd/bnu/pk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/pk.h -------------------------------------------------------------------------------- /cmd/bnu/pk0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/pk0.c -------------------------------------------------------------------------------- /cmd/bnu/pk1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/pk1.c -------------------------------------------------------------------------------- /cmd/bnu/pkdefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/pkdefs.c -------------------------------------------------------------------------------- /cmd/bnu/shio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/shio.c -------------------------------------------------------------------------------- /cmd/bnu/statlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/statlog.c -------------------------------------------------------------------------------- /cmd/bnu/stoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/stoa.c -------------------------------------------------------------------------------- /cmd/bnu/strecpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/strecpy.c -------------------------------------------------------------------------------- /cmd/bnu/strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/strpbrk.c -------------------------------------------------------------------------------- /cmd/bnu/strsave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/strsave.c -------------------------------------------------------------------------------- /cmd/bnu/systat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/systat.c -------------------------------------------------------------------------------- /cmd/bnu/ulockf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/ulockf.c -------------------------------------------------------------------------------- /cmd/bnu/unknown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/unknown.c -------------------------------------------------------------------------------- /cmd/bnu/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/utility.c -------------------------------------------------------------------------------- /cmd/bnu/uucheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/uucheck.c -------------------------------------------------------------------------------- /cmd/bnu/uucico.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/uucico.c -------------------------------------------------------------------------------- /cmd/bnu/uucp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/uucp.c -------------------------------------------------------------------------------- /cmd/bnu/uucp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/uucp.h -------------------------------------------------------------------------------- /cmd/bnu/uugetty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/uugetty.c -------------------------------------------------------------------------------- /cmd/bnu/uuglist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/uuglist.c -------------------------------------------------------------------------------- /cmd/bnu/uulog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/uulog -------------------------------------------------------------------------------- /cmd/bnu/uuname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/uuname.c -------------------------------------------------------------------------------- /cmd/bnu/uupick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/uupick -------------------------------------------------------------------------------- /cmd/bnu/uusched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/uusched.c -------------------------------------------------------------------------------- /cmd/bnu/uustat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/uustat.c -------------------------------------------------------------------------------- /cmd/bnu/uuto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/uuto -------------------------------------------------------------------------------- /cmd/bnu/uux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/uux.c -------------------------------------------------------------------------------- /cmd/bnu/uuxqt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/uuxqt.c -------------------------------------------------------------------------------- /cmd/bnu/versys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/versys.c -------------------------------------------------------------------------------- /cmd/bnu/xio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/xio.c -------------------------------------------------------------------------------- /cmd/bnu/xqt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/bnu/xqt.c -------------------------------------------------------------------------------- /cmd/cal/cal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cal/cal.c -------------------------------------------------------------------------------- /cmd/cal/cal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cal/cal.mk -------------------------------------------------------------------------------- /cmd/cat/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cat/a.out -------------------------------------------------------------------------------- /cmd/cat/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cat/cat.c -------------------------------------------------------------------------------- /cmd/cat/cat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cat/cat.mk -------------------------------------------------------------------------------- /cmd/cb/cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cb/cb.c -------------------------------------------------------------------------------- /cmd/cb/cb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cb/cb.mk -------------------------------------------------------------------------------- /cmd/cfgmgmt/Help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cfgmgmt/Help -------------------------------------------------------------------------------- /cmd/cflow/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cflow/README -------------------------------------------------------------------------------- /cmd/cflow/dag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cflow/dag.c -------------------------------------------------------------------------------- /cmd/cflow/flip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cflow/flip.c -------------------------------------------------------------------------------- /cmd/cflow/lpfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cflow/lpfx.c -------------------------------------------------------------------------------- /cmd/cflow/nmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cflow/nmf.c -------------------------------------------------------------------------------- /cmd/chgrp/chgrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/chgrp/chgrp.c -------------------------------------------------------------------------------- /cmd/chmod/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/chmod/chmod.c -------------------------------------------------------------------------------- /cmd/chown/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/chown/chown.c -------------------------------------------------------------------------------- /cmd/cmp/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cmp/cmp.c -------------------------------------------------------------------------------- /cmd/cmp/cmp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cmp/cmp.mk -------------------------------------------------------------------------------- /cmd/col/col.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/col/col.c -------------------------------------------------------------------------------- /cmd/col/col.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/col/col.mk -------------------------------------------------------------------------------- /cmd/comm/comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/comm/comm.c -------------------------------------------------------------------------------- /cmd/comm/comm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/comm/comm.mk -------------------------------------------------------------------------------- /cmd/copy/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/copy/copy.c -------------------------------------------------------------------------------- /cmd/copy/copy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/copy/copy.mk -------------------------------------------------------------------------------- /cmd/cpio/cpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cpio/cpio.c -------------------------------------------------------------------------------- /cmd/cpio/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cpio/cpio.h -------------------------------------------------------------------------------- /cmd/cpio/cpio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cpio/cpio.mk -------------------------------------------------------------------------------- /cmd/cpset/cpset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cpset/cpset.c -------------------------------------------------------------------------------- /cmd/crash/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/async.c -------------------------------------------------------------------------------- /cmd/crash/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/base.c -------------------------------------------------------------------------------- /cmd/crash/buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/buf.c -------------------------------------------------------------------------------- /cmd/crash/class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/class.c -------------------------------------------------------------------------------- /cmd/crash/crash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/crash.h -------------------------------------------------------------------------------- /cmd/crash/dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/dis.c -------------------------------------------------------------------------------- /cmd/crash/dis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/dis.h -------------------------------------------------------------------------------- /cmd/crash/disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/disp.c -------------------------------------------------------------------------------- /cmd/crash/i386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/i386.c -------------------------------------------------------------------------------- /cmd/crash/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/init.c -------------------------------------------------------------------------------- /cmd/crash/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/inode.c -------------------------------------------------------------------------------- /cmd/crash/kma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/kma.c -------------------------------------------------------------------------------- /cmd/crash/lck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/lck.c -------------------------------------------------------------------------------- /cmd/crash/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/main.c -------------------------------------------------------------------------------- /cmd/crash/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/map.c -------------------------------------------------------------------------------- /cmd/crash/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/page.c -------------------------------------------------------------------------------- /cmd/crash/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/proc.c -------------------------------------------------------------------------------- /cmd/crash/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/pty.c -------------------------------------------------------------------------------- /cmd/crash/rfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/rfs.c -------------------------------------------------------------------------------- /cmd/crash/rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/rt.c -------------------------------------------------------------------------------- /cmd/crash/size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/size.c -------------------------------------------------------------------------------- /cmd/crash/snode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/snode.c -------------------------------------------------------------------------------- /cmd/crash/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/stat.c -------------------------------------------------------------------------------- /cmd/crash/ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/ts.c -------------------------------------------------------------------------------- /cmd/crash/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/tty.c -------------------------------------------------------------------------------- /cmd/crash/u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/u.c -------------------------------------------------------------------------------- /cmd/crash/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/util.c -------------------------------------------------------------------------------- /cmd/crash/var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/var.c -------------------------------------------------------------------------------- /cmd/crash/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/vfs.c -------------------------------------------------------------------------------- /cmd/crash/vfssw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/vfssw.c -------------------------------------------------------------------------------- /cmd/crash/vtop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/crash/vtop.c -------------------------------------------------------------------------------- /cmd/cron/at.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cron/at.c -------------------------------------------------------------------------------- /cmd/cron/atq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cron/atq.c -------------------------------------------------------------------------------- /cmd/cron/atrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cron/atrm.c -------------------------------------------------------------------------------- /cmd/cron/att1.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cron/att1.y -------------------------------------------------------------------------------- /cmd/cron/att2.ed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cron/att2.ed -------------------------------------------------------------------------------- /cmd/cron/att2.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cron/att2.l -------------------------------------------------------------------------------- /cmd/cron/batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cron/batch.sh -------------------------------------------------------------------------------- /cmd/cron/cron.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cron/cron.c -------------------------------------------------------------------------------- /cmd/cron/cron.dfl: -------------------------------------------------------------------------------- 1 | CRONLOG=YES 2 | -------------------------------------------------------------------------------- /cmd/cron/cron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cron/cron.h -------------------------------------------------------------------------------- /cmd/cron/cron.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cron/cron.mk -------------------------------------------------------------------------------- /cmd/cron/elm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cron/elm.c -------------------------------------------------------------------------------- /cmd/cron/funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cron/funcs.c -------------------------------------------------------------------------------- /cmd/cron/permit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cron/permit.c -------------------------------------------------------------------------------- /cmd/csh/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/alloc.c -------------------------------------------------------------------------------- /cmd/csh/bcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/bcopy.c -------------------------------------------------------------------------------- /cmd/csh/bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/bzero.c -------------------------------------------------------------------------------- /cmd/csh/csh.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/csh.mk -------------------------------------------------------------------------------- /cmd/csh/dir2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/dir2.h -------------------------------------------------------------------------------- /cmd/csh/getwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/getwd.c -------------------------------------------------------------------------------- /cmd/csh/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/index.c -------------------------------------------------------------------------------- /cmd/csh/killpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/killpg.c -------------------------------------------------------------------------------- /cmd/csh/owait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/owait.h -------------------------------------------------------------------------------- /cmd/csh/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/param.h -------------------------------------------------------------------------------- /cmd/csh/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/printf.c -------------------------------------------------------------------------------- /cmd/csh/rindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/rindex.c -------------------------------------------------------------------------------- /cmd/csh/setjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/setjmp.c -------------------------------------------------------------------------------- /cmd/csh/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/setjmp.h -------------------------------------------------------------------------------- /cmd/csh/setpgrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/setpgrp.c -------------------------------------------------------------------------------- /cmd/csh/sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.c -------------------------------------------------------------------------------- /cmd/csh/sh.char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.char.c -------------------------------------------------------------------------------- /cmd/csh/sh.char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.char.h -------------------------------------------------------------------------------- /cmd/csh/sh.dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.dir.c -------------------------------------------------------------------------------- /cmd/csh/sh.dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.dir.h -------------------------------------------------------------------------------- /cmd/csh/sh.dol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.dol.c -------------------------------------------------------------------------------- /cmd/csh/sh.err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.err.c -------------------------------------------------------------------------------- /cmd/csh/sh.exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.exec.c -------------------------------------------------------------------------------- /cmd/csh/sh.exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.exp.c -------------------------------------------------------------------------------- /cmd/csh/sh.file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.file.c -------------------------------------------------------------------------------- /cmd/csh/sh.func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.func.c -------------------------------------------------------------------------------- /cmd/csh/sh.glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.glob.c -------------------------------------------------------------------------------- /cmd/csh/sh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.h -------------------------------------------------------------------------------- /cmd/csh/sh.hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.hist.c -------------------------------------------------------------------------------- /cmd/csh/sh.init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.init.c -------------------------------------------------------------------------------- /cmd/csh/sh.lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.lex.c -------------------------------------------------------------------------------- /cmd/csh/sh.misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.misc.c -------------------------------------------------------------------------------- /cmd/csh/sh.proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.proc.c -------------------------------------------------------------------------------- /cmd/csh/sh.proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.proc.h -------------------------------------------------------------------------------- /cmd/csh/sh.sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.sem.c -------------------------------------------------------------------------------- /cmd/csh/sh.set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.set.c -------------------------------------------------------------------------------- /cmd/csh/sh.time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/sh.time.c -------------------------------------------------------------------------------- /cmd/csh/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/signal.c -------------------------------------------------------------------------------- /cmd/csh/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/signal.h -------------------------------------------------------------------------------- /cmd/csh/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/stubs.c -------------------------------------------------------------------------------- /cmd/csh/vfork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/vfork.h -------------------------------------------------------------------------------- /cmd/csh/wait3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/csh/wait3.c -------------------------------------------------------------------------------- /cmd/ctrace/ctcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ctrace/ctcr -------------------------------------------------------------------------------- /cmd/ctrace/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ctrace/main.c -------------------------------------------------------------------------------- /cmd/cut/cut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cut/cut.c -------------------------------------------------------------------------------- /cmd/cut/cut.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cut/cut.mk -------------------------------------------------------------------------------- /cmd/cxref/cxref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cxref/cxref.c -------------------------------------------------------------------------------- /cmd/cxref/cxref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cxref/cxref.h -------------------------------------------------------------------------------- /cmd/cxref/st.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/cxref/st.c -------------------------------------------------------------------------------- /cmd/date/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/date/date.c -------------------------------------------------------------------------------- /cmd/date/date.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/date/date.mk -------------------------------------------------------------------------------- /cmd/dc/dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/dc/dc.c -------------------------------------------------------------------------------- /cmd/dc/dc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/dc/dc.h -------------------------------------------------------------------------------- /cmd/dc/dc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/dc/dc.mk -------------------------------------------------------------------------------- /cmd/dd/dd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/dd/dd.c -------------------------------------------------------------------------------- /cmd/dd/dd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/dd/dd.mk -------------------------------------------------------------------------------- /cmd/dfsck/dfsck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/dfsck/dfsck.c -------------------------------------------------------------------------------- /cmd/diff/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/diff/diff.c -------------------------------------------------------------------------------- /cmd/diff/diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/diff/diff.h -------------------------------------------------------------------------------- /cmd/diff/diff.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/diff/diff.mk -------------------------------------------------------------------------------- /cmd/diff/diffh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/diff/diffh.c -------------------------------------------------------------------------------- /cmd/dname/dname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/dname/dname.c -------------------------------------------------------------------------------- /cmd/du/du.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/du/du.c -------------------------------------------------------------------------------- /cmd/du/du.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/du/du.mk -------------------------------------------------------------------------------- /cmd/echo/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/echo/echo.c -------------------------------------------------------------------------------- /cmd/echo/echo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/echo/echo.mk -------------------------------------------------------------------------------- /cmd/ed/ed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ed/ed.c -------------------------------------------------------------------------------- /cmd/ed/ed.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ed/ed.mk -------------------------------------------------------------------------------- /cmd/egrep/egrep.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/egrep/egrep.y -------------------------------------------------------------------------------- /cmd/env/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/env/env.c -------------------------------------------------------------------------------- /cmd/env/env.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/env/env.mk -------------------------------------------------------------------------------- /cmd/expr/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/expr/expr.c -------------------------------------------------------------------------------- /cmd/expr/expr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/expr/expr.mk -------------------------------------------------------------------------------- /cmd/exstr/exstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/exstr/exstr.c -------------------------------------------------------------------------------- /cmd/face/HELP/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/face/HELP/run -------------------------------------------------------------------------------- /cmd/face/face.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/face/face.mk -------------------------------------------------------------------------------- /cmd/face/src/filecab/standard/WASTEBASKET/.pref: -------------------------------------------------------------------------------- 1 | DISPMODE=10 2 | HELP=T.h55.waste 3 | -------------------------------------------------------------------------------- /cmd/face/src/filecab/standard/pref/.variables: -------------------------------------------------------------------------------- 1 | EDITOR=vi 2 | PS1=UNIX: 3 | sendwait= 4 | -------------------------------------------------------------------------------- /cmd/fgrep/fgrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fgrep/fgrep.c -------------------------------------------------------------------------------- /cmd/file/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/file/file.c -------------------------------------------------------------------------------- /cmd/file/file.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/file/file.mk -------------------------------------------------------------------------------- /cmd/file/magic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/file/magic -------------------------------------------------------------------------------- /cmd/find/find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/find/find.c -------------------------------------------------------------------------------- /cmd/find/find.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/find/find.mk -------------------------------------------------------------------------------- /cmd/fmli/fmli.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmli/fmli.mk -------------------------------------------------------------------------------- /cmd/fmli/inc/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmli/inc/io.h -------------------------------------------------------------------------------- /cmd/fmli/inc/vt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmli/inc/vt.h -------------------------------------------------------------------------------- /cmd/fmli/install/Name: -------------------------------------------------------------------------------- 1 | #ident "@(#)fmli:install/Name 1.1" 2 | FMLI Version 1.2 3 | -------------------------------------------------------------------------------- /cmd/fmli/oh/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmli/oh/cmd.c -------------------------------------------------------------------------------- /cmd/fmli/oh/oh.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmli/oh/oh.mk -------------------------------------------------------------------------------- /cmd/fmli/oh/slk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmli/oh/slk.c -------------------------------------------------------------------------------- /cmd/fmli/sys/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmli/sys/io.c -------------------------------------------------------------------------------- /cmd/fmli/vt/lp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmli/vt/lp.c -------------------------------------------------------------------------------- /cmd/fmli/vt/vt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmli/vt/vt.mk -------------------------------------------------------------------------------- /cmd/fmli/vt/wgo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmli/vt/wgo.c -------------------------------------------------------------------------------- /cmd/fmli/xx/xx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmli/xx/xx.mk -------------------------------------------------------------------------------- /cmd/fmt/fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmt/fmt.c -------------------------------------------------------------------------------- /cmd/fmt/fmt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmt/fmt.mk -------------------------------------------------------------------------------- /cmd/fmt/hdr/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmt/hdr/def.h -------------------------------------------------------------------------------- /cmd/fmt/hdr/rcv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmt/hdr/rcv.h -------------------------------------------------------------------------------- /cmd/fmt/head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmt/head.c -------------------------------------------------------------------------------- /cmd/fmtmsg/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fmtmsg/main.c -------------------------------------------------------------------------------- /cmd/fold/fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fold/fold.c -------------------------------------------------------------------------------- /cmd/fold/fold.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fold/fold.mk -------------------------------------------------------------------------------- /cmd/fs.d/df.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fs.d/df.c -------------------------------------------------------------------------------- /cmd/fs.d/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fs.d/ff.c -------------------------------------------------------------------------------- /cmd/fs.d/fs.d.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fs.d/fs.d.mk -------------------------------------------------------------------------------- /cmd/fs.d/fsck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fs.d/fsck.c -------------------------------------------------------------------------------- /cmd/fs.d/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fs.d/mount.c -------------------------------------------------------------------------------- /cmd/fs.d/ncheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fs.d/ncheck.c -------------------------------------------------------------------------------- /cmd/fs.d/s5/df.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fs.d/s5/df.c -------------------------------------------------------------------------------- /cmd/fs.d/s5/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fs.d/s5/ff.c -------------------------------------------------------------------------------- /cmd/fs.d/s5/s5.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fs.d/s5/s5.mk -------------------------------------------------------------------------------- /cmd/fs.d/umount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fs.d/umount.c -------------------------------------------------------------------------------- /cmd/fsba/fsba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fsba/fsba.c -------------------------------------------------------------------------------- /cmd/fsba/fsba.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fsba/fsba.mk -------------------------------------------------------------------------------- /cmd/fuser/fuser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/fuser/fuser.c -------------------------------------------------------------------------------- /cmd/gcore/gcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/gcore/gcore.c -------------------------------------------------------------------------------- /cmd/getty/getty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/getty/getty.c -------------------------------------------------------------------------------- /cmd/graph/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/graph/graph.c -------------------------------------------------------------------------------- /cmd/grep/grep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/grep/grep.c -------------------------------------------------------------------------------- /cmd/grep/grep.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/grep/grep.mk -------------------------------------------------------------------------------- /cmd/grpck/grpck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/grpck/grpck.c -------------------------------------------------------------------------------- /cmd/hd/hd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/hd/hd.c -------------------------------------------------------------------------------- /cmd/hd/hd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/hd/hd.mk -------------------------------------------------------------------------------- /cmd/head/head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/head/head.c -------------------------------------------------------------------------------- /cmd/head/head.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/head/head.mk -------------------------------------------------------------------------------- /cmd/iconv/gram.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/iconv/gram.y -------------------------------------------------------------------------------- /cmd/iconv/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/iconv/iconv.c -------------------------------------------------------------------------------- /cmd/iconv/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/iconv/iconv.h -------------------------------------------------------------------------------- /cmd/iconv/kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/iconv/kbd.h -------------------------------------------------------------------------------- /cmd/iconv/lexan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/iconv/lexan.c -------------------------------------------------------------------------------- /cmd/iconv/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/iconv/main.c -------------------------------------------------------------------------------- /cmd/iconv/reach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/iconv/reach.c -------------------------------------------------------------------------------- /cmd/iconv/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/iconv/sort.c -------------------------------------------------------------------------------- /cmd/iconv/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/iconv/sym.c -------------------------------------------------------------------------------- /cmd/iconv/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/iconv/tree.c -------------------------------------------------------------------------------- /cmd/id/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/id/id.c -------------------------------------------------------------------------------- /cmd/id/id.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/id/id.mk -------------------------------------------------------------------------------- /cmd/idcmd/idbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/idcmd/idbuild -------------------------------------------------------------------------------- /cmd/idcmd/idtune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/idcmd/idtune -------------------------------------------------------------------------------- /cmd/idcmd/idval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/idcmd/idval.c -------------------------------------------------------------------------------- /cmd/idcmd/inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/idcmd/inst.h -------------------------------------------------------------------------------- /cmd/init/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/init/init.c -------------------------------------------------------------------------------- /cmd/init/init.dfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/init/init.dfl -------------------------------------------------------------------------------- /cmd/init/init.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/init/init.mk -------------------------------------------------------------------------------- /cmd/initpkg/dump.dfl: -------------------------------------------------------------------------------- 1 | TIME=60 2 | -------------------------------------------------------------------------------- /cmd/ipc/ipc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ipc/ipc.mk -------------------------------------------------------------------------------- /cmd/ipc/ipcrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ipc/ipcrm.c -------------------------------------------------------------------------------- /cmd/ipc/ipcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ipc/ipcs.c -------------------------------------------------------------------------------- /cmd/join/join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/join/join.c -------------------------------------------------------------------------------- /cmd/join/join.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/join/join.mk -------------------------------------------------------------------------------- /cmd/keyserv/gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/keyserv/gcd.c -------------------------------------------------------------------------------- /cmd/keyserv/mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/keyserv/mp.h -------------------------------------------------------------------------------- /cmd/keyserv/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/keyserv/pow.c -------------------------------------------------------------------------------- /cmd/kill/kill.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/kill/kill.mk -------------------------------------------------------------------------------- /cmd/ksh/ksh.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/ksh.mk -------------------------------------------------------------------------------- /cmd/ksh/sh/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/sh/args.c -------------------------------------------------------------------------------- /cmd/ksh/sh/blok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/sh/blok.c -------------------------------------------------------------------------------- /cmd/ksh/sh/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/sh/cmd.c -------------------------------------------------------------------------------- /cmd/ksh/sh/defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/sh/defs.c -------------------------------------------------------------------------------- /cmd/ksh/sh/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/sh/echo.c -------------------------------------------------------------------------------- /cmd/ksh/sh/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/sh/edit.c -------------------------------------------------------------------------------- /cmd/ksh/sh/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/sh/io.c -------------------------------------------------------------------------------- /cmd/ksh/sh/jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/sh/jobs.c -------------------------------------------------------------------------------- /cmd/ksh/sh/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/sh/main.c -------------------------------------------------------------------------------- /cmd/ksh/sh/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/sh/msg.c -------------------------------------------------------------------------------- /cmd/ksh/sh/name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/sh/name.c -------------------------------------------------------------------------------- /cmd/ksh/sh/stak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/sh/stak.c -------------------------------------------------------------------------------- /cmd/ksh/sh/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/sh/test.c -------------------------------------------------------------------------------- /cmd/ksh/sh/vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/sh/vi.c -------------------------------------------------------------------------------- /cmd/ksh/sh/word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/sh/word.c -------------------------------------------------------------------------------- /cmd/ksh/sh/xec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ksh/sh/xec.c -------------------------------------------------------------------------------- /cmd/last/last.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/last/last.c -------------------------------------------------------------------------------- /cmd/last/last.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/last/last.mk -------------------------------------------------------------------------------- /cmd/layers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/layers/README -------------------------------------------------------------------------------- /cmd/layers/xts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/layers/xts.c -------------------------------------------------------------------------------- /cmd/layers/xtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/layers/xtt.c -------------------------------------------------------------------------------- /cmd/ldd/ldd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ldd/ldd.c -------------------------------------------------------------------------------- /cmd/ldd/ldd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ldd/ldd.mk -------------------------------------------------------------------------------- /cmd/line/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/line/line.c -------------------------------------------------------------------------------- /cmd/line/line.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/line/line.mk -------------------------------------------------------------------------------- /cmd/link/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/link/link.c -------------------------------------------------------------------------------- /cmd/link/link.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/link/link.mk -------------------------------------------------------------------------------- /cmd/login/login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/login/login.c -------------------------------------------------------------------------------- /cmd/login/rcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/login/rcmd.c -------------------------------------------------------------------------------- /cmd/lp/cmd/comb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/lp/cmd/comb.c -------------------------------------------------------------------------------- /cmd/lp/cmd/lp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/lp/cmd/lp.c -------------------------------------------------------------------------------- /cmd/lp/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/lp/common.mk -------------------------------------------------------------------------------- /cmd/lp/crontab/lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/lp/crontab/lp -------------------------------------------------------------------------------- /cmd/lp/etc/lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/lp/etc/lp -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/AB.name: -------------------------------------------------------------------------------- 1 | AvantGarde-Demi 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/AI.name: -------------------------------------------------------------------------------- 1 | AvantGarde-BookOblique 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/AR.name: -------------------------------------------------------------------------------- 1 | AvantGarde-Book 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/AX.name: -------------------------------------------------------------------------------- 1 | AvantGarde-DemiOblique 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/B.name: -------------------------------------------------------------------------------- 1 | Times-Bold 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/BI.name: -------------------------------------------------------------------------------- 1 | Times-BoldItalic 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/CB.name: -------------------------------------------------------------------------------- 1 | Courier-Bold 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/CI.name: -------------------------------------------------------------------------------- 1 | Courier-Oblique 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/CO.name: -------------------------------------------------------------------------------- 1 | Courier 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/CW.name: -------------------------------------------------------------------------------- 1 | Courier 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/CX.name: -------------------------------------------------------------------------------- 1 | Courier-BoldOblique 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/GR.name: -------------------------------------------------------------------------------- 1 | Symbol 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/H.name: -------------------------------------------------------------------------------- 1 | Helvetica 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/HB.name: -------------------------------------------------------------------------------- 1 | Helvetica-Bold 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/HI.name: -------------------------------------------------------------------------------- 1 | Helvetica-Oblique 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/HX.name: -------------------------------------------------------------------------------- 1 | Helvetica-BoldOblique 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/Hb.name: -------------------------------------------------------------------------------- 1 | Helvetica-Narrow-Bold 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/Hi.name: -------------------------------------------------------------------------------- 1 | Helvetica-Narrow-Oblique 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/Hr.name: -------------------------------------------------------------------------------- 1 | Helvetica-Narrow 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/Hx.name: -------------------------------------------------------------------------------- 1 | Helvetica-Narrow-BoldOblique 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/I.name: -------------------------------------------------------------------------------- 1 | Times-Italic 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/KB.name: -------------------------------------------------------------------------------- 1 | Bookman-Demi 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/KI.name: -------------------------------------------------------------------------------- 1 | Bookman-LightItalic 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/KR.name: -------------------------------------------------------------------------------- 1 | Bookman-Light 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/KX.name: -------------------------------------------------------------------------------- 1 | Bookman-DemiItalic 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/NB.name: -------------------------------------------------------------------------------- 1 | NewCenturySchlbk-Bold 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/NI.name: -------------------------------------------------------------------------------- 1 | NewCenturySchlbk-Italic 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/NR.name: -------------------------------------------------------------------------------- 1 | NewCenturySchlbk-Roman 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/NX.name: -------------------------------------------------------------------------------- 1 | NewCenturySchlbk-BoldItalic 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/PA.name: -------------------------------------------------------------------------------- 1 | Palatino-Roman 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/PB.name: -------------------------------------------------------------------------------- 1 | Palatino-Bold 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/PI.name: -------------------------------------------------------------------------------- 1 | Palatino-Italic 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/PX.name: -------------------------------------------------------------------------------- 1 | Palatino-BoldItalic 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/R.name: -------------------------------------------------------------------------------- 1 | Times-Roman 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/S.name: -------------------------------------------------------------------------------- 1 | Symbol 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/S1.name: -------------------------------------------------------------------------------- 1 | Times-Roman 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/VB.name: -------------------------------------------------------------------------------- 1 | Varitimes#Bold 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/VI.name: -------------------------------------------------------------------------------- 1 | Varitimes#Italic 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/VR.name: -------------------------------------------------------------------------------- 1 | Varitimes#Roman 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/VX.name: -------------------------------------------------------------------------------- 1 | Varitimes#BoldItalic 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/ZD.name: -------------------------------------------------------------------------------- 1 | ZapfDingbats 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/font/devpost/ZI.name: -------------------------------------------------------------------------------- 1 | ZapfChancery-MediumItalic 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/macros/tmac.color: -------------------------------------------------------------------------------- 1 | .so /usr/lib/macros/color 2 | -------------------------------------------------------------------------------- /cmd/lp/filter/postscript/macros/tmac.pictures: -------------------------------------------------------------------------------- 1 | .so /usr/lib/macros/pictures 2 | -------------------------------------------------------------------------------- /cmd/lp/lp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/lp/lp.mk -------------------------------------------------------------------------------- /cmd/ls/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ls/ls.c -------------------------------------------------------------------------------- /cmd/ls/ls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ls/ls.mk -------------------------------------------------------------------------------- /cmd/mail/Dout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/Dout.c -------------------------------------------------------------------------------- /cmd/mail/Tout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/Tout.c -------------------------------------------------------------------------------- /cmd/mail/alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/alias.c -------------------------------------------------------------------------------- /cmd/mail/binarsys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/binarsys -------------------------------------------------------------------------------- /cmd/mail/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/cat.c -------------------------------------------------------------------------------- /cmd/mail/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/config.c -------------------------------------------------------------------------------- /cmd/mail/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/config.h -------------------------------------------------------------------------------- /cmd/mail/copymt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/copymt.c -------------------------------------------------------------------------------- /cmd/mail/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/delete.c -------------------------------------------------------------------------------- /cmd/mail/doFopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/doFopt.c -------------------------------------------------------------------------------- /cmd/mail/done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/done.c -------------------------------------------------------------------------------- /cmd/mail/doopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/doopen.c -------------------------------------------------------------------------------- /cmd/mail/errmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/errmsg.c -------------------------------------------------------------------------------- /cmd/mail/getarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/getarg.c -------------------------------------------------------------------------------- /cmd/mail/goback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/goback.c -------------------------------------------------------------------------------- /cmd/mail/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/init.c -------------------------------------------------------------------------------- /cmd/mail/isit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/isit.c -------------------------------------------------------------------------------- /cmd/mail/istext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/istext.c -------------------------------------------------------------------------------- /cmd/mail/legal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/legal.c -------------------------------------------------------------------------------- /cmd/mail/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/lock.c -------------------------------------------------------------------------------- /cmd/mail/maid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/maid.c -------------------------------------------------------------------------------- /cmd/mail/mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/mail.h -------------------------------------------------------------------------------- /cmd/mail/mail.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/mail.mk -------------------------------------------------------------------------------- /cmd/mail/mailsurr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/mailsurr -------------------------------------------------------------------------------- /cmd/mail/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/main.c -------------------------------------------------------------------------------- /cmd/mail/mkdead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/mkdead.c -------------------------------------------------------------------------------- /cmd/mail/notme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/notme.c -------------------------------------------------------------------------------- /cmd/mail/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/parse.c -------------------------------------------------------------------------------- /cmd/mail/pmkid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/pmkid -------------------------------------------------------------------------------- /cmd/mail/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/send.c -------------------------------------------------------------------------------- /cmd/mail/setsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/setsig.c -------------------------------------------------------------------------------- /cmd/mail/stamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/stamp.c -------------------------------------------------------------------------------- /cmd/mail/substr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/substr.c -------------------------------------------------------------------------------- /cmd/mail/tokdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/tokdef.c -------------------------------------------------------------------------------- /cmd/mail/trimnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mail/trimnl.c -------------------------------------------------------------------------------- /cmd/mailx/aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/aux.c -------------------------------------------------------------------------------- /cmd/mailx/cmd1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/cmd1.c -------------------------------------------------------------------------------- /cmd/mailx/cmd2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/cmd2.c -------------------------------------------------------------------------------- /cmd/mailx/cmd3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/cmd3.c -------------------------------------------------------------------------------- /cmd/mailx/cmd4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/cmd4.c -------------------------------------------------------------------------------- /cmd/mailx/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/edit.c -------------------------------------------------------------------------------- /cmd/mailx/fio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/fio.c -------------------------------------------------------------------------------- /cmd/mailx/head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/head.c -------------------------------------------------------------------------------- /cmd/mailx/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/init.c -------------------------------------------------------------------------------- /cmd/mailx/is.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/is.c -------------------------------------------------------------------------------- /cmd/mailx/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/lex.c -------------------------------------------------------------------------------- /cmd/mailx/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/list.c -------------------------------------------------------------------------------- /cmd/mailx/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/lock.c -------------------------------------------------------------------------------- /cmd/mailx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/main.c -------------------------------------------------------------------------------- /cmd/mailx/names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/names.c -------------------------------------------------------------------------------- /cmd/mailx/optim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/optim.c -------------------------------------------------------------------------------- /cmd/mailx/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/popen.c -------------------------------------------------------------------------------- /cmd/mailx/quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/quit.c -------------------------------------------------------------------------------- /cmd/mailx/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/send.c -------------------------------------------------------------------------------- /cmd/mailx/temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/temp.c -------------------------------------------------------------------------------- /cmd/mailx/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/tty.c -------------------------------------------------------------------------------- /cmd/mailx/vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mailx/vars.c -------------------------------------------------------------------------------- /cmd/make/bu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/make/bu -------------------------------------------------------------------------------- /cmd/make/defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/make/defs -------------------------------------------------------------------------------- /cmd/make/doname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/make/doname.c -------------------------------------------------------------------------------- /cmd/make/dosys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/make/dosys.c -------------------------------------------------------------------------------- /cmd/make/dyndep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/make/dyndep.c -------------------------------------------------------------------------------- /cmd/make/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/make/files.c -------------------------------------------------------------------------------- /cmd/make/gram.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/make/gram.y -------------------------------------------------------------------------------- /cmd/make/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/make/main.c -------------------------------------------------------------------------------- /cmd/make/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/make/make.mk -------------------------------------------------------------------------------- /cmd/make/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/make/misc.c -------------------------------------------------------------------------------- /cmd/make/perror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/make/perror.c -------------------------------------------------------------------------------- /cmd/make/prtmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/make/prtmem.c -------------------------------------------------------------------------------- /cmd/make/rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/make/rules.c -------------------------------------------------------------------------------- /cmd/mesg/mesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mesg/mesg.c -------------------------------------------------------------------------------- /cmd/mesg/mesg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mesg/mesg.mk -------------------------------------------------------------------------------- /cmd/mkdir/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mkdir/mkdir.c -------------------------------------------------------------------------------- /cmd/mknod/mknod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mknod/mknod.c -------------------------------------------------------------------------------- /cmd/mkpart/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mkpart/scan.c -------------------------------------------------------------------------------- /cmd/more/more.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/more/more.c -------------------------------------------------------------------------------- /cmd/more/more.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/more/more.mk -------------------------------------------------------------------------------- /cmd/mv/mv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mv/mv.c -------------------------------------------------------------------------------- /cmd/mv/mv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/mv/mv.mk -------------------------------------------------------------------------------- /cmd/news/news.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/news/news.c -------------------------------------------------------------------------------- /cmd/news/news.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/news/news.mk -------------------------------------------------------------------------------- /cmd/nice/nice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/nice/nice.c -------------------------------------------------------------------------------- /cmd/nice/nice.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/nice/nice.mk -------------------------------------------------------------------------------- /cmd/nl/nl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/nl/nl.c -------------------------------------------------------------------------------- /cmd/nl/nl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/nl/nl.mk -------------------------------------------------------------------------------- /cmd/nohup/nohup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/nohup/nohup.c -------------------------------------------------------------------------------- /cmd/nserve/nsdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/nserve/nsdb.c -------------------------------------------------------------------------------- /cmd/nserve/nsdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/nserve/nsdb.h -------------------------------------------------------------------------------- /cmd/oawk/EXPLAIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/oawk/EXPLAIN -------------------------------------------------------------------------------- /cmd/oawk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/oawk/README -------------------------------------------------------------------------------- /cmd/oawk/awk.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/oawk/awk.def -------------------------------------------------------------------------------- /cmd/oawk/awk.g.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/oawk/awk.g.y -------------------------------------------------------------------------------- /cmd/oawk/awk.lx.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/oawk/awk.lx.l -------------------------------------------------------------------------------- /cmd/oawk/b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/oawk/b.c -------------------------------------------------------------------------------- /cmd/oawk/freeze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/oawk/freeze.c -------------------------------------------------------------------------------- /cmd/oawk/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/oawk/lib.c -------------------------------------------------------------------------------- /cmd/oawk/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/oawk/main.c -------------------------------------------------------------------------------- /cmd/oawk/oawk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/oawk/oawk.mk -------------------------------------------------------------------------------- /cmd/oawk/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/oawk/parse.c -------------------------------------------------------------------------------- /cmd/oawk/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/oawk/proc.c -------------------------------------------------------------------------------- /cmd/oawk/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/oawk/run.c -------------------------------------------------------------------------------- /cmd/oawk/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/oawk/token.c -------------------------------------------------------------------------------- /cmd/oawk/tran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/oawk/tran.c -------------------------------------------------------------------------------- /cmd/od/od.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/od/od.c -------------------------------------------------------------------------------- /cmd/od/od.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/od/od.mk -------------------------------------------------------------------------------- /cmd/pack/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/pack/pack.c -------------------------------------------------------------------------------- /cmd/pack/pack.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/pack/pack.mk -------------------------------------------------------------------------------- /cmd/paste/paste.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/paste/paste.c -------------------------------------------------------------------------------- /cmd/pg/pg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/pg/pg.c -------------------------------------------------------------------------------- /cmd/pg/pg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/pg/pg.mk -------------------------------------------------------------------------------- /cmd/portmgmt/Help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/portmgmt/Help -------------------------------------------------------------------------------- /cmd/pr/pr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/pr/pr.c -------------------------------------------------------------------------------- /cmd/pr/pr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/pr/pr.mk -------------------------------------------------------------------------------- /cmd/prof/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/prof/prof.c -------------------------------------------------------------------------------- /cmd/prof/prof.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/prof/prof.mk -------------------------------------------------------------------------------- /cmd/ps/ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ps/ps.c -------------------------------------------------------------------------------- /cmd/ps/ps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ps/ps.mk -------------------------------------------------------------------------------- /cmd/pwck/pwck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/pwck/pwck.c -------------------------------------------------------------------------------- /cmd/pwck/pwck.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/pwck/pwck.mk -------------------------------------------------------------------------------- /cmd/pwd/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/pwd/pwd.c -------------------------------------------------------------------------------- /cmd/pwd/pwd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/pwd/pwd.mk -------------------------------------------------------------------------------- /cmd/rm/rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/rm/rm.c -------------------------------------------------------------------------------- /cmd/rm/rm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/rm/rm.mk -------------------------------------------------------------------------------- /cmd/rmdir/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/rmdir/rmdir.c -------------------------------------------------------------------------------- /cmd/rmount/fqn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/rmount/fqn.c -------------------------------------------------------------------------------- /cmd/rpcsvc/net_files/hosts: -------------------------------------------------------------------------------- 1 | #ident "@(#)rpcsvc:net_files/hosts 1.2" 2 | # RPC Hosts 3 | -------------------------------------------------------------------------------- /cmd/rpcsvc/net_files/netid: -------------------------------------------------------------------------------- 1 | # Netid database 2 | #ident "@(#)rpcsvc:net_files/netid 1.1" 3 | -------------------------------------------------------------------------------- /cmd/sa/perf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sa/perf.sh -------------------------------------------------------------------------------- /cmd/sa/sa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sa/sa.h -------------------------------------------------------------------------------- /cmd/sa/sa.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sa/sa.mk -------------------------------------------------------------------------------- /cmd/sa/sa1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sa/sa1.sh -------------------------------------------------------------------------------- /cmd/sa/sa2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sa/sa2.sh -------------------------------------------------------------------------------- /cmd/sa/sadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sa/sadc.c -------------------------------------------------------------------------------- /cmd/sa/sadp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sa/sadp.c -------------------------------------------------------------------------------- /cmd/sa/saga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sa/saga.c -------------------------------------------------------------------------------- /cmd/sa/sagb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sa/sagb.c -------------------------------------------------------------------------------- /cmd/sa/saghdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sa/saghdr.h -------------------------------------------------------------------------------- /cmd/sa/sar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sa/sar.c -------------------------------------------------------------------------------- /cmd/sa/sys/pdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sa/sys/pdi.h -------------------------------------------------------------------------------- /cmd/sa/sys/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sa/sys/scsi.h -------------------------------------------------------------------------------- /cmd/sa/sys/sd01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sa/sys/sd01.h -------------------------------------------------------------------------------- /cmd/sa/sys/sdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sa/sys/sdi.h -------------------------------------------------------------------------------- /cmd/sa/timex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sa/timex.c -------------------------------------------------------------------------------- /cmd/saf/adm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/saf/adm.h -------------------------------------------------------------------------------- /cmd/saf/admutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/saf/admutil.c -------------------------------------------------------------------------------- /cmd/saf/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/saf/extern.h -------------------------------------------------------------------------------- /cmd/saf/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/saf/global.c -------------------------------------------------------------------------------- /cmd/saf/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/saf/log.c -------------------------------------------------------------------------------- /cmd/saf/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/saf/misc.c -------------------------------------------------------------------------------- /cmd/saf/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/saf/misc.h -------------------------------------------------------------------------------- /cmd/saf/msgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/saf/msgs.h -------------------------------------------------------------------------------- /cmd/saf/pmadm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/saf/pmadm.c -------------------------------------------------------------------------------- /cmd/saf/readtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/saf/readtab.c -------------------------------------------------------------------------------- /cmd/saf/sac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/saf/sac.c -------------------------------------------------------------------------------- /cmd/saf/sacadm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/saf/sacadm.c -------------------------------------------------------------------------------- /cmd/saf/saf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/saf/saf.mk -------------------------------------------------------------------------------- /cmd/saf/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/saf/structs.h -------------------------------------------------------------------------------- /cmd/saf/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/saf/util.c -------------------------------------------------------------------------------- /cmd/sccs/cmd/vc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sccs/cmd/vc.c -------------------------------------------------------------------------------- /cmd/sccs/sccs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sccs/sccs.mk -------------------------------------------------------------------------------- /cmd/sco/MS-DOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/MS-DOS.c -------------------------------------------------------------------------------- /cmd/sco/MS-DOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/MS-DOS.h -------------------------------------------------------------------------------- /cmd/sco/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/README -------------------------------------------------------------------------------- /cmd/sco/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/convert.c -------------------------------------------------------------------------------- /cmd/sco/deflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/deflt.c -------------------------------------------------------------------------------- /cmd/sco/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/defs.h -------------------------------------------------------------------------------- /cmd/sco/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/display.c -------------------------------------------------------------------------------- /cmd/sco/doscat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/doscat.c -------------------------------------------------------------------------------- /cmd/sco/doscp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/doscp.c -------------------------------------------------------------------------------- /cmd/sco/dosinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/dosinfo.c -------------------------------------------------------------------------------- /cmd/sco/dosls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/dosls.c -------------------------------------------------------------------------------- /cmd/sco/dosrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/dosrm.c -------------------------------------------------------------------------------- /cmd/sco/fatlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/fatlist.c -------------------------------------------------------------------------------- /cmd/sco/fdread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/fdread.c -------------------------------------------------------------------------------- /cmd/sco/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/ioctl.c -------------------------------------------------------------------------------- /cmd/sco/keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/keys -------------------------------------------------------------------------------- /cmd/sco/lex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/lex.l -------------------------------------------------------------------------------- /cmd/sco/locate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/locate.c -------------------------------------------------------------------------------- /cmd/sco/mapchan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/mapchan.c -------------------------------------------------------------------------------- /cmd/sco/mapio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/mapio.c -------------------------------------------------------------------------------- /cmd/sco/mapkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/mapkey.c -------------------------------------------------------------------------------- /cmd/sco/mapscrn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/mapscrn.c -------------------------------------------------------------------------------- /cmd/sco/mapstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/mapstr.c -------------------------------------------------------------------------------- /cmd/sco/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/mkdir.c -------------------------------------------------------------------------------- /cmd/sco/msdos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/msdos -------------------------------------------------------------------------------- /cmd/sco/oops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/oops.c -------------------------------------------------------------------------------- /cmd/sco/rm_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/rm_file.c -------------------------------------------------------------------------------- /cmd/sco/sco.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/sco.mk -------------------------------------------------------------------------------- /cmd/sco/scompat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/scompat.c -------------------------------------------------------------------------------- /cmd/sco/screens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/screens -------------------------------------------------------------------------------- /cmd/sco/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/strings -------------------------------------------------------------------------------- /cmd/sco/strupr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/strupr.c -------------------------------------------------------------------------------- /cmd/sco/trchan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/trchan.c -------------------------------------------------------------------------------- /cmd/sco/ud_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/ud_copy.c -------------------------------------------------------------------------------- /cmd/sco/uu_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/uu_copy.c -------------------------------------------------------------------------------- /cmd/sco/vidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sco/vidi.c -------------------------------------------------------------------------------- /cmd/sdb/cfront/scratch/__ctdt..c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/sdb/sdb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sdb/sdb.mk -------------------------------------------------------------------------------- /cmd/sdb/util/CC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sdb/util/CC -------------------------------------------------------------------------------- /cmd/sdiff/sdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sdiff/sdiff.c -------------------------------------------------------------------------------- /cmd/sed/sed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sed/sed.h -------------------------------------------------------------------------------- /cmd/sed/sed.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sed/sed.mk -------------------------------------------------------------------------------- /cmd/sed/sed0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sed/sed0.c -------------------------------------------------------------------------------- /cmd/sed/sed1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sed/sed1.c -------------------------------------------------------------------------------- /cmd/sgs/sgs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sgs/sgs.mk -------------------------------------------------------------------------------- /cmd/sgs/xenv/i386/i286: -------------------------------------------------------------------------------- 1 | exit 255 2 | -------------------------------------------------------------------------------- /cmd/sgs/xenv/i386/i386: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cmd/sgs/xenv/i386/u370: -------------------------------------------------------------------------------- 1 | exit 255 2 | -------------------------------------------------------------------------------- /cmd/sgs/xenv/i386/u3b: -------------------------------------------------------------------------------- 1 | exit 255 2 | -------------------------------------------------------------------------------- /cmd/sgs/xenv/i386/u3b15: -------------------------------------------------------------------------------- 1 | exit 255 2 | -------------------------------------------------------------------------------- /cmd/sgs/xenv/i386/u3b2: -------------------------------------------------------------------------------- 1 | exit 255 2 | -------------------------------------------------------------------------------- /cmd/sgs/xenv/i386/u3b5: -------------------------------------------------------------------------------- 1 | exit 255 2 | -------------------------------------------------------------------------------- /cmd/sgs/xenv/i386/uts: -------------------------------------------------------------------------------- 1 | exit 255 2 | -------------------------------------------------------------------------------- /cmd/sgs/xenv/i386/vax: -------------------------------------------------------------------------------- 1 | exit 255 2 | -------------------------------------------------------------------------------- /cmd/sh/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/args.c -------------------------------------------------------------------------------- /cmd/sh/blok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/blok.c -------------------------------------------------------------------------------- /cmd/sh/bltin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/bltin.c -------------------------------------------------------------------------------- /cmd/sh/brkincr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/brkincr.h -------------------------------------------------------------------------------- /cmd/sh/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/cmd.c -------------------------------------------------------------------------------- /cmd/sh/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/ctype.c -------------------------------------------------------------------------------- /cmd/sh/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/ctype.h -------------------------------------------------------------------------------- /cmd/sh/defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/defs.c -------------------------------------------------------------------------------- /cmd/sh/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/defs.h -------------------------------------------------------------------------------- /cmd/sh/dup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/dup.h -------------------------------------------------------------------------------- /cmd/sh/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/echo.c -------------------------------------------------------------------------------- /cmd/sh/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/error.c -------------------------------------------------------------------------------- /cmd/sh/expand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/expand.c -------------------------------------------------------------------------------- /cmd/sh/fault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/fault.c -------------------------------------------------------------------------------- /cmd/sh/func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/func.c -------------------------------------------------------------------------------- /cmd/sh/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/hash.c -------------------------------------------------------------------------------- /cmd/sh/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/hash.h -------------------------------------------------------------------------------- /cmd/sh/hashserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/hashserv.c -------------------------------------------------------------------------------- /cmd/sh/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/io.c -------------------------------------------------------------------------------- /cmd/sh/jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/jobs.c -------------------------------------------------------------------------------- /cmd/sh/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/mac.h -------------------------------------------------------------------------------- /cmd/sh/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/macro.c -------------------------------------------------------------------------------- /cmd/sh/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/main.c -------------------------------------------------------------------------------- /cmd/sh/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/mode.h -------------------------------------------------------------------------------- /cmd/sh/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/msg.c -------------------------------------------------------------------------------- /cmd/sh/name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/name.c -------------------------------------------------------------------------------- /cmd/sh/name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/name.h -------------------------------------------------------------------------------- /cmd/sh/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/print.c -------------------------------------------------------------------------------- /cmd/sh/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/profile.c -------------------------------------------------------------------------------- /cmd/sh/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/pwd.c -------------------------------------------------------------------------------- /cmd/sh/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/service.c -------------------------------------------------------------------------------- /cmd/sh/setbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/setbrk.c -------------------------------------------------------------------------------- /cmd/sh/sh.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/sh.mk -------------------------------------------------------------------------------- /cmd/sh/stak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/stak.c -------------------------------------------------------------------------------- /cmd/sh/stak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/stak.h -------------------------------------------------------------------------------- /cmd/sh/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/string.c -------------------------------------------------------------------------------- /cmd/sh/sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/sym.h -------------------------------------------------------------------------------- /cmd/sh/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/test.c -------------------------------------------------------------------------------- /cmd/sh/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/timeout.h -------------------------------------------------------------------------------- /cmd/sh/ulimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/ulimit.c -------------------------------------------------------------------------------- /cmd/sh/word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/word.c -------------------------------------------------------------------------------- /cmd/sh/xec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sh/xec.c -------------------------------------------------------------------------------- /cmd/shl/aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/shl/aux.c -------------------------------------------------------------------------------- /cmd/shl/defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/shl/defs.c -------------------------------------------------------------------------------- /cmd/shl/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/shl/defs.h -------------------------------------------------------------------------------- /cmd/shl/layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/shl/layer.c -------------------------------------------------------------------------------- /cmd/shl/lex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/shl/lex.l -------------------------------------------------------------------------------- /cmd/shl/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/shl/misc.c -------------------------------------------------------------------------------- /cmd/shl/mpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/shl/mpx.c -------------------------------------------------------------------------------- /cmd/shl/newmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/shl/newmain.c -------------------------------------------------------------------------------- /cmd/shl/shl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/shl/shl.mk -------------------------------------------------------------------------------- /cmd/shl/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/shl/signal.c -------------------------------------------------------------------------------- /cmd/shl/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/shl/stat.c -------------------------------------------------------------------------------- /cmd/shl/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/shl/system.c -------------------------------------------------------------------------------- /cmd/shl/yacc.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/shl/yacc.y -------------------------------------------------------------------------------- /cmd/sleep/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sleep/sleep.c -------------------------------------------------------------------------------- /cmd/sort/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sort/sort.c -------------------------------------------------------------------------------- /cmd/sort/sort.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sort/sort.mk -------------------------------------------------------------------------------- /cmd/spell/british: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/spell/british -------------------------------------------------------------------------------- /cmd/spell/extra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/spell/extra -------------------------------------------------------------------------------- /cmd/spell/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/spell/hash.c -------------------------------------------------------------------------------- /cmd/spell/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/spell/hash.h -------------------------------------------------------------------------------- /cmd/spell/huff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/spell/huff.c -------------------------------------------------------------------------------- /cmd/spell/huff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/spell/huff.h -------------------------------------------------------------------------------- /cmd/spell/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/spell/list -------------------------------------------------------------------------------- /cmd/spell/local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/spell/local -------------------------------------------------------------------------------- /cmd/spell/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/spell/stop -------------------------------------------------------------------------------- /cmd/split/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/split/split.c -------------------------------------------------------------------------------- /cmd/su/su.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/su/su.c -------------------------------------------------------------------------------- /cmd/su/su.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/su/su.mk -------------------------------------------------------------------------------- /cmd/sum/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sum/sum.c -------------------------------------------------------------------------------- /cmd/sum/sum.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sum/sum.mk -------------------------------------------------------------------------------- /cmd/swap/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/swap/swap.c -------------------------------------------------------------------------------- /cmd/swap/swap.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/swap/swap.mk -------------------------------------------------------------------------------- /cmd/sync/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sync/sync.c -------------------------------------------------------------------------------- /cmd/sync/sync.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/sync/sync.mk -------------------------------------------------------------------------------- /cmd/tabs/tabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tabs/tabs.c -------------------------------------------------------------------------------- /cmd/tabs/tabs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tabs/tabs.mk -------------------------------------------------------------------------------- /cmd/tail/tail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tail/tail.c -------------------------------------------------------------------------------- /cmd/tail/tail.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tail/tail.mk -------------------------------------------------------------------------------- /cmd/tar/tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tar/tar.c -------------------------------------------------------------------------------- /cmd/tar/tar.dfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tar/tar.dfl -------------------------------------------------------------------------------- /cmd/tar/tar.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tar/tar.mk -------------------------------------------------------------------------------- /cmd/tee/tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tee/tee.c -------------------------------------------------------------------------------- /cmd/tee/tee.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tee/tee.mk -------------------------------------------------------------------------------- /cmd/test/test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/test/test.mk -------------------------------------------------------------------------------- /cmd/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/test/test.sh -------------------------------------------------------------------------------- /cmd/time/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/time/time.c -------------------------------------------------------------------------------- /cmd/time/time.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/time/time.mk -------------------------------------------------------------------------------- /cmd/touch/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/touch/touch.c -------------------------------------------------------------------------------- /cmd/tplot/vplot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tplot/vplot.c -------------------------------------------------------------------------------- /cmd/tr/tr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tr/tr.c -------------------------------------------------------------------------------- /cmd/tr/tr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tr/tr.mk -------------------------------------------------------------------------------- /cmd/true/true.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/true/true.mk -------------------------------------------------------------------------------- /cmd/true/true.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/true/true.sh -------------------------------------------------------------------------------- /cmd/truss/codes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/truss/codes.c -------------------------------------------------------------------------------- /cmd/truss/ioc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/truss/ioc.h -------------------------------------------------------------------------------- /cmd/truss/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/truss/ipc.c -------------------------------------------------------------------------------- /cmd/truss/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/truss/main.c -------------------------------------------------------------------------------- /cmd/truss/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/truss/print.c -------------------------------------------------------------------------------- /cmd/truss/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/truss/print.h -------------------------------------------------------------------------------- /cmd/truss/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/truss/proto.h -------------------------------------------------------------------------------- /cmd/truss/xstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/truss/xstat.c -------------------------------------------------------------------------------- /cmd/tset/delays: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tset/delays -------------------------------------------------------------------------------- /cmd/tset/tset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tset/tset.c -------------------------------------------------------------------------------- /cmd/tset/tset.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tset/tset.mk -------------------------------------------------------------------------------- /cmd/tty/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tty/tty.c -------------------------------------------------------------------------------- /cmd/tty/tty.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/tty/tty.mk -------------------------------------------------------------------------------- /cmd/ttymon/stty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ttymon/stty.c -------------------------------------------------------------------------------- /cmd/ttymon/stty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ttymon/stty.h -------------------------------------------------------------------------------- /cmd/ttymon/uucp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/ttymon/uucp.h -------------------------------------------------------------------------------- /cmd/vi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/vi/README -------------------------------------------------------------------------------- /cmd/vi/port/asfix.c70: -------------------------------------------------------------------------------- 1 | g/\.rls/s//.ras/ 2 | w 3 | q 4 | -------------------------------------------------------------------------------- /cmd/vi/port/rofix: -------------------------------------------------------------------------------- 1 | g/^[ ]*\.data/s// .text/ 2 | w 3 | q 4 | -------------------------------------------------------------------------------- /cmd/vi/vi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/vi/vi.mk -------------------------------------------------------------------------------- /cmd/wc/wc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/wc/wc.c -------------------------------------------------------------------------------- /cmd/wc/wc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/wc/wc.mk -------------------------------------------------------------------------------- /cmd/who/who.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/who/who.c -------------------------------------------------------------------------------- /cmd/who/who.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/who/who.mk -------------------------------------------------------------------------------- /cmd/xrestore/restor.dfl: -------------------------------------------------------------------------------- 1 | archive=/dev/rfd0 2 | -------------------------------------------------------------------------------- /cmd/yes/yes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/yes/yes.c -------------------------------------------------------------------------------- /cmd/yes/yes.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/yes/yes.mk -------------------------------------------------------------------------------- /cmd/ypcmd/net_files/aliases: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/zic/asia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/zic/asia -------------------------------------------------------------------------------- /cmd/zic/europe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/zic/europe -------------------------------------------------------------------------------- /cmd/zic/zic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/zic/zic.c -------------------------------------------------------------------------------- /cmd/zic/zic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/cmd/zic/zic.mk -------------------------------------------------------------------------------- /head/a.out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/a.out.h -------------------------------------------------------------------------------- /head/agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/agent.h -------------------------------------------------------------------------------- /head/aouthdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/aouthdr.h -------------------------------------------------------------------------------- /head/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/ar.h -------------------------------------------------------------------------------- /head/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/assert.h -------------------------------------------------------------------------------- /head/bkrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/bkrs.h -------------------------------------------------------------------------------- /head/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/core.h -------------------------------------------------------------------------------- /head/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/cpio.h -------------------------------------------------------------------------------- /head/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/crypt.h -------------------------------------------------------------------------------- /head/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/ctype.h -------------------------------------------------------------------------------- /head/deflt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/deflt.h -------------------------------------------------------------------------------- /head/devmgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/devmgmt.h -------------------------------------------------------------------------------- /head/dial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/dial.h -------------------------------------------------------------------------------- /head/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/dirent.h -------------------------------------------------------------------------------- /head/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/dlfcn.h -------------------------------------------------------------------------------- /head/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/elf.h -------------------------------------------------------------------------------- /head/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/errno.h -------------------------------------------------------------------------------- /head/fatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/fatal.h -------------------------------------------------------------------------------- /head/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/fcntl.h -------------------------------------------------------------------------------- /head/filehdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/filehdr.h -------------------------------------------------------------------------------- /head/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/float.h -------------------------------------------------------------------------------- /head/fmtmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/fmtmsg.h -------------------------------------------------------------------------------- /head/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/ftw.h -------------------------------------------------------------------------------- /head/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/grp.h -------------------------------------------------------------------------------- /head/ieeefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/ieeefp.h -------------------------------------------------------------------------------- /head/lastlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/lastlog.h -------------------------------------------------------------------------------- /head/ldfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/ldfcn.h -------------------------------------------------------------------------------- /head/libelf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/libelf.h -------------------------------------------------------------------------------- /head/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/limits.h -------------------------------------------------------------------------------- /head/linenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/linenum.h -------------------------------------------------------------------------------- /head/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/link.h -------------------------------------------------------------------------------- /head/listen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/listen.h -------------------------------------------------------------------------------- /head/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/locale.h -------------------------------------------------------------------------------- /head/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/macros.h -------------------------------------------------------------------------------- /head/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/malloc.h -------------------------------------------------------------------------------- /head/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/math.h -------------------------------------------------------------------------------- /head/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/memory.h -------------------------------------------------------------------------------- /head/mnttab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/mnttab.h -------------------------------------------------------------------------------- /head/mon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/mon.h -------------------------------------------------------------------------------- /head/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/nan.h -------------------------------------------------------------------------------- /head/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/netdb.h -------------------------------------------------------------------------------- /head/netdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/netdir.h -------------------------------------------------------------------------------- /head/nlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/nlist.h -------------------------------------------------------------------------------- /head/nsaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/nsaddr.h -------------------------------------------------------------------------------- /head/nserve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/nserve.h -------------------------------------------------------------------------------- /head/pkgdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/pkgdev.h -------------------------------------------------------------------------------- /head/pkginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/pkginfo.h -------------------------------------------------------------------------------- /head/pkglocs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/pkglocs.h -------------------------------------------------------------------------------- /head/pn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/pn.h -------------------------------------------------------------------------------- /head/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/poll.h -------------------------------------------------------------------------------- /head/prof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/prof.h -------------------------------------------------------------------------------- /head/pw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/pw.h -------------------------------------------------------------------------------- /head/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/pwd.h -------------------------------------------------------------------------------- /head/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/regexp.h -------------------------------------------------------------------------------- /head/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/reloc.h -------------------------------------------------------------------------------- /head/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/resolv.h -------------------------------------------------------------------------------- /head/rje.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/rje.h -------------------------------------------------------------------------------- /head/rpc/mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/rpc/mp.h -------------------------------------------------------------------------------- /head/sac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/sac.h -------------------------------------------------------------------------------- /head/scnhdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/scnhdr.h -------------------------------------------------------------------------------- /head/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/search.h -------------------------------------------------------------------------------- /head/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/setjmp.h -------------------------------------------------------------------------------- /head/sgtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/sgtty.h -------------------------------------------------------------------------------- /head/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/shadow.h -------------------------------------------------------------------------------- /head/siginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/siginfo.h -------------------------------------------------------------------------------- /head/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/signal.h -------------------------------------------------------------------------------- /head/stand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/stand.h -------------------------------------------------------------------------------- /head/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/std.h -------------------------------------------------------------------------------- /head/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/stdarg.h -------------------------------------------------------------------------------- /head/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/stddef.h -------------------------------------------------------------------------------- /head/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/stdio.h -------------------------------------------------------------------------------- /head/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/stdlib.h -------------------------------------------------------------------------------- /head/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/string.h -------------------------------------------------------------------------------- /head/stropts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/stropts.h -------------------------------------------------------------------------------- /head/sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/sum.h -------------------------------------------------------------------------------- /head/syms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/syms.h -------------------------------------------------------------------------------- /head/sys.i286: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/sys.i286 -------------------------------------------------------------------------------- /head/sys.i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/sys.i386 -------------------------------------------------------------------------------- /head/sys.pdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/sys.pdp -------------------------------------------------------------------------------- /head/sys.u3b15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/sys.u3b15 -------------------------------------------------------------------------------- /head/sys.u3b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/sys.u3b5 -------------------------------------------------------------------------------- /head/sys.vax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/sys.vax -------------------------------------------------------------------------------- /head/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/sys/un.h -------------------------------------------------------------------------------- /head/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/syslog.h -------------------------------------------------------------------------------- /head/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/table.h -------------------------------------------------------------------------------- /head/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/tar.h -------------------------------------------------------------------------------- /head/termio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/termio.h -------------------------------------------------------------------------------- /head/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/termios.h -------------------------------------------------------------------------------- /head/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/time.h -------------------------------------------------------------------------------- /head/tiuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/tiuser.h -------------------------------------------------------------------------------- /head/ttysrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/ttysrv.h -------------------------------------------------------------------------------- /head/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/tzfile.h -------------------------------------------------------------------------------- /head/ulimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/ulimit.h -------------------------------------------------------------------------------- /head/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/unistd.h -------------------------------------------------------------------------------- /head/ustat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/ustat.h -------------------------------------------------------------------------------- /head/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/utime.h -------------------------------------------------------------------------------- /head/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/utmp.h -------------------------------------------------------------------------------- /head/utmpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/utmpx.h -------------------------------------------------------------------------------- /head/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/values.h -------------------------------------------------------------------------------- /head/varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/varargs.h -------------------------------------------------------------------------------- /head/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/wait.h -------------------------------------------------------------------------------- /head/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/head/windows.h -------------------------------------------------------------------------------- /lib/.lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/lib/.lib.mk -------------------------------------------------------------------------------- /lib/zlibeti/curses/ORDER.1: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lib/zlibeti/curses/ORDER.2: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lib/zlibeti/curses/ORDER.3: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /lib/zlibeti/curses/svr2curs.name: -------------------------------------------------------------------------------- 1 | SVR2 Curses Library Release 1 2 | -------------------------------------------------------------------------------- /pkg/scde/i.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/pkg/scde/i.Z -------------------------------------------------------------------------------- /pkg/scde/space: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/pkg/scde/space -------------------------------------------------------------------------------- /proto/cpout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/proto/cpout.c -------------------------------------------------------------------------------- /ucb.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucb.dirs -------------------------------------------------------------------------------- /ucbcmd/df/df.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbcmd/df/df.c -------------------------------------------------------------------------------- /ucbcmd/du/du.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbcmd/du/du.c -------------------------------------------------------------------------------- /ucbcmd/eqn/e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbcmd/eqn/e.h -------------------------------------------------------------------------------- /ucbcmd/eqn/e.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbcmd/eqn/e.y -------------------------------------------------------------------------------- /ucbcmd/ln/ln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbcmd/ln/ln.c -------------------------------------------------------------------------------- /ucbcmd/ls/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbcmd/ls/ls.c -------------------------------------------------------------------------------- /ucbcmd/mt/mt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbcmd/mt/mt.c -------------------------------------------------------------------------------- /ucbcmd/ps/ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbcmd/ps/ps.c -------------------------------------------------------------------------------- /ucbcmd/tr/tr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbcmd/tr/tr.c -------------------------------------------------------------------------------- /ucbcmd/ul/ul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbcmd/ul/ul.c -------------------------------------------------------------------------------- /ucbcmd/w/w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbcmd/w/w.c -------------------------------------------------------------------------------- /ucbcmd/w/w.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbcmd/w/w.mk -------------------------------------------------------------------------------- /ucbhead/dbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbhead/dbm.h -------------------------------------------------------------------------------- /ucbhead/fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbhead/fp.h -------------------------------------------------------------------------------- /ucbhead/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbhead/math.h -------------------------------------------------------------------------------- /ucbhead/mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbhead/mp.h -------------------------------------------------------------------------------- /ucbhead/ndbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/ucbhead/ndbm.h -------------------------------------------------------------------------------- /uts/i386/fp/mapfile: -------------------------------------------------------------------------------- 1 | #ident "@(#)kern-fp:mapfile 1.1" 2 | 3 | text=V0x0; 4 | -------------------------------------------------------------------------------- /uts/i386/master.d/bfs/mfsys: -------------------------------------------------------------------------------- 1 | *ident "@(#)master:bfs/mfsys 1.1" 2 | bfs bf 3 | -------------------------------------------------------------------------------- /uts/i386/master.d/bfs/sfsys: -------------------------------------------------------------------------------- 1 | *ident "@(#)master:bfs/sfsys 1.1" 2 | bfs Y 3 | -------------------------------------------------------------------------------- /uts/i386/master.d/ip/node: -------------------------------------------------------------------------------- 1 | clone ip c ip 2 | -------------------------------------------------------------------------------- /uts/i386/master.d/nfa/sfsys: -------------------------------------------------------------------------------- 1 | *ident "@(#)master:nfa/sfsys 1.1" 2 | nfa N 3 | -------------------------------------------------------------------------------- /uts/i386/master.d/s5/mfsys: -------------------------------------------------------------------------------- 1 | *ident "@(#)master:s5/mfsys 1.1" 2 | s5 s5 3 | -------------------------------------------------------------------------------- /uts/i386/master.d/s5/sfsys: -------------------------------------------------------------------------------- 1 | *ident "@(#)master:s5/sfsys 1.1" 2 | s5 Y 3 | -------------------------------------------------------------------------------- /uts/i386/master.d/stune: -------------------------------------------------------------------------------- 1 | *ident "@(#)master:stune 1.1" 2 | MAXUP 30 3 | -------------------------------------------------------------------------------- /uts/i386/master.d/ufs/sfsys: -------------------------------------------------------------------------------- 1 | *ident "@(#)master:ufs/sfsys 1.1" 2 | ufs Y 3 | -------------------------------------------------------------------------------- /uts/i386/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmsacibis995/svr4-src/HEAD/uts/i386/tags --------------------------------------------------------------------------------