├── .gitignore ├── CHANGES ├── Cheshire-the-Cat.jpg ├── DragonFly ├── 386 │ ├── .gitignore │ ├── bin │ │ ├── .dreg │ │ └── .gitignore │ ├── include │ │ ├── .gitignore │ │ ├── emu.h │ │ ├── fpuctl.h │ │ └── lib9.h │ └── lib │ │ ├── .dreg │ │ └── .gitignore └── .gitignore ├── FreeBSD ├── 386 │ ├── .gitignore │ ├── bin │ │ ├── .gitignore │ │ ├── data2c │ │ ├── iyacc │ │ ├── mk │ │ └── mkext │ └── include │ │ ├── .gitignore │ │ ├── emu.h │ │ ├── fpuctl.h │ │ └── lib9.h └── .gitignore ├── Hp ├── .gitignore └── s800 │ ├── .gitignore │ └── include │ ├── .gitignore │ └── emu.h ├── INSTALL ├── Inferno ├── 386 │ ├── .gitignore │ └── include │ │ ├── .gitignore │ │ ├── lib9.h │ │ ├── u.h │ │ └── ureg.h ├── .gitignore ├── arm │ ├── .gitignore │ └── include │ │ ├── .gitignore │ │ ├── lib9.h │ │ ├── u.h │ │ └── ureg.h ├── mips │ ├── .gitignore │ └── include │ │ ├── .gitignore │ │ ├── lib9.h │ │ └── u.h ├── power │ ├── .gitignore │ └── include │ │ ├── .gitignore │ │ ├── lib9.h │ │ ├── u.h │ │ └── ureg.h ├── sparc │ ├── .gitignore │ └── include │ │ ├── .gitignore │ │ ├── lib9.h │ │ ├── u.h │ │ └── ureg.h ├── spim │ ├── .gitignore │ └── include │ │ ├── .gitignore │ │ ├── lib9.h │ │ └── u.h └── thumb │ ├── .gitignore │ └── include │ ├── .gitignore │ ├── lib9.h │ ├── u.h │ └── ureg.h ├── Irix ├── .gitignore └── mips │ ├── .gitignore │ ├── bin │ ├── .gitignore │ ├── awk │ ├── data2c │ ├── iyacc │ ├── mk │ └── mkext │ └── include │ ├── .gitignore │ ├── emu.h │ └── lib9.h ├── Linux ├── 386 │ ├── .gitignore │ ├── bin │ │ ├── data2c │ │ ├── iyacc │ │ ├── mk │ │ └── mkext │ ├── include │ │ ├── .gitignore │ │ ├── emu.h │ │ ├── fpuctl.h │ │ └── lib9.h │ └── lib │ │ └── .gitignore ├── .gitignore ├── arm │ ├── .gitignore │ └── include │ │ ├── .gitignore │ │ ├── emu.h │ │ ├── fpuctl.h │ │ └── lib9.h ├── power │ ├── .gitignore │ ├── bin │ │ ├── .gitignore │ │ ├── data2c │ │ ├── iyacc │ │ ├── limbo │ │ ├── mk │ │ └── mkext │ └── include │ │ ├── .gitignore │ │ ├── emu.h │ │ ├── fpuctl.h │ │ └── lib9.h └── spim │ ├── .gitignore │ └── include │ ├── .gitignore │ ├── emu.h │ ├── fpuctl.h │ └── lib9.h ├── MacOSX ├── 386 │ ├── .gitignore │ ├── bin │ │ ├── 0a │ │ ├── 0c │ │ ├── 0l │ │ ├── 1a │ │ ├── 1c │ │ ├── 1l │ │ ├── 2a │ │ ├── 2c │ │ ├── 2l │ │ ├── 5a │ │ ├── 5c │ │ ├── 5coff │ │ ├── 5cv │ │ ├── 5l │ │ ├── 8a │ │ ├── 8c │ │ ├── 8l │ │ ├── acid │ │ ├── asm │ │ ├── c2l │ │ ├── data2c │ │ ├── data2s │ │ ├── emu │ │ ├── emu-g │ │ ├── ftl │ │ ├── iar │ │ ├── idea │ │ ├── inm │ │ ├── iyacc │ │ ├── ka │ │ ├── kc │ │ ├── kl │ │ ├── kprof │ │ ├── ksize │ │ ├── kstrip │ │ ├── limbo │ │ ├── md5sum │ │ ├── mk │ │ ├── mk.save │ │ ├── mkext │ │ ├── mkppcimage │ │ ├── mkuimage │ │ ├── ms2 │ │ ├── ndate │ │ ├── qa │ │ ├── qc │ │ ├── ql │ │ ├── sqz │ │ ├── srclist │ │ ├── styxtest │ │ ├── tc │ │ ├── va │ │ ├── vc │ │ └── vl │ └── include │ │ ├── .gitignore │ │ ├── emu.h │ │ ├── fpuctl.h │ │ └── lib9.h ├── .gitignore ├── README ├── power │ ├── .gitignore │ ├── bin │ │ ├── .gitignore │ │ ├── data2c │ │ ├── iyacc │ │ ├── mk │ │ └── mkext │ └── include │ │ ├── .gitignore │ │ ├── emu.h │ │ ├── fpuctl.h │ │ └── lib9.h └── tcshrc ├── Mkdirs ├── NOTICE ├── NetBSD ├── 386 │ ├── .gitignore │ ├── bin │ │ ├── .gitignore │ │ ├── data2c │ │ ├── mk │ │ ├── mkext │ │ └── yacc │ └── include │ │ ├── .gitignore │ │ ├── emu.h │ │ ├── fpuctl.h │ │ └── lib9.h └── .gitignore ├── Nt ├── 386 │ ├── .gitignore │ ├── bin │ │ ├── .gitignore │ │ ├── awk.exe │ │ ├── c2l.exe │ │ ├── cp.exe │ │ ├── data2c.exe │ │ ├── echo.exe │ │ ├── format.exe │ │ ├── gzip.exe │ │ ├── infdb.exe │ │ ├── iyacc.exe │ │ ├── mk.exe │ │ ├── mkdir.exe │ │ ├── mkext.exe │ │ ├── mv.exe │ │ ├── rcsh.exe │ │ ├── rm.exe │ │ ├── sed.exe │ │ ├── test.exe │ │ └── tr.exe │ └── include │ │ ├── .gitignore │ │ ├── emu.h │ │ └── lib9.h └── .gitignore ├── OpenBSD ├── 386 │ ├── .gitignore │ └── include │ │ ├── .gitignore │ │ ├── emu.h │ │ ├── fpuctl.h │ │ └── lib9.h └── .gitignore ├── Plan9 ├── 386 │ ├── .gitignore │ ├── bin │ │ ├── .gitignore │ │ └── data2c │ └── include │ │ ├── .gitignore │ │ ├── emu.h │ │ ├── lib9.h │ │ └── u.h ├── .gitignore ├── arm │ ├── .gitignore │ ├── bin │ │ ├── .dreg │ │ └── .gitignore │ ├── include │ │ ├── .gitignore │ │ ├── emu.h │ │ ├── lib9.h │ │ └── u.h │ └── lib │ │ ├── .dreg │ │ └── .gitignore ├── include │ ├── .gitignore │ ├── lib9.h │ └── lib9x.h ├── mips │ ├── .gitignore │ └── include │ │ ├── .gitignore │ │ ├── emu.h │ │ ├── lib9.h │ │ └── u.h ├── power │ ├── .gitignore │ └── include │ │ ├── .gitignore │ │ ├── emu.h │ │ ├── lib9.h │ │ └── u.h └── sparc │ ├── .gitignore │ └── include │ ├── .gitignore │ ├── emu.h │ ├── lib9.h │ ├── os.h │ └── u.h ├── README.gcode ├── README.md ├── Solaris ├── 386 │ ├── .gitignore │ └── include │ │ ├── .gitignore │ │ ├── emu.h │ │ └── lib9.h ├── .gitignore └── sparc │ ├── .gitignore │ ├── bin │ ├── .gitignore │ ├── data2c │ ├── iyacc │ ├── mk │ └── mkext │ └── include │ ├── .gitignore │ ├── emu.h │ ├── fpuctl.h │ └── lib9.h ├── acme ├── .gitignore ├── acid │ ├── .gitignore │ ├── guide │ └── readme ├── bin │ ├── .gitignore │ ├── guide │ └── readme ├── dis │ └── .gitignore ├── edit │ ├── .gitignore │ ├── guide │ └── readme └── mail │ ├── .gitignore │ ├── guide │ └── readme ├── appl ├── .gitignore ├── NOTICE ├── acme │ ├── .gitignore │ ├── acme.b │ ├── acme.m │ ├── acme │ │ ├── .gitignore │ │ ├── acid │ │ │ ├── .gitignore │ │ │ ├── guide │ │ │ ├── mkfile │ │ │ ├── readme │ │ │ └── src │ │ │ │ ├── .gitignore │ │ │ │ ├── Acid.b │ │ │ │ ├── Acid0.b │ │ │ │ └── mkfile │ │ ├── bin │ │ │ ├── .gitignore │ │ │ ├── guide │ │ │ ├── mkfile │ │ │ ├── readme │ │ │ └── src │ │ │ │ ├── .gitignore │ │ │ │ ├── adiff.b │ │ │ │ ├── agrep.b │ │ │ │ ├── awd.b │ │ │ │ ├── cd.b │ │ │ │ ├── mkfile │ │ │ │ ├── new.b │ │ │ │ ├── spout.b │ │ │ │ ├── win.b │ │ │ │ └── winm.b │ │ ├── edit │ │ │ ├── .gitignore │ │ │ ├── guide │ │ │ ├── mkfile │ │ │ ├── readme │ │ │ └── src │ │ │ │ ├── .gitignore │ │ │ │ ├── a.b │ │ │ │ ├── c.b │ │ │ │ ├── d.b │ │ │ │ ├── e.b │ │ │ │ ├── findfile.b │ │ │ │ ├── g.b │ │ │ │ ├── i.b │ │ │ │ ├── input.b │ │ │ │ ├── mkfile │ │ │ │ ├── p.b │ │ │ │ ├── pipe.b │ │ │ │ ├── x.b │ │ │ │ └── xxx.b │ │ ├── mail │ │ │ ├── .gitignore │ │ │ ├── guide │ │ │ ├── mkbox.b │ │ │ ├── mkfile │ │ │ ├── readme │ │ │ └── src │ │ │ │ ├── .gitignore │ │ │ │ ├── Mail.b │ │ │ │ ├── Mailp.b │ │ │ │ ├── Mailpop3.b │ │ │ │ ├── mashfile │ │ │ │ └── mkfile │ │ └── mkfile │ ├── buff.b │ ├── buff.m │ ├── col.b │ ├── col.m │ ├── common.m │ ├── dat.b │ ├── dat.m │ ├── disk.b │ ├── disk.m │ ├── ecmd.b │ ├── ecmd.m │ ├── edit.b │ ├── edit.m │ ├── elog.b │ ├── elog.m │ ├── exec.b │ ├── exec.m │ ├── file.b │ ├── file.m │ ├── frame.b │ ├── frame.m │ ├── fsys.b │ ├── fsys.m │ ├── graph.b │ ├── graph.m │ ├── gui.b │ ├── gui.m │ ├── look.b │ ├── look.m │ ├── mkfile │ ├── regx.b │ ├── regx.m │ ├── row.b │ ├── row.m │ ├── scrl.b │ ├── scrl.m │ ├── styxaux.b │ ├── styxaux.m │ ├── text.b │ ├── text.m │ ├── time.b │ ├── time.m │ ├── util.b │ ├── util.m │ ├── wind.b │ ├── wind.m │ ├── xfid.b │ └── xfid.m ├── alphabet │ ├── .gitignore │ ├── abc │ │ ├── .gitignore │ │ ├── abc.b │ │ ├── autoconvert.b │ │ ├── autodeclare.b │ │ ├── declare.b │ │ ├── declares.b │ │ ├── define.b │ │ ├── eval.b │ │ ├── import.b │ │ ├── mkfile │ │ ├── newtypeset.b │ │ ├── rewrite.b │ │ ├── type.b │ │ ├── typeset.b │ │ └── undeclare.b │ ├── alphabet.b │ ├── alphabet.proto │ ├── alphabet.shmod.b │ ├── auxi │ │ ├── .gitignore │ │ ├── endpoints.b │ │ ├── endpointsrv.b │ │ ├── fsfilter.b │ │ ├── mkfile │ │ └── rexecsrv.b │ ├── declare.sh │ ├── eval.b │ ├── extvalues.b │ ├── fs │ │ ├── .gitignore │ │ ├── and.b │ │ ├── bundle.b │ │ ├── bundle.m │ │ ├── chstat.b │ │ ├── compose.b │ │ ├── depth.b │ │ ├── entries.b │ │ ├── exec.b │ │ ├── filter.b │ │ ├── ls.b │ │ ├── match.b │ │ ├── merge.b │ │ ├── mergewrite.b │ │ ├── mkext.b │ │ ├── mkfile │ │ ├── mode.b │ │ ├── newer.b │ │ ├── not.b │ │ ├── or.b │ │ ├── path.b │ │ ├── pipe.b │ │ ├── print.b │ │ ├── proto.b │ │ ├── query.b │ │ ├── run.b │ │ ├── select.b │ │ ├── setroot.b │ │ ├── size.b │ │ ├── unbundle.b │ │ ├── unbundle.m │ │ ├── walk.b │ │ └── write.b │ ├── fsdecl.sh │ ├── getendpoint.sh │ ├── grid │ │ ├── .gitignore │ │ ├── farm.b │ │ ├── line2rec.b │ │ ├── local.b │ │ ├── mkfile │ │ ├── remote.b │ │ └── rexec.b │ ├── main │ │ ├── .gitignore │ │ ├── auth.b │ │ ├── cat.b │ │ ├── create.b │ │ ├── dial.b │ │ ├── echo.b │ │ ├── export.b │ │ ├── fd.b │ │ ├── filter.b │ │ ├── genfilter.b │ │ ├── mkfile │ │ ├── mount.b │ │ ├── par.b │ │ ├── parse.b │ │ ├── pretty.b │ │ ├── print.b │ │ ├── read.b │ │ ├── readall.b │ │ ├── rewrite.b │ │ ├── rw.b │ │ ├── seq.b │ │ ├── unparse.b │ │ ├── w2fd.b │ │ └── wait.b │ ├── mkendpoint.sh │ ├── mkfile │ ├── newtypesets │ ├── proxy.b │ ├── reports.b │ ├── rexecsrv.sh │ ├── setup │ └── typesets │ │ ├── .gitignore │ │ ├── abc.b │ │ ├── abctypes.b │ │ ├── fs.b │ │ ├── fstypes.b │ │ ├── grid.b │ │ ├── gridtypes.b │ │ └── mkfile ├── charon │ ├── .gitignore │ ├── build.b │ ├── build.m │ ├── charon.b │ ├── charon.m │ ├── chutils.b │ ├── chutils.m │ ├── common.m │ ├── cookiesrv.b │ ├── cookiesrv.m │ ├── ctype.b │ ├── ctype.m │ ├── date.b │ ├── date.m │ ├── event.b │ ├── event.m │ ├── file.b │ ├── ftp.b │ ├── gui.b │ ├── gui.m │ ├── http.b │ ├── img.b │ ├── img.m │ ├── jscript.b │ ├── layout.b │ ├── layout.m │ ├── lex.b │ ├── lex.m │ ├── mkfile │ ├── paginate.b │ ├── paginate.m │ ├── rgb.inc │ ├── script.m │ ├── transport.m │ ├── url.b │ ├── url.m │ ├── xxx.inc │ └── ycbcr.inc ├── cheshire │ └── distributed │ │ └── consolepinger.b ├── cmd │ ├── .gitignore │ ├── 9660srv.b │ ├── 9export.b │ ├── 9srvfs.b │ ├── 9win.b │ ├── B.b │ ├── ar.b │ ├── archfs.b │ ├── auplay.b │ ├── auth │ │ ├── .gitignore │ │ ├── aescbc.b │ │ ├── ai2key.b │ │ ├── changelogin.b │ │ ├── convpasswd.b │ │ ├── countersigner.b │ │ ├── createsignerkey.b │ │ ├── dsagen.b │ │ ├── factotum │ │ │ ├── .gitignore │ │ │ ├── authio.m │ │ │ ├── factotum.b │ │ │ ├── feedkey.b │ │ │ ├── mkfile │ │ │ ├── proto │ │ │ │ ├── .gitignore │ │ │ │ ├── authquery.b │ │ │ │ ├── infauth.b │ │ │ │ ├── keyreps.b │ │ │ │ ├── keyreps.m │ │ │ │ ├── mkfile │ │ │ │ ├── p9any.b │ │ │ │ ├── pass.b │ │ │ │ └── rsa.b │ │ │ └── rpc.b │ │ ├── getpk.b │ │ ├── keyfs.b │ │ ├── keysrv.b │ │ ├── logind.b │ │ ├── mkauthinfo.b │ │ ├── mkfile │ │ ├── passwd.b │ │ ├── rsagen.b │ │ ├── secstore.b │ │ ├── signer.b │ │ └── verify.b │ ├── auxi │ │ ├── .gitignore │ │ ├── cpuslave.b │ │ ├── digest.b │ │ ├── fpgaload.b │ │ ├── mangaload.b │ │ ├── mkfile │ │ ├── pcmcia.b │ │ ├── rdbgsrv.b │ │ └── rstyxd.b │ ├── avr │ │ ├── .gitignore │ │ ├── burn.b │ │ └── mkfile │ ├── basename.b │ ├── bind.b │ ├── bit2gif.b │ ├── broke.b │ ├── bytes.b │ ├── cal.b │ ├── calc.b │ ├── cat.b │ ├── cd.b │ ├── cddb.b │ ├── cheshire.b │ ├── chgrp.b │ ├── chmod.b │ ├── cleanname.b │ ├── cmp.b │ ├── comm.b │ ├── cook.b │ ├── cp.b │ ├── cprof.b │ ├── cpu.b │ ├── crypt.b │ ├── date.b │ ├── dbfs.b │ ├── dbm │ │ ├── .gitignore │ │ ├── delete.b │ │ ├── fetch.b │ │ ├── keys.b │ │ ├── list.b │ │ ├── mkfile │ │ └── store.b │ ├── dd.b │ ├── dhtfs.b │ ├── dhttest.b │ ├── dial.b │ ├── diff.b │ ├── disdep.b │ ├── disdump.b │ ├── disk │ │ ├── .gitignore │ │ ├── format.b │ │ ├── ftl.b │ │ ├── kfs.b │ │ ├── kfscmd.b │ │ ├── mbr.b │ │ ├── mkext.b │ │ ├── mkfile │ │ ├── mkfs.b │ │ └── prep │ │ │ ├── .gitignore │ │ │ ├── calc.tab.b │ │ │ ├── calc.tab.m │ │ │ ├── calc.y │ │ │ ├── fdisk.b │ │ │ ├── mkfile │ │ │ ├── pedit.b │ │ │ ├── pedit.m │ │ │ └── prep.b │ ├── dossrv.b │ ├── du.b │ ├── echo.b │ ├── ed.b │ ├── emuinit.b │ ├── env.b │ ├── export.b │ ├── fc.b │ ├── fcp.b │ ├── fmt.b │ ├── fone.b │ ├── fortune.b │ ├── freq.b │ ├── fs.b │ ├── fs │ │ ├── .gitignore │ │ ├── and.b │ │ ├── bundle.b │ │ ├── chstat.b │ │ ├── compose.b │ │ ├── depth.b │ │ ├── entries.b │ │ ├── eval.b │ │ ├── exec.b │ │ ├── filter.b │ │ ├── ls.b │ │ ├── match.b │ │ ├── merge.b │ │ ├── mergewrite.b │ │ ├── mkfile │ │ ├── mode.b │ │ ├── not.b │ │ ├── or.b │ │ ├── path.b │ │ ├── pipe.b │ │ ├── print.b │ │ ├── proto.b │ │ ├── query.b │ │ ├── readfile.b │ │ ├── run.b │ │ ├── select.b │ │ ├── setroot.b │ │ ├── size.b │ │ ├── template.b │ │ ├── unbundle.b │ │ ├── void.b │ │ ├── walk.b │ │ └── write.b │ ├── ftest.b │ ├── ftpfs.b │ ├── getauthinfo.b │ ├── getfile.b │ ├── gettar.b │ ├── gif2bit.b │ ├── grep.b │ ├── gunzip.b │ ├── gzip.b │ ├── idea.b │ ├── import.b │ ├── install │ │ ├── .gitignore │ │ ├── NOTICE │ │ ├── applylog.b │ │ ├── arch.b │ │ ├── arch.m │ │ ├── archfs.b │ │ ├── archfs.m │ │ ├── ckproto.b │ │ ├── create.b │ │ ├── eproto.b │ │ ├── info.b │ │ ├── inst.b │ │ ├── install.b │ │ ├── log.b │ │ ├── logs.b │ │ ├── logs.m │ │ ├── mergelog.b │ │ ├── mkfile │ │ ├── mkproto.b │ │ ├── proto.b │ │ ├── proto.m │ │ ├── proto2list.b │ │ ├── protocaller.m │ │ ├── updatelog.b │ │ ├── wdiff.b │ │ ├── wfind.b │ │ ├── wrap.b │ │ ├── wrap.m │ │ └── wrap2list.b │ ├── iostats.b │ ├── ip │ │ ├── .gitignore │ │ ├── bootpd.b │ │ ├── dhcp.b │ │ ├── mkfile │ │ ├── nppp │ │ │ ├── .gitignore │ │ │ ├── mkfile │ │ │ ├── modem.b │ │ │ ├── modem.m │ │ │ ├── pppchat.b │ │ │ ├── ppplink.b │ │ │ ├── ppptest.b │ │ │ ├── script.b │ │ │ └── script.m │ │ ├── ping.b │ │ ├── ppp │ │ │ ├── .gitignore │ │ │ ├── mkfile │ │ │ ├── modem.b │ │ │ ├── modem.m │ │ │ ├── pppclient.b │ │ │ ├── pppclient.m │ │ │ ├── pppdial.b │ │ │ ├── pppgui.b │ │ │ ├── pppgui.m │ │ │ ├── ppptest.b │ │ │ ├── script.b │ │ │ └── script.m │ │ ├── regannounce │ │ ├── rip.b │ │ ├── sntp.b │ │ ├── styxannounce.b │ │ ├── tftpd.b │ │ └── virgild.b │ ├── irtest.b │ ├── itest.b │ ├── itreplay.b │ ├── kill.b │ ├── lego │ │ ├── .gitignore │ │ ├── clock.b │ │ ├── clockface.b │ │ ├── firmdl.b │ │ ├── link.b │ │ ├── mkfile │ │ ├── rcxsend.b │ │ ├── rcxsend.m │ │ ├── send.b │ │ ├── timers.b │ │ └── timers.m │ ├── limbo │ │ ├── .gitignore │ │ ├── arg.m │ │ ├── asm.b │ │ ├── com.b │ │ ├── decls.b │ │ ├── dis.b │ │ ├── disoptab.m │ │ ├── ecom.b │ │ ├── gen.b │ │ ├── isa.m │ │ ├── lex.b │ │ ├── limbo.b │ │ ├── limbo.m │ │ ├── limbo.y │ │ ├── mkfile │ │ ├── nodes.b │ │ ├── opname.m │ │ ├── optim.b │ │ ├── sbl.b │ │ ├── stubs.b │ │ ├── typecheck.b │ │ └── types.b │ ├── listen.b │ ├── lockfs.b │ ├── logfile.b │ ├── look.b │ ├── ls.b │ ├── lstar.b │ ├── m4.b │ ├── man2html.b │ ├── man2txt.b │ ├── manufacture.b │ ├── mash │ │ ├── .gitignore │ │ ├── builtins.b │ │ ├── depends.b │ │ ├── dump.b │ │ ├── exec.b │ │ ├── expr.b │ │ ├── eyacc.b │ │ ├── eyaccpar │ │ ├── history.b │ │ ├── lex.b │ │ ├── make.b │ │ ├── mash.b │ │ ├── mash.m │ │ ├── mash.y │ │ ├── mashfile │ │ ├── mashlib.b │ │ ├── mashparse.b │ │ ├── mashparse.m │ │ ├── misc.b │ │ ├── mkfile │ │ ├── serve.b │ │ ├── symb.b │ │ ├── tk.b │ │ └── xeq.b │ ├── mc.b │ ├── md5sum.b │ ├── mdb.b │ ├── memfs.b │ ├── metamorph.b │ ├── mk │ │ ├── .gitignore │ │ ├── ar.m │ │ ├── mk.b │ │ ├── mkbinds │ │ ├── mkconfig │ │ ├── mkfile │ │ └── mksubdirs │ ├── mkdir.b │ ├── mkfile │ ├── mntgen.b │ ├── mount.b │ ├── mouse.b │ ├── mpc │ │ ├── .gitignore │ │ ├── mkfile │ │ ├── qconfig.b │ │ └── qflash.b │ ├── mprof.b │ ├── mv.b │ ├── ndb │ │ ├── .gitignore │ │ ├── cs.b │ │ ├── csquery.b │ │ ├── dns.b │ │ ├── dnsquery.b │ │ ├── mkfile │ │ ├── mkhash.b │ │ ├── query.b │ │ ├── registry.b │ │ └── regquery.b │ ├── netkey.b │ ├── netstat.b │ ├── newer.b │ ├── ns.b │ ├── nsbuild.b │ ├── os.b │ ├── p.b │ ├── palm │ │ ├── .gitignore │ │ ├── connex.b │ │ ├── desklink.b │ │ ├── desklink.m │ │ ├── mkfile │ │ └── palmsrv.b │ ├── pause.b │ ├── pipefile.b │ ├── pipefs.b │ ├── plumb.b │ ├── plumber.b │ ├── prof.b │ ├── promptstring.b │ ├── ps.b │ ├── puttar.b │ ├── pwd.b │ ├── ramfile.b │ ├── randpass.b │ ├── raw2iaf.b │ ├── rawdbfs.b │ ├── rcmd.b │ ├── rdp.b │ ├── read.b │ ├── regannounce.b │ ├── regmount.b │ ├── rioimport.b │ ├── rm.b │ ├── rudpping.b │ ├── rudptest.b │ ├── runas.b │ ├── sed.b │ ├── sendmail.b │ ├── sh │ │ ├── .gitignore │ │ ├── arg.b │ │ ├── csv.b │ │ ├── doc │ │ │ ├── .gitignore │ │ │ └── History │ │ ├── echo.b │ │ ├── expr.b │ │ ├── file2chan.b │ │ ├── mkfile │ │ ├── mload.b │ │ ├── mpexpr.b │ │ ├── regex.b │ │ ├── sexprs.b │ │ ├── sh.b │ │ ├── sh.y │ │ ├── std.b │ │ ├── string.b │ │ ├── test.b │ │ └── tk.b │ ├── sha1sum.b │ ├── sleep.b │ ├── sort.b │ ├── spki │ │ ├── .gitignore │ │ ├── mkfile │ │ └── verify.b │ ├── src.b │ ├── stack.b │ ├── stackv.b │ ├── stream.b │ ├── strings.b │ ├── styxchat.b │ ├── styxlisten.b │ ├── styxmon.b │ ├── sum.b │ ├── tail.b │ ├── tarfs.b │ ├── tclsh.b │ ├── tcs.b │ ├── tee.b │ ├── telnet.b │ ├── test.b │ ├── time.b │ ├── timestamp.b │ ├── tkcmd.b │ ├── tokenize.b │ ├── touch.b │ ├── touchcal.b │ ├── tr.b │ ├── trfs.b │ ├── tsort.b │ ├── unicode.b │ ├── uniq.b │ ├── units.b │ ├── units.y │ ├── unmount.b │ ├── usb │ │ ├── .gitignore │ │ ├── mkfile │ │ └── usbd.b │ ├── uudecode.b │ ├── uuencode.b │ ├── vacfs.b │ ├── vacget.b │ ├── vacput.b │ ├── wav2iaf.b │ ├── wc.b │ ├── webgrab.b │ ├── wish.b │ ├── wmexport.b │ ├── wmimport.b │ ├── xargs.b │ ├── xd.b │ ├── yacc.b │ └── zeros.b ├── collab │ ├── .gitignore │ ├── clients │ │ ├── .gitignore │ │ ├── chat.b │ │ ├── poll.b │ │ ├── poller.b │ │ └── whiteboard.b │ ├── collabsrv.b │ ├── connect.b │ ├── lib │ │ ├── .gitignore │ │ ├── messages.b │ │ └── messages.m │ ├── mkfile │ ├── proxy.b │ ├── proxy.m │ ├── runcollab │ ├── servers │ │ ├── .gitignore │ │ ├── chatsrv.b │ │ ├── memfssrv.b │ │ ├── mpx.b │ │ └── wbsrv.b │ ├── service.m │ ├── srvmgr.b │ └── srvmgr.m ├── demo │ ├── .gitignore │ ├── camera │ │ ├── .gitignore │ │ ├── camera.b │ │ ├── camload.bit │ │ ├── camproc.bit │ │ ├── mkfile │ │ ├── runcam.sh │ │ ├── runcamlocal.sh │ │ └── tkinterface.b │ ├── chat │ │ ├── .gitignore │ │ ├── chat.b │ │ ├── chatclient.sh │ │ ├── chatsrv.b │ │ └── mkfile │ ├── cpupool │ │ ├── .gitignore │ │ ├── mkfile │ │ ├── regpoll.b │ │ └── runrstyx.sh │ ├── lego │ │ ├── .gitignore │ │ ├── clockface.b │ │ ├── clockreg.sh │ │ ├── firmdl.b │ │ ├── legolink.b │ │ ├── mkfile │ │ ├── rcxsend.b │ │ ├── rcxsend.m │ │ ├── styx.srec │ │ ├── timers.b │ │ └── timers.m │ ├── mkfile │ ├── ns │ │ ├── .gitignore │ │ ├── mkfile │ │ ├── ns.b │ │ └── runns.sh │ ├── odbc │ │ ├── .gitignore │ │ ├── mkfile │ │ ├── odbcmnt.b │ │ └── runodbc.sh │ ├── spree │ │ ├── .gitignore │ │ ├── mkfile │ │ └── spreeclient.sh │ └── whiteboard │ │ ├── .gitignore │ │ ├── mkfile │ │ ├── runwb.sh │ │ ├── wbsrv.b │ │ └── whiteboard.b ├── ebook │ ├── .gitignore │ ├── checkxml.b │ ├── cssfont.b │ ├── cssfont.m │ ├── cssparser.b │ ├── cssparser.m │ ├── dtd │ │ ├── .gitignore │ │ ├── oebdoc101.dtd │ │ └── oebpkg101.dtd │ ├── ebook.b │ ├── mimeimage.b │ ├── mimeimage.m │ ├── mkfile │ ├── oebpackage.b │ ├── oebpackage.m │ ├── reader.b │ ├── reader.m │ ├── strcache.m │ ├── strmap.b │ ├── strmap.m │ ├── stylesheet.b │ ├── stylesheet.m │ ├── table.b │ ├── table.m │ ├── tst.txt │ ├── understandingoeb.opf │ ├── units.b │ └── units.m ├── grid │ ├── .gitignore │ ├── README │ ├── blurdemo.b │ ├── cpupool.b │ ├── demo │ │ ├── .gitignore │ │ ├── block.b │ │ ├── blur.b │ │ └── mkfile │ ├── find.b │ ├── jpg2bit.b │ ├── lib │ │ ├── .gitignore │ │ ├── announce.b │ │ ├── browser.b │ │ ├── browser.m │ │ ├── fbrowse.b │ │ ├── mkfile │ │ ├── pathreader.m │ │ └── srvbrowse.b │ ├── mkfile │ ├── query.b │ ├── readjpg.b │ ├── register.b │ ├── reglisten.b │ ├── regstyxlisten.b │ ├── remotelogon.b │ └── usercreatesrv.b ├── lib │ ├── .gitignore │ ├── NOTICE │ ├── arg.b │ ├── asn1.b │ ├── attrdb.b │ ├── attrhash.b │ ├── auth.b │ ├── auth9.b │ ├── bigkey.b │ ├── bloomfilter.b │ ├── bufio.b │ ├── cfg.b │ ├── cfgfile.b │ ├── chanfill.b │ ├── complete.b │ ├── convcs │ │ ├── .gitignore │ │ ├── 8bit_stob.b │ │ ├── big5_btos.b │ │ ├── big5_stob.b │ │ ├── convcs.b │ │ ├── cp932_btos.b │ │ ├── cp_btos.b │ │ ├── cp_stob.b │ │ ├── euc-jp_btos.b │ │ ├── gb2312_btos.b │ │ ├── genbig5.b │ │ ├── gencp.b │ │ ├── gencp932.b │ │ ├── gengb2312.b │ │ ├── genjisx0201kana.b │ │ ├── genjisx0208-1997.b │ │ ├── genjisx0212.b │ │ ├── ibm437.b │ │ ├── ibm850.b │ │ ├── ibm866.b │ │ ├── iso8859-1.b │ │ ├── iso8859-10.b │ │ ├── iso8859-15.b │ │ ├── iso8859-2.b │ │ ├── iso8859-3.b │ │ ├── iso8859-4.b │ │ ├── iso8859-5.b │ │ ├── iso8859-6.b │ │ ├── iso8859-7.b │ │ ├── iso8859-8.b │ │ ├── iso8859-9.b │ │ ├── koi8-r.b │ │ ├── mkdata │ │ ├── mkfile │ │ ├── utf16_btos.b │ │ ├── utf16_stob.b │ │ ├── utf8_btos.b │ │ ├── utf8_stob.b │ │ ├── windows-1250.b │ │ ├── windows-1251.b │ │ └── windows-1252.b │ ├── crc.b │ ├── crypt │ │ ├── .gitignore │ │ ├── mkfile │ │ ├── pkcs.b │ │ ├── ssl3.b │ │ ├── sslsession.b │ │ └── x509.b │ ├── csv.b │ ├── daytime.b │ ├── db.b │ ├── dbm.b │ ├── dbsrv.b │ ├── debug.b │ ├── deflate.b │ ├── devpointer.b │ ├── dhcpclient.b │ ├── dht.b │ ├── dht │ │ └── .gitignore │ ├── dial.b │ ├── dialog.b │ ├── dict.b │ ├── dis.b │ ├── diskblocks.b │ ├── disks.b │ ├── dividers.b │ ├── ecmascript │ │ ├── .gitignore │ │ ├── builtin.b │ │ ├── date.b │ │ ├── ecmascript.b │ │ ├── exec.b │ │ ├── mkfile │ │ ├── obj.b │ │ ├── pprint.b │ │ ├── regexp.b │ │ └── uri.b │ ├── encoding │ │ ├── .gitignore │ │ ├── base16.b │ │ ├── base32.b │ │ ├── base32a.b │ │ ├── base64.b │ │ └── mkfile │ ├── env.b │ ├── ether.b │ ├── exception.b │ ├── factotum.b │ ├── filepat.b │ ├── format.b │ ├── fsfilter.b │ ├── fslib.b │ ├── fsproto.b │ ├── gamer.b │ ├── hash.b │ ├── hashtable.b │ ├── html.b │ ├── ida │ │ ├── .gitignore │ │ ├── NOTICE │ │ ├── ida.b │ │ ├── idatab.b │ │ ├── idatab.dist │ │ ├── idatest.b │ │ ├── mkfile │ │ └── mktab.b │ ├── imageremap.b │ ├── inflate.b │ ├── ip.b │ ├── ipattr.b │ ├── ir.b │ ├── irmpath.b │ ├── irsage.b │ ├── irsim.b │ ├── itslib.b │ ├── json.b │ ├── keyset.b │ ├── libc.b │ ├── libc0.b │ ├── lists.b │ ├── lock.b │ ├── login.b │ ├── man.b │ ├── memfs.b │ ├── mkfile │ ├── mpeg.b │ ├── msgio.b │ ├── names.b │ ├── nametree.b │ ├── newns.b │ ├── ninep.b │ ├── oldauth.b │ ├── palm.b │ ├── palmdb.b │ ├── palmfile.b │ ├── parseman.b │ ├── plumbing.b │ ├── plumbing.m │ ├── plumbmsg.b │ ├── pop3.b │ ├── popup.b │ ├── powerman.b │ ├── print │ │ ├── .gitignore │ │ ├── hp_driver.b │ │ ├── mkfile │ │ ├── print.b │ │ ├── scaler.b │ │ └── scaler.m │ ├── profile.b │ ├── pslib.b │ ├── quicktime.b │ ├── rabin.b │ ├── rand.b │ ├── random.b │ ├── readdir.b │ ├── readgif.b │ ├── readjpg.b │ ├── readpicfile.b │ ├── readpng.b │ ├── readxbitmap.b │ ├── regex.b │ ├── regexutils.b │ ├── registries.b │ ├── rfc822.b │ ├── riff.b │ ├── rudp.b │ ├── scoretable.b │ ├── scsiio.b │ ├── secstore.b │ ├── selectfile.b │ ├── sets.b │ ├── sets32.b │ ├── sexprs.b │ ├── slip.b │ ├── smtp.b │ ├── sort.b │ ├── spki │ │ ├── .gitignore │ │ ├── mkfile │ │ ├── spki.b │ │ └── verifier.b │ ├── ssl.b │ ├── string.b │ ├── strinttab.b │ ├── strokes │ │ ├── .gitignore │ │ ├── buildstrokes.b │ │ ├── mkfile │ │ ├── readstrokes.b │ │ ├── strokes.b │ │ └── writestrokes.b │ ├── styx.b │ ├── styxconv │ │ ├── .gitignore │ │ ├── mkfile │ │ ├── new2old.b │ │ ├── nsys.m │ │ ├── old2new.b │ │ ├── ostyx.b │ │ ├── ostyx.m │ │ ├── osys.m │ │ └── styxconv.b │ ├── styxflush.b │ ├── styxlib.b │ ├── styxpersist.b │ ├── styxservers.b │ ├── tables.b │ ├── tabs.b │ ├── tcl.m │ ├── tcl_calc.b │ ├── tcl_core.b │ ├── tcl_inthash.b │ ├── tcl_io.b │ ├── tcl_list.b │ ├── tcl_modhash.b │ ├── tcl_stack.b │ ├── tcl_strhash.b │ ├── tcl_string.b │ ├── tcl_symhash.b │ ├── tcl_tk.b │ ├── tcl_utils.b │ ├── tftp.b │ ├── timers.b │ ├── titlebar.b │ ├── tkclient.b │ ├── translate.b │ ├── ubfa.b │ ├── url.b │ ├── usb │ │ ├── .gitignore │ │ ├── mkfile │ │ ├── usb.b │ │ ├── usbmass.b │ │ ├── usbmct.b │ │ └── usbmouse.b │ ├── utils.m │ ├── vac.b │ ├── venti.b │ ├── virgil.b │ ├── volume.b │ ├── w3c │ │ ├── .gitignore │ │ ├── css.b │ │ ├── mkfile │ │ ├── uris.b │ │ └── xpointers.b │ ├── wait.b │ ├── watchvars.b │ ├── winplace.b │ ├── wmclient.b │ ├── wmlib.b │ ├── wmsrv.b │ ├── workdir.b │ ├── writegif.b │ └── xml.b ├── math │ ├── .gitignore │ ├── ack.b │ ├── crackerbarrel.b │ ├── doc.txt │ ├── factor.b │ ├── ffts.b │ ├── fibonacci.b │ ├── fit.b │ ├── genprimes.b │ ├── geodesy.b │ ├── gr.b │ ├── graph0.b │ ├── hist0.b │ ├── linalg.b │ ├── linbench.b │ ├── mersenne.b │ ├── mkfile │ ├── parts.b │ ├── perms.b │ ├── pi.b │ ├── polyfill.b │ ├── polyhedra.b │ ├── powers.b │ ├── primes.b │ └── sieve.b ├── mkfile ├── spree │ ├── .gitignore │ ├── archives.b │ ├── clients │ │ ├── .gitignore │ │ ├── bounce.b │ │ ├── cards.b │ │ ├── chat.b │ │ ├── gather.b │ │ ├── lobby.b │ │ └── othello.b │ ├── engines │ │ ├── .gitignore │ │ ├── afghan.b │ │ ├── bounce.b │ │ ├── canfield.b │ │ ├── chat.b │ │ ├── debug.b │ │ ├── freecell.b │ │ ├── gather.b │ │ ├── hearts.b │ │ ├── liars.b │ │ ├── liars.y │ │ ├── lobby.b │ │ ├── othello.b │ │ ├── racingdemon.b │ │ ├── snap.b │ │ ├── spider.b │ │ ├── spit.b │ │ └── whist.b │ ├── gather.m │ ├── join.b │ ├── join.m │ ├── joinsession.b │ ├── joinsession.m │ ├── lib │ │ ├── .gitignore │ │ ├── allow.b │ │ ├── allow.m │ │ ├── base64.b │ │ ├── base64.m │ │ ├── cardlib.b │ │ ├── cardlib.m │ │ ├── commandline.b │ │ ├── commandline.m │ │ ├── objstore.b │ │ ├── objstore.m │ │ ├── testsets.b │ │ ├── tricks.b │ │ └── tricks.m │ ├── mkfile │ ├── other │ │ ├── .gitignore │ │ ├── tst.b │ │ ├── tstboing.b │ │ ├── tstlines.sh │ │ └── tstwin.b │ ├── spree.b │ └── spree.m ├── svc │ ├── .gitignore │ ├── auth.sh │ ├── httpd │ │ ├── .gitignore │ │ ├── alarms.b │ │ ├── alarms.m │ │ ├── cache.b │ │ ├── cache.m │ │ ├── cgiparse.b │ │ ├── cgiparse.m │ │ ├── contents.b │ │ ├── contents.m │ │ ├── date.b │ │ ├── date.m │ │ ├── echo.b │ │ ├── httpd.b │ │ ├── httpd.debug │ │ ├── httpd.log │ │ ├── httpd.m │ │ ├── httpd.rewrite │ │ ├── httpd.suff │ │ ├── imagemap.b │ │ ├── mkfile │ │ ├── parser.b │ │ ├── parser.m │ │ ├── redirect.b │ │ ├── redirect.m │ │ └── stats.b │ ├── mkfile │ ├── net.sh │ ├── registry.sh │ ├── rstyx.sh │ ├── styx.sh │ └── webget │ │ ├── .gitignore │ │ ├── date.b │ │ ├── date.m │ │ ├── file.b │ │ ├── ftp.b │ │ ├── http.b │ │ ├── image2enc.b │ │ ├── image2enc.m │ │ ├── message.b │ │ ├── message.m │ │ ├── mkfile │ │ ├── transport.m │ │ ├── webget.b │ │ ├── webget.log │ │ ├── wgutils.b │ │ └── wgutils.m ├── tiny │ ├── .gitignore │ ├── mkfile │ ├── rm.b │ └── sh.b └── wm │ ├── .gitignore │ ├── about.b │ ├── avi.b │ ├── bounce.b │ ├── brutus.b │ ├── brutus │ ├── .gitignore │ ├── excerpt.b │ ├── image.b │ ├── mkfile │ ├── mod.b │ └── table.b │ ├── c4.b │ ├── calendar.b │ ├── clock.b │ ├── coffee.b │ ├── collide.b │ ├── colors.b │ ├── cprof.b │ ├── date.b │ ├── deb.b │ ├── debdata.b │ ├── debsrc.b │ ├── dir.b │ ├── drawmux │ ├── .gitignore │ ├── dmview.b │ ├── dmwm.b │ ├── drawmux.b │ ├── drawmux.m │ ├── drawoffs.m │ └── mkfile │ ├── edit.b │ ├── emu.b │ ├── filename.b │ ├── ftree │ ├── .gitignore │ ├── cptree.b │ ├── cptree.m │ ├── ftree.b │ ├── items.b │ ├── items.m │ ├── mkfile │ └── wmsetup │ ├── getauthinfo.b │ ├── hebrew.m │ ├── keyboard.b │ ├── logon.b │ ├── logwindow.b │ ├── man.b │ ├── mand.b │ ├── mash.b │ ├── memory.b │ ├── minitel │ ├── .gitignore │ ├── README │ ├── event.b │ ├── event.m │ ├── keyb.b │ ├── mdisplay.b │ ├── mdisplay.m │ ├── miniterm.b │ ├── miniterm.m │ ├── mkfile │ ├── modem.b │ ├── screen.b │ ├── socket.b │ ├── swkeyb.b │ └── swkeyb.m │ ├── mkfile │ ├── mpeg.b │ ├── mpeg │ ├── .gitignore │ ├── c0.tab │ ├── c0.vlc │ ├── c1.tab │ ├── c1.vlc │ ├── c2.tab │ ├── c2.vlc │ ├── c3.tab │ ├── c3.vlc │ ├── c4.tab │ ├── c4.vlc │ ├── c5.tab │ ├── c5.vlc │ ├── c6.tab │ ├── c6.vlc │ ├── c7.tab │ ├── c7.vlc │ ├── cbp.tab │ ├── cbp.vlc │ ├── cdc.tab │ ├── cdc.vlc │ ├── closest.m │ ├── decode.b │ ├── decode4.b │ ├── fixidct.b │ ├── fltidct.b │ ├── mai.tab │ ├── mai.vlc │ ├── makergbvmap.b │ ├── maketables │ ├── mbb.tab │ ├── mbb.vlc │ ├── mbi.tab │ ├── mbi.vlc │ ├── mbp.tab │ ├── mbp.vlc │ ├── mkfile │ ├── motion.tab │ ├── motion.vlc │ ├── mpeg.b │ ├── mpegio.b │ ├── mpegio.m │ ├── refidct.b │ ├── remap.b │ ├── remap1.b │ ├── remap2.b │ ├── remap24.b │ ├── remap4.b │ ├── remap8.b │ ├── rgbvmap.m │ ├── rl0f.tab │ ├── rl0f.vlc │ ├── rl0n.tab │ ├── rl0n.vlc │ ├── scidct.b │ ├── vlc.b │ ├── ydc.tab │ └── ydc.vlc │ ├── mprof.b │ ├── pen.b │ ├── polyhedra.b │ ├── prof.b │ ├── qt.b │ ├── readmail.b │ ├── remotelogon.b │ ├── reversi.b │ ├── rmtdir.b │ ├── rt.b │ ├── sam.b │ ├── samstub.b │ ├── samstub.m │ ├── samterm.m │ ├── samtk.b │ ├── samtk.m │ ├── sendmail.b │ ├── sh.b │ ├── smenu.b │ ├── smenu.m │ ├── snake.b │ ├── stopwatch.b │ ├── sweeper.b │ ├── task.b │ ├── telnet.b │ ├── tetris.b │ ├── toolbar.b │ ├── unibrowse.b │ ├── view.b │ ├── vt.b │ ├── wish.b │ ├── wm.b │ ├── wmdeb.m │ └── wmplay.b ├── asm ├── .gitignore ├── NOTICE ├── asm.h ├── asm.y ├── assem.c ├── lex.c └── mkfile ├── bind ├── dis ├── .gitignore ├── acme │ └── .gitignore ├── auth │ ├── .gitignore │ └── proto │ │ └── .gitignore ├── auxi │ └── .gitignore ├── avr │ └── .gitignore ├── charon │ └── .gitignore ├── collab │ ├── .gitignore │ ├── clients │ │ └── .gitignore │ ├── lib │ │ └── .gitignore │ └── servers │ │ └── .gitignore ├── demo │ ├── .gitignore │ ├── camera │ │ ├── .gitignore │ │ ├── camload.bit │ │ ├── camproc.bit │ │ └── runcam │ ├── chat │ │ ├── .gitignore │ │ └── chatclient │ ├── cpupool │ │ ├── .gitignore │ │ └── runrstyx │ ├── lego │ │ ├── .gitignore │ │ ├── clockreg │ │ └── styx.srec │ ├── ns │ │ ├── .gitignore │ │ └── runns │ ├── odbc │ │ ├── .gitignore │ │ └── runodbc │ ├── spree │ │ ├── .gitignore │ │ └── spreeclient │ └── whiteboard │ │ ├── .gitignore │ │ └── runwb ├── dis │ ├── .gitignore │ └── lib │ │ ├── .gitignore │ │ └── convc │ │ └── .gitignore ├── disk │ └── .gitignore ├── ebook │ └── .gitignore ├── fs │ └── .gitignore ├── grid │ ├── .gitignore │ ├── demo │ │ └── .gitignore │ ├── lib │ │ ├── .gitignore │ │ └── convcs │ │ │ └── .gitignore │ └── spreesrv ├── install │ ├── .gitignore │ └── insbylog ├── ip │ ├── .gitignore │ └── ppp │ │ └── .gitignore ├── lc ├── lego │ └── .gitignore ├── lib │ ├── .gitignore │ ├── convc │ │ └── .gitignore │ ├── convcs │ │ └── .gitignore │ ├── crypt │ │ └── .gitignore │ ├── encoding │ │ └── .gitignore │ ├── ftree │ │ └── .gitignore │ ├── ida │ │ └── .gitignore │ ├── mash │ │ └── .gitignore │ ├── print │ │ └── .gitignore │ ├── spki │ │ └── .gitignore │ ├── strokes │ │ └── .gitignore │ ├── styxconv │ │ └── .gitignore │ ├── usb │ │ └── .gitignore │ └── w3c │ │ └── .gitignore ├── lookman ├── man ├── math │ └── .gitignore ├── mpc │ └── .gitignore ├── mpeg │ └── .gitignore ├── ndb │ └── .gitignore ├── regmount.b ├── sh │ └── .gitignore ├── shutdown ├── sig ├── spki │ └── .gitignore ├── spree │ ├── .gitignore │ ├── clients │ │ └── .gitignore │ ├── engines │ │ └── .gitignore │ └── lib │ │ └── .gitignore ├── svc │ ├── .gitignore │ ├── auth │ ├── httpd │ │ └── .gitignore │ ├── net │ ├── registry │ ├── rstyx │ ├── styx │ └── webget │ │ └── .gitignore ├── tiny │ └── .gitignore ├── usb │ └── .gitignore └── wm │ ├── .gitignore │ └── brutus │ └── .gitignore ├── doc ├── .gitignore ├── 20010618.ms ├── 20010618.pdf ├── 20011003.ms ├── 20011003.pdf ├── 20020628.ms ├── 20020628.pdf ├── 20020715.ms ├── INSTALL1.ms ├── acid.ms ├── acid.pdf ├── acidpaper.ms ├── acidpaper.pdf ├── acidtut.ms ├── acidtut.pdf ├── acme │ ├── .gitignore │ ├── acme.ms │ ├── acme.pdf │ └── mkfile ├── asm.ms ├── asm.pdf ├── backmatter.pdf ├── bltj.ms ├── bltj.pdf ├── changes.ms ├── changes.pdf ├── compiler.ms ├── compiler.pdf ├── descent │ ├── .gitignore │ ├── descent.ms │ ├── descent.pdf │ └── mkfile ├── dev.ms ├── dev.pdf ├── dis.ms ├── dis.pdf ├── ebookimp.ms ├── ebookimp.pdf ├── fonts ├── fonts.bem ├── fonts.pal ├── frontmatter.pdf ├── gridinstall.ms ├── gridinstall.pdf ├── hotchips.ms ├── hotchips.pdf ├── install.ms ├── install.pdf ├── lego.ms ├── lego.pdf ├── limbo │ ├── .gitignore │ ├── addendum.ms │ ├── addendum.pdf │ ├── limbo.ms │ ├── limbo.pdf │ ├── limbo.rc │ ├── mkfile │ └── synsum ├── limbotk │ ├── .gitignore │ ├── f1.gif │ ├── f1.ps │ ├── f2.gif │ ├── f2.ps │ ├── mkfile │ ├── tk.ms │ ├── tk.pdf │ └── tk.ps ├── lprof.ms ├── lprof.pdf ├── mk.ms ├── mk.pdf ├── mkfile ├── perform │ ├── .gitignore │ ├── mkfile │ ├── perform.ms │ └── perform.pdf ├── port.ms ├── port.pdf ├── realinferno │ ├── .gitignore │ ├── mkfile │ ├── real.ms │ └── real.pdf ├── sh.ms ├── sh.pdf ├── styx.ms └── styx.pdf ├── empties ├── emu ├── .gitignore ├── DragonFly │ ├── .gitignore │ ├── README │ ├── asm-386.S │ ├── audio.c │ ├── cmd.c │ ├── deveia.c │ ├── devfs.c │ ├── emu │ ├── emu-g │ ├── mkfile │ └── os.c ├── FreeBSD │ ├── .gitignore │ ├── asm-386.S │ ├── audio.c │ ├── cmd.c │ ├── deveia.c │ ├── devfs.c │ ├── emu │ ├── emu-g │ ├── mkfile │ ├── mkfile-FreeBSD │ └── os.c ├── Hp │ ├── .gitignore │ ├── NOTE │ ├── asm-s800.s │ ├── cmd.c │ ├── devaudio.c │ ├── devfs.c │ ├── emu │ ├── mkfile │ ├── mkfile-Hp │ └── os.c ├── Irix │ ├── .gitignore │ ├── NOTE │ ├── asm-mips.s │ ├── cmd.c │ ├── devfs.c │ ├── emu │ ├── mkfile │ ├── mkfile-Irix │ └── os.c ├── Linux │ ├── .gitignore │ ├── asm-386.S │ ├── asm-arm.S │ ├── asm-mips.S │ ├── asm-power.S │ ├── asm-spim.S │ ├── audio-oss.c │ ├── cmd.c │ ├── deveia.c │ ├── devfs.c │ ├── emu │ ├── emu-g │ ├── emu-wrt │ ├── mk-wrt │ ├── mkfile │ ├── mkfile-p │ ├── os-clone.c │ ├── os.c │ ├── segflush-386.c │ ├── segflush-arm.c │ ├── segflush-mips.S │ ├── segflush-power.c │ └── segflush-spim.S ├── MacOSX │ ├── .gitignore │ ├── NOTE │ ├── NOTICE │ ├── asm-386.s │ ├── asm-power.s │ ├── cmd.c │ ├── deveia.c │ ├── devfs.c │ ├── emu │ ├── emu-g │ ├── emu-g.c │ ├── keycodes.h │ ├── mkfile │ ├── mkfile-g │ ├── mkfile-x11 │ ├── o.emu-g │ ├── os.c │ └── win.c ├── NOTICE ├── NetBSD │ ├── .gitignore │ ├── asm-386.S │ ├── audio.c │ ├── cmd.c │ ├── deveia.c │ ├── devfs.c │ ├── emu │ ├── emu.c │ ├── mkfile │ ├── mkfile-NetBSD │ └── os.c ├── Nt │ ├── .gitignore │ ├── audio.c │ ├── cmd.c │ ├── devarch.c │ ├── deveia.c │ ├── devfs.c │ ├── emu │ ├── fp.c │ ├── ie │ ├── ie-os.c │ ├── ie-win.c │ ├── ieplugin.h │ ├── ipif.c │ ├── ipif6.c │ ├── mkfile │ ├── nt.rc │ ├── os.c │ ├── vlrt.c │ └── win.c ├── OpenBSD │ ├── .gitignore │ ├── asm-386.S │ ├── audio.c │ ├── cmd.c │ ├── deveia.c │ ├── devfs.c │ ├── emu │ ├── mkfile │ ├── mkfile-OpenBSD │ ├── os.c │ └── rfork_thread.S ├── Plan9 │ ├── .gitignore │ ├── asm-386.s │ ├── asm-arm.s │ ├── asm-mips.s │ ├── asm-power.s │ ├── asm-sparc.s │ ├── cmd.c │ ├── devfs.c │ ├── devsrv9.c │ ├── emu │ ├── emusig │ ├── mkfile │ ├── os.c │ └── win.c ├── Solaris │ ├── .gitignore │ ├── asm-386.s │ ├── asm-sparc.s │ ├── audio.c │ ├── cmd.c │ ├── deveia.c │ ├── devfs.c │ ├── emu │ ├── mkfile │ └── os.c ├── Unixware │ ├── .gitignore │ ├── asm-386.s │ ├── cmd.c │ ├── deveia.c │ ├── devfs.c │ ├── emu │ ├── mkfile │ ├── mkfile-Unixware │ └── os.c ├── mkfile └── port │ ├── .gitignore │ ├── acme-offset │ ├── alloc.c │ ├── audio-tbls.c │ ├── audio.h │ ├── cache.c │ ├── chan.c │ ├── dat.h │ ├── dev.c │ ├── devaudio.c │ ├── devcap.c │ ├── devcmd.c │ ├── devcons.c │ ├── devdraw.c │ ├── devdup.c │ ├── devdynld.c │ ├── devdynldx.c │ ├── deveia-bsd.c │ ├── deveia-posix.c │ ├── devenv.c │ ├── devfs-posix.c │ ├── devindir.c │ ├── devip.c │ ├── devlogfs.c │ ├── devmem.c │ ├── devmnt.c │ ├── devpipe.c │ ├── devpointer.c │ ├── devprof.c │ ├── devprog.c │ ├── devroot.c │ ├── devsign.c │ ├── devsnarf.c │ ├── devsrv.c │ ├── devssl.c │ ├── devtab.c │ ├── devtinyfs.c │ ├── devtk.c │ ├── dial.c │ ├── dis.c │ ├── discall.c │ ├── dynld.c │ ├── dynldc.c │ ├── env.c │ ├── error.c │ ├── error.h │ ├── errstr.c │ ├── exception.c │ ├── exportfs.c │ ├── exptab.c │ ├── file.c │ ├── fns.h │ ├── inferno.c │ ├── ip.h │ ├── ipaux.c │ ├── ipif-posix.c │ ├── ipif6-posix.c │ ├── keysym2ucs.h │ ├── kproc-pthreads.c │ ├── latin1.c │ ├── latin1.h │ ├── lock.c │ ├── main.c │ ├── master │ ├── master.local │ ├── mkdevc │ ├── mkdevlist │ ├── mkfile │ ├── mkroot │ ├── parse.c │ ├── pgrp.c │ ├── portmkfile │ ├── print.c │ ├── proc.c │ ├── qio.c │ ├── random.c │ ├── srv.c │ ├── styx.c │ ├── sysfile.c │ ├── uqid.c │ ├── win-x11-old.c │ ├── win-x11a.c │ └── x11-keysym2ucs.c ├── icons ├── .gitignore ├── audioctl.bit ├── bigdelight.bit ├── bigtv.bit ├── bigtvchrom.bit ├── cards │ ├── .gitignore │ ├── c.all.bit │ ├── c0.bit │ ├── c1.bit │ ├── c10.bit │ ├── c11.bit │ ├── c12.bit │ ├── c13.bit │ ├── c14.bit │ ├── c15.bit │ ├── c16.bit │ ├── c17.bit │ ├── c18.bit │ ├── c19.bit │ ├── c2.bit │ ├── c20.bit │ ├── c21.bit │ ├── c22.bit │ ├── c23.bit │ ├── c24.bit │ ├── c25.bit │ ├── c26.bit │ ├── c27.bit │ ├── c28.bit │ ├── c29.bit │ ├── c3.bit │ ├── c30.bit │ ├── c31.bit │ ├── c32.bit │ ├── c33.bit │ ├── c34.bit │ ├── c35.bit │ ├── c36.bit │ ├── c37.bit │ ├── c38.bit │ ├── c39.bit │ ├── c4.bit │ ├── c40.bit │ ├── c41.bit │ ├── c42.bit │ ├── c43.bit │ ├── c44.bit │ ├── c45.bit │ ├── c46.bit │ ├── c47.bit │ ├── c48.bit │ ├── c49.bit │ ├── c5.bit │ ├── c50.bit │ ├── c51.bit │ ├── c6.bit │ ├── c7.bit │ ├── c8.bit │ ├── c9.bit │ ├── config │ ├── rear.all.bit │ ├── rear0.bit │ ├── rear1.bit │ ├── rear2.bit │ └── rear3.bit ├── charon │ ├── .gitignore │ ├── bookmark.bit │ ├── charon.bit │ ├── charon1.bit │ ├── charon2.bit │ ├── circarrow.bit │ ├── conf.bit │ ├── copy.bit │ ├── down.bit │ ├── edit.bit │ ├── exit.bit │ ├── help.bit │ ├── history.bit │ ├── home.bit │ ├── keyboard.bit │ ├── minus.bit │ ├── plus.bit │ ├── redleft.bit │ ├── redright.bit │ ├── ssl.bit │ ├── ssloff.bit │ ├── sslon.bit │ ├── stop.bit │ └── up.bit ├── coffee0.bit ├── coffee0.mask ├── coffee1.bit ├── coffee1.mask ├── coffee2.bit ├── coffee2.mask ├── coffee3.bit ├── coffee3.mask ├── coffee4.bit ├── coffee4.mask ├── coffee5.bit ├── coffee5.mask ├── coin.bit ├── cornelia.bit ├── csn.bit ├── csnsmall.bit ├── delight.bit ├── email.bit ├── envelope.bit ├── film.bit ├── gaijin.bit ├── gaijinsmall.bit ├── gritbath.bit ├── ibc.bit ├── inferno.bit ├── lnw.bit ├── manufacture.bit ├── minicharon │ ├── .gitignore │ ├── back.bit │ ├── fwd.bit │ └── stop.bit ├── monitor │ ├── .gitignore │ ├── bars.bit │ ├── browse.bit │ ├── browsemask.bit │ ├── del.bit │ ├── delmask.bit │ ├── delnode.bit │ ├── delnodemask.bit │ ├── exclude.bit │ ├── excludemask.bit │ ├── go.bit │ ├── gomask.bit │ ├── graph.bit │ ├── include.bit │ ├── includemask.bit │ ├── newjob.bit │ ├── newjobmask.bit │ ├── nos.bit │ ├── pc.bit │ ├── pcbl.bit │ ├── pcbl2.bit │ ├── pcdown.bit │ ├── pcdownbl.bit │ ├── pcdownbl2.bit │ ├── pcicon.bit │ ├── pcoff.bit │ ├── pcoffbl.bit │ ├── pcoffbl2.bit │ ├── pdown.bit │ ├── pdownmask.bit │ ├── pup.bit │ ├── pupmask.bit │ ├── refresh.bit │ ├── refreshmask.bit │ ├── stop.bit │ └── stopmask.bit ├── movie.bit ├── news.bit ├── noentry.bit ├── othello.bit ├── penguin.bit ├── phone.bit ├── pizza.bit ├── pizzamenu.bit ├── rec-pb │ ├── .gitignore │ ├── cd.bit │ ├── corner-ll.bit │ ├── corner-lr.bit │ ├── corner-ul.bit │ ├── corner-ur.bit │ ├── edge-h.bit │ ├── edge-v.bit │ ├── ff.bit │ ├── line.bit │ ├── mic.bit │ ├── pause.bit │ ├── play.bit │ ├── pop.bit │ ├── push.bit │ ├── rec.bit │ ├── rew.bit │ ├── slider.bit │ ├── sliderpattern.bit │ ├── speaker.bit │ ├── stop.bit │ └── synth.bit ├── register.bit ├── run.bit ├── smallcards │ ├── .gitignore │ ├── c.all.bit │ ├── c0.bit │ ├── c1.bit │ ├── c10.bit │ ├── c11.bit │ ├── c12.bit │ ├── c13.bit │ ├── c14.bit │ ├── c15.bit │ ├── c16.bit │ ├── c17.bit │ ├── c18.bit │ ├── c19.bit │ ├── c2.bit │ ├── c20.bit │ ├── c21.bit │ ├── c22.bit │ ├── c23.bit │ ├── c24.bit │ ├── c25.bit │ ├── c26.bit │ ├── c27.bit │ ├── c28.bit │ ├── c29.bit │ ├── c3.bit │ ├── c30.bit │ ├── c31.bit │ ├── c32.bit │ ├── c33.bit │ ├── c34.bit │ ├── c35.bit │ ├── c36.bit │ ├── c37.bit │ ├── c38.bit │ ├── c39.bit │ ├── c4.bit │ ├── c40.bit │ ├── c41.bit │ ├── c42.bit │ ├── c43.bit │ ├── c44.bit │ ├── c45.bit │ ├── c46.bit │ ├── c47.bit │ ├── c48.bit │ ├── c49.bit │ ├── c5.bit │ ├── c50.bit │ ├── c51.bit │ ├── c6.bit │ ├── c7.bit │ ├── c8.bit │ ├── c9.bit │ ├── config │ ├── rear.all.bit │ ├── rear0.bit │ ├── rear1.bit │ ├── rear2.bit │ ├── rear3.bit │ └── rear4.bit ├── term.bit ├── thisburgh.bit ├── tinycards │ ├── .gitignore │ ├── c.all.bit │ ├── c0.bit │ ├── c1.bit │ ├── c10.bit │ ├── c11.bit │ ├── c12.bit │ ├── c13.bit │ ├── c14.bit │ ├── c15.bit │ ├── c16.bit │ ├── c17.bit │ ├── c18.bit │ ├── c19.bit │ ├── c2.bit │ ├── c20.bit │ ├── c21.bit │ ├── c22.bit │ ├── c23.bit │ ├── c24.bit │ ├── c25.bit │ ├── c26.bit │ ├── c27.bit │ ├── c28.bit │ ├── c29.bit │ ├── c3.bit │ ├── c30.bit │ ├── c31.bit │ ├── c32.bit │ ├── c33.bit │ ├── c34.bit │ ├── c35.bit │ ├── c36.bit │ ├── c37.bit │ ├── c38.bit │ ├── c39.bit │ ├── c4.bit │ ├── c40.bit │ ├── c41.bit │ ├── c42.bit │ ├── c43.bit │ ├── c44.bit │ ├── c45.bit │ ├── c46.bit │ ├── c47.bit │ ├── c48.bit │ ├── c49.bit │ ├── c5.bit │ ├── c50.bit │ ├── c51.bit │ ├── c6.bit │ ├── c7.bit │ ├── c8.bit │ ├── c9.bit │ ├── config │ ├── rear.all.bit │ ├── rear0.bit │ ├── rear1.bit │ ├── rear2.bit │ └── rear3.bit ├── tinytk │ ├── .gitignore │ ├── exit.bit │ ├── help.bit │ ├── maxf.bit │ ├── ok.bit │ ├── task.bit │ └── task.orig.bit ├── tk │ ├── .gitignore │ ├── archive.bit │ ├── audio.bit │ ├── back.9 │ ├── back.bit │ ├── binary_document.bit │ ├── binhex_document.bit │ ├── bluebar.bit │ ├── bom.bit │ ├── bomb.bit │ ├── bomb.mask │ ├── calculator.bit │ ├── caution.bit │ ├── cd_i.bit │ ├── cd_rom.bit │ ├── clock.bit │ ├── color_left.bit │ ├── color_right.bit │ ├── compressed_document.bit │ ├── cursor.drag │ ├── cursor.no │ ├── cursor.wait │ ├── cursor.win │ ├── debug │ │ ├── .gitignore │ │ ├── break.bit │ │ ├── break.mask │ │ ├── closed.bit │ │ ├── closed.mask │ │ ├── detach.bit │ │ ├── detach.mask │ │ ├── kill.bit │ │ ├── kill.mask │ │ ├── new.mask │ │ ├── open.bit │ │ ├── open.mask │ │ ├── opstep.bit │ │ ├── opstep.mask │ │ ├── run.bit │ │ ├── run.mask │ │ ├── stepin.bit │ │ ├── stepin.mask │ │ ├── stepop.bit │ │ ├── stepop.mask │ │ ├── stepout.bit │ │ ├── stepout.mask │ │ ├── stepover.bit │ │ ├── stepover.mask │ │ ├── stepsemi.bit │ │ ├── stepsemi.mask │ │ ├── stop.bit │ │ └── stop.mask │ ├── dir.bit │ ├── dir.mask │ ├── dir.up │ ├── dir_remote.bit │ ├── dis.bit │ ├── dis.mask │ ├── disk_drive.bit │ ├── diskette.bit │ ├── display.bit │ ├── document.bit │ ├── email.bit │ ├── email_waiting.bit │ ├── error │ ├── exit.bit │ ├── fax.bit │ ├── file.bit │ ├── file.mask │ ├── filing_cabinet.bit │ ├── film.bit │ ├── find.bit │ ├── fixed_disk.bit │ ├── flag.bit │ ├── flag.mask │ ├── folder.bit │ ├── form.bit │ ├── forward.9 │ ├── forward.bit │ ├── ftp.bit │ ├── glossary.bit │ ├── gopher.bit │ ├── gray12 │ ├── gray25 │ ├── help.bit │ ├── home.bit │ ├── hourglass │ ├── iaf.bit │ ├── iaf.mask │ ├── image.bit │ ├── index.bit │ ├── info │ ├── keybd │ │ ├── .gitignore │ │ ├── capsoff.bit │ │ ├── capson.bit │ │ ├── darrow.bit │ │ ├── hom.bit │ │ ├── larrow.bit │ │ ├── pgdw.bit │ │ ├── pgup.bit │ │ ├── rarrow.bit │ │ ├── shift.bit │ │ ├── tog.bit │ │ └── uarrow.bit │ ├── keyboard.bit │ ├── mail.bit │ ├── mail │ │ ├── .gitignore │ │ ├── cd.bit │ │ ├── down.bit │ │ ├── forward.bit │ │ ├── mail_in.bit │ │ ├── new.bit │ │ ├── reply.bit │ │ ├── replyall.bit │ │ ├── show.bit │ │ ├── stop.bit │ │ ├── trash.bit │ │ └── up.bit │ ├── mailInfo │ ├── mailNoInfo │ ├── mail_in.bit │ ├── mail_out.bit │ ├── mailbdy │ ├── mailcon │ ├── maildel │ ├── maildeliver │ ├── mailfolder │ ├── mailforward │ ├── mailhdr │ ├── mailnew │ ├── mailnext │ ├── mailnocc │ ├── mailprev │ ├── mailreply │ ├── mailsave │ ├── mailundel │ ├── map.bit │ ├── maxf.bit │ ├── maxf0.bit │ ├── maxf2.bit │ ├── mouse.bit │ ├── network.bit │ ├── newhome.bit │ ├── next.bit │ ├── notebook.bit │ ├── ok.bit │ ├── parent.bit │ ├── pic.bit │ ├── pic.mask │ ├── postscript.bit │ ├── previous.bit │ ├── printer.bit │ ├── questhead │ ├── question │ ├── reload.bit │ ├── root.bit │ ├── sadsmiley.bit │ ├── small_color_left.bit │ ├── small_color_right.bit │ ├── small_find.bit │ ├── small_newhome.bit │ ├── small_reload.bit │ ├── small_stop.bit │ ├── smiley.bit │ ├── stop.bit │ ├── stop2.bit │ ├── stop2.mask │ ├── summary.bit │ ├── sweb.bit │ ├── task.bit │ ├── telephone.bit │ ├── telnet.bit │ ├── text_document.bit │ ├── tn3270.bit │ ├── toc.bit │ ├── trash.bit │ ├── unknown_document.bit │ ├── uparrow.bit │ ├── uuencoded_document.bit │ ├── vitasmall.bit │ ├── warning │ ├── wmsds.bit │ ├── wmsds.mask │ └── ybr.bit ├── tvlist.bit ├── vitanuova.bit ├── wallst.bit ├── web.bit ├── whiteboard │ ├── .gitignore │ ├── 0.bit │ ├── 1.bit │ ├── 2.bit │ └── erase.bit └── wjsmall.bit ├── include ├── .gitignore ├── NOTICE ├── a.out.h ├── bio.h ├── cursor.h ├── draw.h ├── drawif.h ├── dynld.h ├── fcall.h ├── flate.h ├── freetype.h ├── freetype │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ ├── ftccache.h │ │ ├── ftccmap.h │ │ ├── ftcglyph.h │ │ ├── ftcimage.h │ │ ├── ftcmanag.h │ │ ├── ftcsbits.h │ │ └── ftlru.h │ ├── config │ │ ├── .gitignore │ │ ├── ftconfig.h │ │ ├── ftconfig.h.orig │ │ ├── ftheader.h │ │ ├── ftmodule.h │ │ ├── ftmodule.h.orig │ │ ├── ftoption.h │ │ ├── ftstdlib.h │ │ └── ftstdlib.h.orig │ ├── freetype.h │ ├── ft2build.h │ ├── ftbbox.h │ ├── ftbdf.h │ ├── ftcache.h │ ├── ftchapters.h │ ├── fterrdef.h │ ├── fterrors.h │ ├── ftglyph.h │ ├── ftgzip.h │ ├── ftimage.h │ ├── ftincrem.h │ ├── ftlist.h │ ├── ftmac.h │ ├── ftmm.h │ ├── ftmoderr.h │ ├── ftmodule.h │ ├── ftoutln.h │ ├── ftpfr.h │ ├── ftrender.h │ ├── ftsizes.h │ ├── ftsnames.h │ ├── ftstroker.h │ ├── ftsynth.h │ ├── ftsysio.h │ ├── ftsysmem.h │ ├── ftsystem.h │ ├── fttrigon.h │ ├── fttypes.h │ ├── ftxf86.h │ ├── internal │ │ ├── .gitignore │ │ ├── autohint.h │ │ ├── bdftypes.h │ │ ├── cfftypes.h │ │ ├── fnttypes.h │ │ ├── ftcalc.h │ │ ├── ftcore.h │ │ ├── ftdebug.h │ │ ├── ftdriver.h │ │ ├── ftexcept.h │ │ ├── ftgloadr.h │ │ ├── fthash.h │ │ ├── ftmemory.h │ │ ├── ftobject.h │ │ ├── ftobjs.h │ │ ├── ftstream.h │ │ ├── fttrace.h │ │ ├── internal.h │ │ ├── pcftypes.h │ │ ├── pfr.h │ │ ├── psaux.h │ │ ├── pshints.h │ │ ├── psnames.h │ │ ├── sfnt.h │ │ ├── t1types.h │ │ ├── t42types.h │ │ └── tttypes.h │ ├── t1tables.h │ ├── ttnameid.h │ ├── tttables.h │ └── tttags.h ├── interp.h ├── isa.h ├── kern.h ├── kernel.h ├── keyboard.h ├── libsec.h ├── logfs.h ├── logfsos.h ├── mathi.h ├── memdraw.h ├── memlayer.h ├── mp.h ├── nandecc.h ├── nandfs.h ├── pool.h ├── pooldefs.h ├── prefab.h ├── raise.h ├── rdbg.h ├── styx.h ├── styxserver.h ├── tk.h ├── trace.h ├── version.h └── vm.h ├── keydb ├── .gitignore ├── keys └── signerkey ├── lib ├── .gitignore ├── acid │ ├── 386 │ ├── .gitignore │ ├── amd64 │ ├── arm │ ├── gpa │ ├── inferno │ ├── mips │ ├── port │ ├── power │ ├── rdebug │ └── sparc ├── convcs │ ├── .gitignore │ ├── big5 │ ├── charsets │ ├── cp932 │ ├── gb2312 │ ├── ibm437.cp │ ├── ibm850.cp │ ├── ibm866.cp │ ├── iso-8859-1.cp │ ├── iso-8859-10.cp │ ├── iso-8859-15.cp │ ├── iso-8859-2.cp │ ├── iso-8859-3.cp │ ├── iso-8859-4.cp │ ├── iso-8859-5.cp │ ├── iso-8859-6.cp │ ├── iso-8859-7.cp │ ├── iso-8859-8.cp │ ├── iso-8859-9.cp │ ├── jisx0201kana │ ├── jisx0208-1997 │ ├── jisx0212 │ ├── koi8-r.cp │ ├── windows-1250.cp │ ├── windows-1251.cp │ └── windows-1252.cp ├── dht │ ├── .gitignore │ └── neis ├── ebook │ ├── .gitignore │ └── default.css ├── ebooks │ ├── .gitignore │ ├── devils │ │ ├── .gitignore │ │ ├── A.html │ │ ├── A.html.annot │ │ ├── A.html.i │ │ ├── B.html │ │ ├── B.html.annot │ │ ├── B.html.i │ │ ├── C.html │ │ ├── C.html.annot │ │ ├── C.html.i │ │ ├── D.html │ │ ├── D.html.annot │ │ ├── D.html.i │ │ ├── DevilsDictionary.opf │ │ ├── E.html │ │ ├── E.html.annot │ │ ├── E.html.i │ │ ├── F.html │ │ ├── F.html.annot │ │ ├── F.html.i │ │ ├── G.html │ │ ├── G.html.annot │ │ ├── G.html.i │ │ ├── H.html │ │ ├── H.html.annot │ │ ├── H.html.i │ │ ├── I.html │ │ ├── I.html.annot │ │ ├── I.html.i │ │ ├── J.html │ │ ├── J.html.annot │ │ ├── J.html.i │ │ ├── K.html │ │ ├── K.html.annot │ │ ├── K.html.i │ │ ├── L.html │ │ ├── L.html.annot │ │ ├── L.html.i │ │ ├── M.html │ │ ├── M.html.annot │ │ ├── M.html.i │ │ ├── N.html │ │ ├── N.html.annot │ │ ├── N.html.i │ │ ├── O.html │ │ ├── O.html.annot │ │ ├── O.html.i │ │ ├── P.html │ │ ├── P.html.annot │ │ ├── P.html.i │ │ ├── Q.html │ │ ├── Q.html.annot │ │ ├── Q.html.i │ │ ├── R.html │ │ ├── R.html.annot │ │ ├── R.html.i │ │ ├── S.html │ │ ├── S.html.annot │ │ ├── S.html.i │ │ ├── T.html │ │ ├── T.html.annot │ │ ├── T.html.i │ │ ├── TitlePage.html │ │ ├── TitlePage.html.annot │ │ ├── TitlePage.html.i │ │ ├── U.html │ │ ├── U.html.annot │ │ ├── U.html.i │ │ ├── V.html │ │ ├── V.html.annot │ │ ├── V.html.i │ │ ├── W.html │ │ ├── W.html.annot │ │ ├── W.html.i │ │ ├── X.html │ │ ├── X.html.annot │ │ ├── X.html.i │ │ ├── Y.html │ │ ├── Y.html.annot │ │ ├── Y.html.i │ │ ├── Z.html │ │ ├── Z.html.annot │ │ ├── Z.html.i │ │ ├── devil.css │ │ ├── foreword.html │ │ ├── foreword.html.annot │ │ ├── foreword.html.i │ │ ├── index.html │ │ ├── index.html.annot │ │ ├── index.html.i │ │ ├── preface.html │ │ ├── preface.html.annot │ │ └── preface.html.i │ ├── oebtest │ │ ├── .gitignore │ │ ├── BART.html │ │ ├── BART.html.annot │ │ ├── BART.html.i │ │ ├── BentSub.html │ │ ├── BentSub.html.annot │ │ ├── BentSub.html.index │ │ ├── BlueWater.html │ │ ├── BlueWater.html.annot │ │ ├── BlueWater.html.i │ │ ├── DrBill.jpg │ │ ├── DrBill.png │ │ ├── DrBill.tif │ │ ├── DrBillBio.css │ │ ├── DrBillBio.opf │ │ ├── ExecutiveSummary.html │ │ ├── ExecutiveSummary.html.annot │ │ ├── ExecutiveSummary.html.i │ │ ├── ExecutiveSummary.html.index │ │ ├── GoldMine.html │ │ ├── GoldMine.html.annot │ │ ├── GoldMine.html.i │ │ ├── GoldMine.html.index │ │ ├── GoldenGate.html │ │ ├── GoldenGate.html.annot │ │ ├── GoldenGate.html.i │ │ ├── HelicopterMinesweeper.html │ │ ├── MeasuringOilTanks.html │ │ ├── MeasuringOilTanks.html.i │ │ ├── QuotesAboutBill.html │ │ ├── QuotesFromBill.html │ │ ├── TalkRadio.html │ │ ├── TitlePage.html │ │ ├── TitlePage.html.annot │ │ ├── TitlePage.html.i │ │ ├── TitlePage.html.index │ │ ├── about.html │ │ ├── awards.html │ │ ├── awards.html.annot │ │ ├── awards.html.i │ │ ├── background-education.html │ │ ├── background-education.html.i │ │ ├── bloodbanks.html │ │ ├── business.html │ │ ├── business.html.annot │ │ ├── business.html.i │ │ ├── colleague.html │ │ ├── confrontations.html │ │ ├── confrontations.html.annot │ │ ├── confrontations.html.i │ │ ├── copyright.html │ │ ├── covert.html │ │ ├── covert.html.annot │ │ ├── covert.html.i │ │ ├── creditcards.html │ │ ├── dial-a-ride.html │ │ ├── dial-a-ride.html.annot │ │ ├── dial-a-ride.html.i │ │ ├── foreword.html │ │ ├── foreword.html.annot │ │ ├── foreword.html.i │ │ ├── foreword.html.index │ │ ├── hobbies.html │ │ ├── hobbies.html.annot │ │ ├── hobbies.html.i │ │ ├── index.html │ │ ├── movies.html │ │ ├── patents.html │ │ ├── patents.html.annot │ │ ├── patents.html.i │ │ ├── publishing.html │ │ ├── raport-small.png │ │ ├── raport.png │ │ ├── resume.html │ │ ├── television.html │ │ ├── toc.html │ │ ├── toc.html.annot │ │ ├── toc.html.i │ │ └── toc.html.index │ └── understandingoeb │ │ ├── .gitignore │ │ ├── OEBActivityDiagram.png │ │ ├── OEBClassDiagram.png │ │ ├── chapter1.html │ │ ├── chapter2.html │ │ ├── chapter3.html │ │ ├── chapter4.html │ │ ├── chapter5.html │ │ ├── chapter6.html │ │ ├── foreword.html │ │ ├── preface.html │ │ ├── title.html │ │ ├── toc.html │ │ ├── understandingoeb.css │ │ └── understandingoeb.opf ├── emptydirs ├── games │ ├── .gitignore │ ├── fortunes │ └── fortunes.index ├── ircnames ├── keyboard ├── legal │ ├── .gitignore │ ├── GPL │ ├── LGPL │ ├── NOTICE.app │ ├── NOTICE.ffal │ ├── NOTICE.gpl │ ├── NOTICE.lgpl │ ├── NOTICE.liberal │ ├── calderalic.pdf │ └── lucent ├── lego │ ├── .gitignore │ ├── llp.h │ ├── styx.c │ ├── styx.srec │ └── styx_abp.srec ├── limbo.vim ├── mashinit ├── mimetype ├── mk │ ├── .gitignore │ ├── binds │ ├── mkconfig │ └── mksubdirs ├── ndb │ ├── .gitignore │ ├── common │ ├── dns │ ├── inferno │ ├── local │ ├── registry │ └── services ├── polyhedra ├── polyhedra.all ├── print │ ├── .gitignore │ ├── defprinter │ ├── dj895.map │ ├── dj970.map │ ├── paper.cfg │ ├── pmode.cfg │ ├── popt.cfg │ ├── printer.cfg │ └── ptype.cfg ├── proto │ ├── .gitignore │ ├── FreeBSD │ ├── Hp │ ├── Irix │ ├── Linux │ ├── MacOSX │ ├── NetBSD │ ├── Nt │ ├── Plan9 │ ├── Solaris │ ├── inferno │ ├── os │ ├── src │ └── utils ├── scores │ ├── .gitignore │ ├── snake │ ├── tetris │ └── x ├── scsicodes ├── sexp ├── sh │ ├── .gitignore │ ├── owen │ ├── profile │ ├── sched │ ├── srv │ └── win ├── strokes │ ├── .gitignore │ ├── digits.bit │ ├── digits.cl │ ├── digits.clx │ ├── letters.bit │ ├── letters.cl │ ├── letters.clx │ ├── punc.bit │ ├── punc.cl │ └── punc.clx ├── tbsetup ├── unicode ├── unidata │ ├── .gitignore │ ├── blocks.txt │ ├── index2.txt │ └── unidata2.txt ├── units ├── usbdb ├── wmcharon ├── wmsetup ├── wmsetup.grid ├── words └── yaccpar ├── lib9 ├── .gitignore ├── NOTICE ├── argv0.c ├── charstod.c ├── cistrcmp.c ├── cistrncmp.c ├── cistrstr.c ├── cleanname.c ├── convD2M.c ├── convM2D.c ├── convM2S.c ├── convS2M.c ├── create.c ├── dirstat-Nt.c ├── dirstat-posix.c ├── dirwstat.c ├── dofmt.c ├── dorfmt.c ├── errfmt.c ├── errstr-Nt.c ├── errstr-Plan9.c ├── errstr-posix.c ├── exits.c ├── fcallfmt.c ├── fltfmt.c ├── fmt.c ├── fmtdef.h ├── fmtfd.c ├── fmtlock.c ├── fmtprint.c ├── fmtquote.c ├── fmtrune.c ├── fmtstr.c ├── fmtvprint.c ├── fprint.c ├── getcallerpc-DragonFly-386.S ├── getcallerpc-FreeBSD-386.S ├── getcallerpc-Hp-s800.s ├── getcallerpc-Irix-mips.s ├── getcallerpc-Linux-386.S ├── getcallerpc-Linux-arm.S ├── getcallerpc-Linux-power.c ├── getcallerpc-Linux-spim.S ├── getcallerpc-MacOSX-386.s ├── getcallerpc-MacOSX-power.s ├── getcallerpc-NetBSD-386.S ├── getcallerpc-OpenBSD-386.S ├── getcallerpc-Solaris-386.s ├── getcallerpc-Solaris-sparc.s ├── getcallerpc-Unixware-386.s ├── getfields.c ├── getuser-Nt.c ├── getuser-posix.c ├── getwd-Nt.c ├── getwd-posix.c ├── isnan-posix.c ├── lock-Hp-s800.s ├── lock-Irix-mips.s ├── lock-MacOSX-power.s ├── lock-Nt-386.c ├── lock-Solaris-386.s ├── lock-Solaris-sparc.s ├── lock-Unixware-386.s ├── lock.c ├── mkfile ├── mkfile-Nt ├── mkfile-Plan9 ├── mkfile-Posix ├── nulldir.c ├── pow10.c ├── pread-Nt.c ├── print.c ├── qsort.c ├── readn.c ├── rerrstr.c ├── rune.c ├── runeseprint.c ├── runesmprint.c ├── runesnprint.c ├── runestrlen.c ├── runevseprint.c ├── sbrk-posix.c ├── seek.c ├── seprint.c ├── setbinmode-Nt.c ├── smprint.c ├── snprint.c ├── sprint.c ├── strdup.c ├── strecpy.c ├── strtoll.c ├── strtoull.c ├── sysfatal.c ├── tokenize.c ├── u16.c ├── u32.c ├── u64.c ├── utfecpy.c ├── utflen.c ├── utfnlen.c ├── utfrrune.c ├── utfrune.c ├── vfprint.c ├── vseprint.c ├── vsmprint.c └── vsnprint.c ├── libbio ├── .gitignore ├── NOTICE ├── bbuffered.c ├── bfildes.c ├── bflush.c ├── bgetc.c ├── bgetd.c ├── bgetrune.c ├── binit.c ├── boffset.c ├── bprint.c ├── bputc.c ├── bputrune.c ├── brdline.c ├── bread.c ├── bseek.c ├── bwrite.c └── mkfile ├── libdraw ├── .gitignore ├── NOTICE ├── alloc.c ├── allocimagemix.c ├── arith.c ├── bezier.c ├── border.c ├── buildfont.c ├── bytesperline.c ├── chan.c ├── cloadimage.c ├── computil.c ├── creadimage.c ├── defont.c ├── draw.c ├── drawrepl.c ├── ellipse.c ├── font.c ├── freesubfont.c ├── getdefont.c ├── getsubfont.c ├── init.c ├── line.c ├── loadimage.c ├── mkfile ├── mkfont.c ├── openfont.c ├── poly.c ├── readcolmap.c ├── readimage.c ├── readsubfont.c ├── rectclip.c ├── replclipr.c ├── rgb.c ├── string.c ├── stringbg.c ├── stringsubfont.c ├── stringwidth.c ├── subfont.c ├── subfontcache.c ├── subfontname.c ├── test.c ├── unloadimage.c ├── window.c ├── writecolmap.c ├── writeimage.c └── writesubfont.c ├── libdynld ├── .gitignore ├── NOTICE ├── dynld-386.c ├── dynld-68000.c ├── dynld-arm.c ├── dynld-mips.c ├── dynld-power.c ├── dynld-sparc.c ├── dynld-spim.c ├── dynld.c ├── dynloadfd.c └── mkfile ├── libfreetype ├── .gitignore ├── NOTICE │ ├── .gitignore │ ├── FTL.txt │ ├── GPL.txt │ ├── PATENTS │ └── license.txt ├── adler32.c ├── ahangles.c ├── ahangles.h ├── aherrors.h ├── ahglobal.c ├── ahglobal.h ├── ahglyph.c ├── ahglyph.h ├── ahhint.c ├── ahhint.h ├── ahloader.h ├── ahmodule.c ├── ahmodule.h ├── ahoptim.c ├── ahoptim.h ├── ahtypes.h ├── autohint.c ├── bdf.c ├── bdf.h ├── bdfdrivr.c ├── bdfdrivr.h ├── bdferror.h ├── bdflib.c ├── cff.c ├── cffcmap.c ├── cffcmap.h ├── cffdrivr.c ├── cffdrivr.h ├── cfferrs.h ├── cffgload.c ├── cffgload.h ├── cffload.c ├── cffload.h ├── cffobjs.c ├── cffobjs.h ├── cffparse.c ├── cffparse.h ├── cfftoken.h ├── ciderrs.h ├── cidgload.c ├── cidgload.h ├── cidload.c ├── cidload.h ├── cidobjs.c ├── cidobjs.h ├── cidparse.c ├── cidparse.h ├── cidriver.c ├── cidriver.h ├── cidtoken.h ├── fnterrs.h ├── freetype.c ├── ft2system.c ├── ftapi.c ├── ftbase.c ├── ftbbox.c ├── ftbdf.c ├── ftcache.c ├── ftcalc.c ├── ftccache.c ├── ftccmap.c ├── ftcerror.h ├── ftcglyph.c ├── ftcimage.c ├── ftcmanag.c ├── ftcsbits.c ├── ftdbgmem.c ├── ftdebug.c ├── ftexcept.c ├── ftgloadr.c ├── ftglyph.c ├── ftgrays.c ├── ftgrays.h ├── ftgzip.c ├── fthash.c ├── ftinit.c ├── ftlist.c ├── ftlru.c ├── ftmac.c ├── ftmm.c ├── ftnames.c ├── ftobject.c ├── ftobjs.c ├── ftoutln.c ├── ftpfr.c ├── ftraster.c ├── ftraster.h ├── ftrend1.c ├── ftrend1.h ├── ftsmerrs.h ├── ftsmooth.c ├── ftsmooth.h ├── ftstream.c ├── ftstroker.c ├── ftsynth.c ├── ftsysio.c ├── ftsysmem.c ├── ftsystem.c ├── ftsystem_inf.c ├── fttrigon.c ├── fttype1.c ├── ftutil.c ├── ftxf86.c ├── infblock.c ├── infblock.h ├── infcodes.c ├── infcodes.h ├── inffixed.h ├── inflate.c ├── inftrees.c ├── inftrees.h ├── infutil.c ├── infutil.h ├── mkfile ├── otlayout.h ├── otlbase.c ├── otlbase.h ├── otlcommn.c ├── otlcommn.h ├── otlconf.h ├── otlgdef.c ├── otlgdef.h ├── otlgpos.c ├── otlgpos.h ├── otlgsub.c ├── otlgsub.h ├── otljstf.c ├── otljstf.h ├── otlparse.c ├── otlparse.h ├── otltable.h ├── otltags.h ├── otlutils.h ├── pcf.c ├── pcf.h ├── pcfdriver.c ├── pcfdriver.h ├── pcferror.h ├── pcfread.c ├── pcfutil.c ├── pcfutil.h ├── pfr.c ├── pfrcmap.c ├── pfrcmap.h ├── pfrdrivr.c ├── pfrdrivr.h ├── pfrerror.h ├── pfrgload.c ├── pfrgload.h ├── pfrload.c ├── pfrload.h ├── pfrobjs.c ├── pfrobjs.h ├── pfrsbit.c ├── pfrsbit.h ├── pfrtypes.h ├── psaux.c ├── psauxerr.h ├── psauxmod.c ├── psauxmod.h ├── pshalgo.h ├── pshalgo1.c ├── pshalgo1.h ├── pshalgo2.c ├── pshalgo2.h ├── pshalgo3.c ├── pshalgo3.h ├── pshglob.c ├── pshglob.h ├── pshinter.c ├── pshmod.c ├── pshmod.h ├── pshrec.c ├── pshrec.h ├── psmodule.c ├── psmodule.h ├── psnamerr.h ├── psnames.c ├── psobjs.c ├── psobjs.h ├── pstables.h ├── raster.c ├── rasterrs.h ├── sfdriver.c ├── sfdriver.h ├── sferrors.h ├── sfnt.c ├── sfobjs.c ├── sfobjs.h ├── smooth.c ├── stddef.h ├── t1afm.c ├── t1afm.h ├── t1cmap.c ├── t1cmap.h ├── t1decode.c ├── t1decode.h ├── t1driver.c ├── t1driver.h ├── t1errors.h ├── t1gload.c ├── t1gload.h ├── t1load.c ├── t1load.h ├── t1objs.c ├── t1objs.h ├── t1parse.c ├── t1parse.h ├── t1tokens.h ├── t42drivr.c ├── t42drivr.h ├── t42error.h ├── t42objs.c ├── t42objs.h ├── t42parse.c ├── t42parse.h ├── test_bbox.c ├── test_trig.c ├── truetype.c ├── ttcmap.c ├── ttcmap.h ├── ttcmap0.c ├── ttcmap0.h ├── ttdriver.c ├── ttdriver.h ├── tterrors.h ├── ttgload.c ├── ttgload.h ├── ttinterp.c ├── ttinterp.h ├── ttload.c ├── ttload.h ├── ttobjs.c ├── ttobjs.h ├── ttpload.c ├── ttpload.h ├── ttpost.c ├── ttpost.h ├── ttsbit.c ├── ttsbit.h ├── type1.c ├── type1cid.c ├── type42.c ├── winfnt.c ├── winfnt.h ├── zconf.h ├── zlib.h ├── zutil.c └── zutil.h ├── libinterp ├── .gitignore ├── NOTICE ├── README ├── alt.c ├── comp-386.c ├── comp-68020.c ├── comp-arm.c ├── comp-mips.c ├── comp-power.c ├── comp-s800.c ├── comp-sparc.c ├── comp-spim.c ├── comp-thumb.c ├── conv.c ├── crypt.c ├── das-386.c ├── das-68000.c ├── das-68020.c ├── das-arm.c ├── das-mips.c ├── das-power.c ├── das-s800.c ├── das-sparc.c ├── das-spim.c ├── das-stub.c ├── das-thumb.c ├── dec.c ├── decgen.c ├── dlm-Inferno.c ├── dlm-Nt.c ├── dlm-Plan9.c ├── dlm-Posix.c ├── draw.c ├── freetype.c ├── gc.c ├── geom.c ├── heap.c ├── heapaudit.c ├── ipint.c ├── ipint.h ├── keyring.c ├── keyringif.m ├── link.c ├── load.c ├── loader.c ├── math.c ├── mkfile ├── mkoptab ├── optab.h ├── prefab.c ├── raise.c ├── readmod.c ├── runt.c ├── sign.c ├── stack.c ├── string.c ├── tab.h ├── tk.c ├── validstk.c └── xec.c ├── libkern ├── .gitignore ├── NOTICE ├── abort.c ├── abs.c ├── atol.c ├── charstod.c ├── cistrcmp.c ├── cistrncmp.c ├── cistrstr.c ├── cleanname.c ├── convD2M.c ├── convM2D.c ├── convM2S.c ├── convS2M.c ├── div-arm.s ├── div-thumb.s ├── dofmt.c ├── exp.c ├── fcallfmt.c ├── floor.c ├── fmt.c ├── fmtdef.h ├── fmtprint.c ├── fmtquote.c ├── fmtstr.c ├── fmtvprint.c ├── frexp-386.c ├── frexp-68000.c ├── frexp-arm.c ├── frexp-mips.c ├── frexp-power.c ├── frexp-sparc.c ├── frexp-spim.c ├── frexp-thumb.c ├── getfcr-386.s ├── getfcr-68000.s ├── getfcr-arm.s ├── getfcr-mips.s ├── getfcr-power.s ├── getfcr-sparc.s ├── getfcr-spim.s ├── getfcr-thumb.s ├── getfields.c ├── log.c ├── memccpy-power.s ├── memccpy.c ├── memchr.c ├── memcmp-power.s ├── memcmp.c ├── memmove-386.s ├── memmove-68000.s ├── memmove-arm.s ├── memmove-mips.s ├── memmove-power.s ├── memmove-sparc.s ├── memmove-spim.s ├── memmove-thumb.s ├── memmove.c ├── memset-386.s ├── memset-68000.s ├── memset-arm.s ├── memset-mips.s ├── memset-power.s ├── memset-sparc.s ├── memset-spim.s ├── memset-thumb.s ├── memset.c ├── mkfile ├── mkfile-386 ├── mkfile-68000 ├── mkfile-arm ├── mkfile-mips ├── mkfile-power ├── mkfile-sparc ├── mkfile-spim ├── mkfile-thumb ├── muldiv-68000.s ├── nan-386.c ├── nan-68000.c ├── nan-arm.c ├── nan-mips.c ├── nan-power.c ├── nan-sparc.c ├── nan-spim.c ├── nan-thumb.c ├── netmkaddr.c ├── pow.c ├── pow10.c ├── qsort.c ├── rune.c ├── runestrlen.c ├── seprint.c ├── sin.c ├── smprint.c ├── snprint.c ├── sqrt.c ├── strcat.c ├── strchr-386.s ├── strchr-68000.s ├── strchr-arm.s ├── strchr-mips.s ├── strchr-power.s ├── strchr-sparc.s ├── strchr-spim.c ├── strchr-spim.s ├── strchr-thumb.s ├── strchr.c ├── strcmp-power.s ├── strcmp.c ├── strcpy.c ├── strdup.c ├── strecpy.c ├── strlen.c ├── strncmp-power.s ├── strncmp.c ├── strncpy.c ├── strrchr.c ├── strstr.c ├── strtod.c ├── strtol.c ├── strtoll.c ├── strtoul.c ├── strtoull.c ├── tokenize.c ├── toupper.c ├── u16.c ├── u32.c ├── u64.c ├── utfecpy.c ├── utflen.c ├── utfnlen.c ├── utfrrune.c ├── utfrune.c ├── vlop-386.s ├── vlop-arm.s ├── vlop-mips.s ├── vlop-power.s ├── vlop-sparc.s ├── vlop-spim.s ├── vlop-thumb.s ├── vlrt-386.c ├── vlrt-68000.c ├── vlrt-arm.c ├── vlrt-mips.c ├── vlrt-power.c ├── vlrt-sparc.c ├── vlrt-spim.c ├── vlrt-thumb.c ├── vseprint.c ├── vsmprint.c └── vsnprint.c ├── libkeyring ├── .gitignore ├── NOTICE ├── dsaalg.c ├── egalg.c ├── keys.h ├── mkfile └── rsaalg.c ├── liblogfs ├── .gitignore ├── NOTICE ├── boot.c ├── clunk.c ├── conv.c ├── create.c ├── dump.c ├── error.c ├── extentlist.c ├── fidmap.c ├── findfreeblock.c ├── flush.c ├── format.c ├── gn.c ├── group.c ├── groupset.c ├── is.c ├── local.h ├── log.c ├── map.c ├── mkfile ├── open.c ├── path.c ├── perm.c ├── read.c ├── remove.c ├── replace.c ├── replay.c ├── scan.c ├── srv.c ├── sweep.c ├── tagname.c ├── test.c ├── ust.c ├── walk.c ├── write.c └── wstat.c ├── libmath ├── .gitignore ├── FPcontrol-DragonFly.c ├── FPcontrol-FreeBSD.c ├── FPcontrol-Hp.c ├── FPcontrol-Inferno.c ├── FPcontrol-Irix.c ├── FPcontrol-Linux.c ├── FPcontrol-MacOSX.c ├── FPcontrol-NetBSD.c ├── FPcontrol-Nt.c ├── FPcontrol-OpenBSD.c ├── FPcontrol-Plan9.c ├── FPcontrol-Solaris.c ├── FPcontrol-Unixware.c ├── NOTICE ├── bin │ ├── .gitignore │ ├── fdlibm-stubs │ ├── unif_dtoa │ └── unif_fdlibm ├── blas.c ├── dtoa.c ├── fdim.c ├── fdlibm │ ├── .gitignore │ ├── e_acos.c │ ├── e_acosh.c │ ├── e_asin.c │ ├── e_atan2.c │ ├── e_atanh.c │ ├── e_cosh.c │ ├── e_exp.c │ ├── e_fmod.c │ ├── e_hypot.c │ ├── e_j0.c │ ├── e_j1.c │ ├── e_jn.c │ ├── e_lgamma_r.c │ ├── e_log.c │ ├── e_log10.c │ ├── e_pow.c │ ├── e_rem_pio2.c │ ├── e_remainder.c │ ├── e_sinh.c │ ├── e_sqrt.c │ ├── fdlibm.h │ ├── k_cos.c │ ├── k_rem_pio2.c │ ├── k_sin.c │ ├── k_tan.c │ ├── readme │ ├── s_asinh.c │ ├── s_atan.c │ ├── s_cbrt.c │ ├── s_ceil.c │ ├── s_copysign.c │ ├── s_cos.c │ ├── s_erf.c │ ├── s_expm1.c │ ├── s_fabs.c │ ├── s_finite.c │ ├── s_floor.c │ ├── s_ilogb.c │ ├── s_isnan.c │ ├── s_log1p.c │ ├── s_modf.c │ ├── s_nextafter.c │ ├── s_rint.c │ ├── s_scalbn.c │ ├── s_sin.c │ ├── s_tan.c │ └── s_tanh.c ├── g_fmt.c ├── gemm.c ├── gfltconv.c ├── mkfile └── pow10.c ├── libmemdraw ├── .gitignore ├── NOTICE ├── alloc.c ├── arc.c ├── cload.c ├── cmap.c ├── cread.c ├── defont.c ├── draw.c ├── drawtest.c ├── ellipse.c ├── fillpoly.c ├── hwdraw.c ├── icossin.c ├── icossin2.c ├── iprint.c ├── line.c ├── load.c ├── mkfile ├── mkfile-FreeBSD ├── mkfile-Inferno ├── mkfile-Irix ├── mkfile-Linux ├── mkfile-MacOSX ├── mkfile-NetBSD ├── mkfile-Nt ├── mkfile-OpenBSD ├── mkfile-Plan9 ├── mkfile-Solaris ├── mkfile-os ├── openmemsubfont.c ├── poly.c ├── read.c ├── string.c ├── subfont.c ├── unload.c └── write.c ├── libmemlayer ├── .gitignore ├── NOTICE ├── draw.c ├── lalloc-x11.c ├── lalloc.c ├── layerop.c ├── ldelete.c ├── lhide.c ├── line.c ├── load.c ├── lorigin.c ├── lreshape.c ├── lsetrefresh.c ├── ltofront.c ├── ltorear.c ├── mkfile ├── mkfile-FreeBSD ├── mkfile-Hp ├── mkfile-Inferno ├── mkfile-Irix ├── mkfile-Linux ├── mkfile-MacOSX ├── mkfile-NetBSD ├── mkfile-Nt ├── mkfile-OpenBSD ├── mkfile-Plan9 ├── mkfile-Posix ├── mkfile-Solaris ├── mkfile-Unixware ├── mkfile-os └── unload.c ├── libmp ├── .gitignore ├── Inferno-386 │ ├── .gitignore │ ├── mkfile │ ├── mpdigdiv.s │ ├── mpvecadd.s │ ├── mpvecdigmuladd.s │ ├── mpvecdigmulsub.s │ └── mpvecsub.s ├── Inferno-amd64 │ ├── .gitignore │ ├── mkfile │ ├── mpdigdiv.s │ ├── mpvecadd.s │ ├── mpvecdigmuladd.s │ ├── mpvecdigmulsub.s │ └── mpvecsub.s ├── Inferno-mips │ ├── .gitignore │ ├── mkfile │ ├── mpdigdiv.s │ ├── mpvecadd.s │ ├── mpvecdigmuladd.s │ ├── mpvecdigmulsub.s │ └── mpvecsub.s ├── Inferno-power │ ├── .gitignore │ ├── mkfile │ ├── mpvecadd.s │ ├── mpvecdigmuladd.s │ ├── mpvecdigmulsub.s │ └── mpvecsub.s ├── NOTICE ├── Plan9-386 │ ├── .gitignore │ ├── mkfile │ ├── mpdigdiv.s │ ├── mpvecadd.s │ ├── mpvecdigmuladd.s │ ├── mpvecdigmulsub.s │ └── mpvecsub.s ├── Plan9-amd64 │ ├── .gitignore │ ├── mkfile │ ├── mpdigdiv.s │ ├── mpvecadd.s │ ├── mpvecdigmuladd.s │ ├── mpvecdigmulsub.s │ └── mpvecsub.s ├── Plan9-mips │ ├── .gitignore │ ├── mkfile │ ├── mpdigdiv.s │ ├── mpvecadd.s │ ├── mpvecdigmuladd.s │ ├── mpvecdigmulsub.s │ └── mpvecsub.s ├── Plan9-power │ ├── .gitignore │ ├── mkfile │ ├── mpvecadd.s │ ├── mpvecdigmuladd.s │ ├── mpvecdigmulsub.s │ └── mpvecsub.s ├── bigtest.c ├── mkfile ├── mtest.c ├── port │ ├── .gitignore │ ├── betomp.c │ ├── crt.c │ ├── crttest.c │ ├── dat.h │ ├── letomp.c │ ├── mkfile │ ├── mpadd.c │ ├── mpaux.c │ ├── mpcmp.c │ ├── mpdigdiv.c │ ├── mpdiv.c │ ├── mpeuclid.c │ ├── mpexp.c │ ├── mpextendedgcd.c │ ├── mpfactorial.c │ ├── mpfmt.c │ ├── mpinvert.c │ ├── mpleft.c │ ├── mpmod.c │ ├── mpmul.c │ ├── mprand.c │ ├── mpright.c │ ├── mpsub.c │ ├── mptobe.c │ ├── mptoi.c │ ├── mptole.c │ ├── mptoui.c │ ├── mptouv.c │ ├── mptov.c │ ├── mpvecadd.c │ ├── mpveccmp.c │ ├── mpvecdigmuladd.c │ ├── mpvecsub.c │ ├── os.h │ ├── reduce-nt │ ├── reduce-rc │ ├── reduce-sh │ └── strtomp.c └── test.c ├── libnandfs ├── .gitignore ├── NOTICE ├── calcformat.c ├── correctauxilliary.c ├── ecc.c ├── eraseblock.c ├── extracttags.c ├── findfreeblock.c ├── formatblock.c ├── getblockstatus.c ├── hamming31_26.c ├── init.c ├── local.h ├── markblockbad.c ├── mkfile ├── open.c ├── readblock.c ├── readpage.c ├── readpageauxilliary.c ├── reformatblock.c ├── setget.c ├── updatepage.c ├── writeblock.c └── writepageauxilliary.c ├── libprefab ├── .gitignore ├── NOTICE ├── box.c ├── compound.c ├── element.c ├── elistelement.c ├── iconbox.c ├── iconelement.c ├── mkfile ├── textbox.c └── textelement.c ├── libsec ├── .gitignore ├── Inferno-386 │ ├── .gitignore │ ├── md5block.s │ ├── mkfile │ └── sha1block.s ├── Inferno-mips │ ├── .gitignore │ ├── md5block.s │ ├── mkfile │ └── sha1block.s ├── NOTICE ├── Plan9-386 │ ├── .gitignore │ ├── md5block.s │ ├── mkfile │ └── sha1block.s ├── Plan9-mips │ ├── .gitignore │ ├── md5block.s │ ├── mkfile │ └── sha1block.s ├── mkfile └── port │ ├── .gitignore │ ├── aes.c │ ├── blowfish.c │ ├── decodepem.c │ ├── des.c │ ├── des3CBC.c │ ├── des3ECB.c │ ├── desCBC.c │ ├── desECB.c │ ├── desmodes.c │ ├── dsaalloc.c │ ├── dsagen.c │ ├── dsaprimes.c │ ├── dsaprivtopub.c │ ├── dsasign.c │ ├── dsaverify.c │ ├── egalloc.c │ ├── egdecrypt.c │ ├── egencrypt.c │ ├── eggen.c │ ├── egprivtopub.c │ ├── egsign.c │ ├── egtest.c │ ├── egverify.c │ ├── fastrand.c │ ├── genprime.c │ ├── genrandom.c │ ├── gensafeprime.c │ ├── genstrongprime.c │ ├── hmac.c │ ├── hmactest.c │ ├── idea.c │ ├── md4.c │ ├── md4test.c │ ├── md5.c │ ├── md5block.c │ ├── md5pickle.c │ ├── mkfile │ ├── nfastrand.c │ ├── primetest.c │ ├── prng.c │ ├── probably_prime.c │ ├── rc4.c │ ├── reduce-nt │ ├── reduce-rc │ ├── reduce-sh │ ├── rsaalloc.c │ ├── rsadecrypt.c │ ├── rsaencrypt.c │ ├── rsafill.c │ ├── rsagen.c │ ├── rsaprivtopub.c │ ├── rsatest.c │ ├── sha1.c │ ├── sha1block.c │ ├── sha1pickle.c │ ├── sha2.c │ ├── sha256block.c │ ├── sha512block.c │ ├── smallprimes.c │ └── smallprimetest.c ├── libtk ├── .gitignore ├── NOTES ├── NOTICE ├── buton.c ├── canvs.c ├── canvs.h ├── canvu.c ├── carcs.c ├── cbits.c ├── cimag.c ├── cline.c ├── colrs.c ├── coval.c ├── cpoly.c ├── crect.c ├── ctext.c ├── cwind.c ├── ebind.c ├── entry.c ├── extns.c ├── frame.c ├── frame.h ├── grids.c ├── image.c ├── label.c ├── label.h ├── listb.c ├── listb.h ├── mail.tk ├── menu.tk ├── menus.c ├── mkfile ├── mkfile-std ├── packr.c ├── panel.c ├── parse.c ├── radio.tk ├── scale.c ├── scrol.c ├── textu.c ├── textw.c ├── textw.h ├── tindx.c ├── tmark.c ├── ttags.c ├── twind.c ├── utils.c ├── varbl.c ├── windw.c └── xdata.c ├── limbo ├── .gitignore ├── NOTICE ├── asm.c ├── com.c ├── decls.c ├── dis.c ├── dtocanon.c ├── ecom.c ├── fns.h ├── gen.c ├── lex.c ├── limbo.h ├── limbo.y ├── mkfile ├── nodes.c ├── optab.c ├── optim.c ├── sbl.c ├── stubs.c ├── typecheck.c └── types.c ├── locale ├── .gitignore ├── Argentina ├── Australia_ACT ├── Australia_Broken-Hill ├── Australia_LHI ├── Australia_NSW ├── Australia_North ├── Australia_Queensland ├── Australia_South ├── Australia_Sturt ├── Australia_Tasmania ├── Australia_Victoria ├── Australia_West ├── Australia_Yancowinna ├── Brazil_Acre ├── Brazil_DeNoronha ├── Brazil_East ├── Brazil_West ├── CET ├── CST.CDT ├── Canada_Atlantic ├── Canada_Central ├── Canada_East-Saskatchewan ├── Canada_Eastern ├── Canada_Mountain ├── Canada_Newfoundland ├── Canada_Pacific ├── Canada_Yukon ├── Chile_Continental ├── Chile_EasterIsland ├── Cuba ├── EET ├── EST.EDT ├── Egypt ├── GB-Eire ├── GMT ├── HST ├── Hongkong ├── Iceland ├── Iran ├── Israel ├── Jamaica ├── Japan ├── Libya ├── MET ├── MST.MDT ├── Mexico_BajaNorte ├── Mexico_BajaSur ├── Mexico_General ├── Moscow ├── NOTICE ├── NZ ├── NZ_CHAT ├── Navajo ├── PRC ├── PST.PDT ├── Poland ├── README ├── ROC ├── ROK ├── Singapore ├── Turkey ├── US_Alaska ├── US_Arizona ├── US_Central ├── US_East-Indiana ├── US_Eastern ├── US_Hawaii ├── US_Michigan ├── US_Mountain ├── US_Pacific ├── US_Yukon ├── W-SU ├── WET ├── en_US │ ├── .gitignore │ ├── dict │ │ ├── .gitignore │ │ └── calendar │ └── location ├── location └── timezone ├── log └── .gitignore ├── makemk.sh ├── man ├── 1 │ ├── .gitignore │ ├── 0intro │ ├── 9win │ ├── INDEX │ ├── acme │ ├── alphabet-abc │ ├── alphabet-fs │ ├── alphabet-grid │ ├── alphabet-main │ ├── ar │ ├── asm │ ├── auplay │ ├── avr │ ├── basename │ ├── bind │ ├── blur │ ├── brutus │ ├── cal │ ├── calc │ ├── calendar │ ├── cat │ ├── cd │ ├── charon │ ├── chgrp │ ├── chmod │ ├── cleanname │ ├── cmp │ ├── collab │ ├── collab-clients │ ├── comm │ ├── cook │ ├── cp │ ├── cprof │ ├── cpu │ ├── crypt │ ├── date │ ├── dd │ ├── deb │ ├── diff │ ├── disdep │ ├── dmview │ ├── du │ ├── ebook │ ├── echo │ ├── emu │ ├── env │ ├── fc │ ├── filename │ ├── fmt │ ├── fortune │ ├── freq │ ├── fs │ ├── ftest │ ├── ftree │ ├── gettar │ ├── grep │ ├── grid-monitor │ ├── grid-ns │ ├── grid-query │ ├── grid-register │ ├── grid-session │ ├── gzip │ ├── idea │ ├── itest │ ├── keyboard │ ├── kill │ ├── limbo │ ├── listen │ ├── logon │ ├── logwindow │ ├── look │ ├── ls │ ├── m4 │ ├── man │ ├── mash │ ├── mash-make │ ├── mash-tk │ ├── math-misc │ ├── mc │ ├── mdb │ ├── miniterm │ ├── mk │ ├── mkdir │ ├── mprof │ ├── mux │ ├── mv │ ├── netkey │ ├── netstat │ ├── ns │ ├── nsbuild │ ├── os │ ├── p │ ├── passwd │ ├── pipefile │ ├── plumb │ ├── prof │ ├── ps │ ├── pwd │ ├── rcmd │ ├── read │ ├── rm │ ├── runas │ ├── secstore │ ├── sendmail │ ├── sh │ ├── sh-alphabet │ ├── sh-arg │ ├── sh-csv │ ├── sh-expr │ ├── sh-file2chan │ ├── sh-mload │ ├── sh-regex │ ├── sh-sexprs │ ├── sh-std │ ├── sh-string │ ├── sh-test │ ├── sh-tk │ ├── sleep │ ├── sort │ ├── spree-join │ ├── stack │ ├── stream │ ├── strings │ ├── sum │ ├── tail │ ├── tcs │ ├── tee │ ├── telnet │ ├── time │ ├── timestamp │ ├── tiny │ ├── tkcmd │ ├── tktester │ ├── toolbar │ ├── touch │ ├── tr │ ├── tsort │ ├── unicode │ ├── uniq │ ├── units │ ├── uuencode │ ├── vacget │ ├── wc │ ├── webgrab │ ├── wish │ ├── wm │ ├── wm-misc │ ├── wm-sh │ ├── xd │ ├── yacc │ └── zeros ├── 2 │ ├── .gitignore │ ├── 0intro │ ├── 9p-ninep │ ├── INDEX │ ├── alphabet-intro │ ├── arg │ ├── asn1 │ ├── attrdb │ ├── bloomfilter │ ├── bufio │ ├── bufio-chanfill │ ├── cfg │ ├── command │ ├── complete │ ├── convcs │ ├── crc │ ├── crypt-0intro │ ├── crypt-crypt │ ├── crypt-dsagen │ ├── crypt-gensk │ ├── crypt-rc4 │ ├── crypt-sha1 │ ├── csv │ ├── daytime │ ├── dbm │ ├── debug │ ├── devpointer │ ├── dhcpclient │ ├── dial │ ├── dialog │ ├── dict │ ├── dis │ ├── diskblocks │ ├── disks │ ├── dividers │ ├── draw-0intro │ ├── draw-context │ ├── draw-display │ ├── draw-example │ ├── draw-font │ ├── draw-image │ ├── draw-point │ ├── draw-pointer │ ├── draw-rect │ ├── draw-screen │ ├── drawmux │ ├── encoding │ ├── env │ ├── ether │ ├── exception │ ├── factotum │ ├── filepat │ ├── filter │ ├── filter-deflate │ ├── filter-slip │ ├── format │ ├── fsproto │ ├── geodesy │ ├── hash │ ├── ida │ ├── imagefile │ ├── ip │ ├── ipints │ ├── ipints-genprime │ ├── ir │ ├── itslib │ ├── json │ ├── keyring-0intro │ ├── keyring-auth │ ├── keyring-certtostr │ ├── keyring-crypt │ ├── keyring-gensk │ ├── keyring-getmsg │ ├── keyring-getstring │ ├── keyring-ipint │ ├── keyring-rc4 │ ├── keyring-sha1 │ ├── keyset │ ├── lists │ ├── lock │ ├── math-0intro │ ├── math-elem │ ├── math-export │ ├── math-fp │ ├── math-linalg │ ├── mpeg │ ├── msgio │ ├── names │ ├── newns │ ├── palmfile │ ├── plumbmsg │ ├── pop3 │ ├── popup │ ├── prefab-0intro │ ├── prefab-compound │ ├── prefab-element │ ├── prefab-environ │ ├── prefab-style │ ├── print │ ├── prof │ ├── pslib │ ├── rabin │ ├── rand │ ├── readdir │ ├── regex │ ├── registries │ ├── rfc822 │ ├── scsiio │ ├── secstore │ ├── security-0intro │ ├── security-auth │ ├── security-login │ ├── security-oldauth │ ├── security-random │ ├── security-ssl │ ├── selectfile │ ├── sets │ ├── sexprs │ ├── sh │ ├── smtp │ ├── spki │ ├── spki-verifier │ ├── spree │ ├── spree-allow │ ├── spree-cardlib │ ├── spree-gather │ ├── spree-objstore │ ├── srv │ ├── string │ ├── stringinttab │ ├── styx │ ├── styxconv │ ├── styxflush │ ├── styxpersist │ ├── styxservers │ ├── styxservers-nametree │ ├── sys-0intro │ ├── sys-bind │ ├── sys-byte2char │ ├── sys-chdir │ ├── sys-dial │ ├── sys-dirread │ ├── sys-dup │ ├── sys-export │ ├── sys-fauth │ ├── sys-fd2path │ ├── sys-file2chan │ ├── sys-fversion │ ├── sys-iounit │ ├── sys-millisec │ ├── sys-open │ ├── sys-pctl │ ├── sys-pipe │ ├── sys-print │ ├── sys-read │ ├── sys-remove │ ├── sys-seek │ ├── sys-self │ ├── sys-sleep │ ├── sys-stat │ ├── sys-tokenize │ ├── sys-utfbytes │ ├── sys-werrstr │ ├── tabs │ ├── tftp │ ├── timers │ ├── tk │ ├── tkclient │ ├── translate │ ├── ubfa │ ├── venti │ ├── virgil │ ├── volume │ ├── w3c-css │ ├── w3c-uris │ ├── w3c-xpointers │ ├── wait │ ├── wmclient │ ├── wmlib │ ├── wmsrv │ ├── workdir │ └── xml ├── 3 │ ├── .gitignore │ ├── 0intro │ ├── INDEX │ ├── arch │ ├── audio │ ├── boot │ ├── cap │ ├── cmd │ ├── cons │ ├── dbg │ ├── draw │ ├── ds │ ├── dup │ ├── dynld │ ├── eia │ ├── env │ ├── ether │ ├── flash │ ├── floppy │ ├── fpga │ ├── fs │ ├── ftl │ ├── gpio │ ├── i2c │ ├── i82365 │ ├── indir │ ├── ip │ ├── kprof │ ├── logfs │ ├── lpt │ ├── mnt │ ├── mpeg │ ├── pbus │ ├── pipe │ ├── plap │ ├── pnp │ ├── pointer │ ├── prof │ ├── prog │ ├── root │ ├── rtc │ ├── sd │ ├── sign │ ├── snarf │ ├── srv │ ├── srv9 │ ├── ssl │ ├── switch │ ├── tinyfs │ ├── tls │ ├── touch │ ├── tv │ ├── usb │ ├── vga │ └── vid ├── 4 │ ├── .gitignore │ ├── 0intro │ ├── 9srvfs │ ├── INDEX │ ├── acme │ ├── archfs │ ├── dbfs │ ├── dossrv │ ├── export │ ├── factotum │ ├── ftpfs │ ├── grid-cpu │ ├── import │ ├── iostats │ ├── keyfs │ ├── keysrv │ ├── kfs │ ├── lockfs │ ├── logfile │ ├── memfs │ ├── mntgen │ ├── namespace │ ├── palmsrv │ ├── pipefs │ ├── ramfile │ ├── registry │ ├── spree │ ├── tarfs │ ├── trfs │ └── vacfs ├── 5 │ ├── .gitignore │ ├── 0intro │ ├── INDEX │ ├── attach │ ├── clunk │ ├── error │ ├── flush │ ├── open │ ├── read │ ├── remove │ ├── stat │ ├── version │ └── walk ├── 6 │ ├── .gitignore │ ├── 0intro │ ├── INDEX │ ├── attrdb │ ├── audio │ ├── auth │ ├── colour │ ├── dis │ ├── font │ ├── image │ ├── json │ ├── keyboard │ ├── keys │ ├── keytext │ ├── login │ ├── man │ ├── namespace │ ├── ndb │ ├── plumbing │ ├── proto │ ├── regexp │ ├── sbl │ ├── scancode │ ├── sexprs │ ├── translate │ ├── ubfa │ ├── users │ └── utf ├── 7 │ ├── .gitignore │ ├── 0intro │ ├── INDEX │ ├── cddb │ ├── db │ └── dbsrv ├── 8 │ ├── .gitignore │ ├── 0intro │ ├── INDEX │ ├── ai2key │ ├── applylog │ ├── bootpd │ ├── changelogin │ ├── collabsrv │ ├── create │ ├── createsignerkey │ ├── cs │ ├── dhcp │ ├── dns │ ├── fpgaload │ ├── ftl │ ├── getauthinfo │ ├── httpd │ ├── init │ ├── kfscmd │ ├── logind │ ├── mangaload │ ├── manufacture │ ├── mkfs │ ├── ping │ ├── plumber │ ├── prep │ ├── rdbgsrv │ ├── register │ ├── rip │ ├── rstyxd │ ├── shutdown │ ├── signer │ ├── sntp │ ├── styxchat │ ├── styxmon │ ├── svc │ ├── touchcal │ └── virgild ├── 9 │ ├── .gitignore │ ├── 0intro │ ├── 1copyright │ ├── INDEX │ ├── bind │ ├── button │ ├── canvas │ ├── checkbutton │ ├── choicebutton │ ├── cursor │ ├── destroy │ ├── entry │ ├── focus │ ├── frame │ ├── grab │ ├── grid │ ├── image │ ├── label │ ├── listbox │ ├── lower │ ├── menu │ ├── menubutton │ ├── options │ ├── pack │ ├── panel │ ├── radiobutton │ ├── raise │ ├── scale │ ├── scrollbar │ ├── see │ ├── send │ ├── text │ ├── types │ ├── update │ └── variable ├── 10 │ ├── .gitignore │ ├── 0intro │ ├── 2a │ ├── 2c │ ├── 2l │ ├── 5coff │ ├── 5cv │ ├── 9load │ ├── INDEX │ ├── acid │ ├── allocb │ ├── ar │ ├── atoi │ ├── c2l │ ├── conf │ ├── delay │ ├── dev │ ├── devattach │ ├── dmainit │ ├── dynld │ ├── error │ ├── eve │ ├── getfields │ ├── iar │ ├── inb │ ├── inm │ ├── intrenable │ ├── kbdputc │ ├── kproc │ ├── kprof │ ├── ksize │ ├── kstrip │ ├── lock │ ├── malloc │ ├── master │ ├── memory │ ├── mk │ ├── ms2 │ ├── newchan │ ├── ntsrv │ ├── odbc │ ├── panic │ ├── parsecmd │ ├── plan9.ini │ ├── print │ ├── qio │ ├── qlock │ ├── readnum │ ├── ref │ ├── rune │ ├── seconds │ ├── sleep │ ├── splhi │ ├── srclist │ ├── strcat │ ├── styx │ ├── styxserver │ └── xalloc ├── .gitignore ├── fonts ├── index ├── lib │ ├── .gitignore │ ├── checkman.awk │ ├── colophon │ ├── lookman │ │ ├── .gitignore │ │ ├── junkwords │ │ └── mkindex │ ├── notes │ ├── preface │ ├── secindex │ ├── title │ └── trademarks └── mkfile ├── mkconfig ├── mkfile ├── mkfiles ├── .gitignore ├── mkdis ├── mkfile-DragonFly-386 ├── mkfile-FreeBSD-386 ├── mkfile-Hp-s800 ├── mkfile-Inferno-386 ├── mkfile-Inferno-68000 ├── mkfile-Inferno-arm ├── mkfile-Inferno-mips ├── mkfile-Inferno-power ├── mkfile-Inferno-sparc ├── mkfile-Inferno-spim ├── mkfile-Inferno-thumb ├── mkfile-Irix-mips ├── mkfile-Linux-386 ├── mkfile-Linux-arm ├── mkfile-Linux-power ├── mkfile-Linux-spim ├── mkfile-MacOSX-386 ├── mkfile-MacOSX-power ├── mkfile-NetBSD-386 ├── mkfile-Nt-386 ├── mkfile-OpenBSD-386 ├── mkfile-Plan9-386 ├── mkfile-Plan9-68020 ├── mkfile-Plan9-amd64 ├── mkfile-Plan9-arm ├── mkfile-Plan9-mips ├── mkfile-Plan9-power ├── mkfile-Plan9-sparc ├── mkfile-Solaris-386 ├── mkfile-Solaris-sparc ├── mkfile-Unixware-386 ├── mkfile-os-386 ├── mkfile-os-arm ├── mkfile-os-power ├── mkfile-os-sparc ├── mkfile-os-spim ├── mkfile-os-thumb ├── mkhost-DragonFly ├── mkhost-FreeBSD ├── mkhost-Hp ├── mkhost-Inferno ├── mkhost-Irix ├── mkhost-Linux ├── mkhost-MacOSX ├── mkhost-NetBSD ├── mkhost-Nt ├── mkhost-OpenBSD ├── mkhost-Plan9 ├── mkhost-Solaris ├── mkhost-Unixware ├── mkjava ├── mklibsubdirs ├── mkone-nt ├── mkone-rc ├── mkone-sh ├── mksubdirs ├── mksyslib-nt ├── mksyslib-rc └── mksyslib-sh ├── mnt ├── .gitignore ├── dhtfs │ ├── .gitignore │ └── placeholder ├── keys │ ├── .gitignore │ └── alice │ │ ├── .gitignore │ │ └── secret └── registry │ └── .gitignore ├── module ├── .gitignore ├── 9p.m ├── NOTICE ├── alphabet.m ├── alphabet │ ├── .gitignore │ ├── abc.m │ ├── abcstyx.m │ ├── abctypes.m │ ├── endpoints.m │ ├── extvalues.m │ ├── fs.m │ ├── fstypes.m │ ├── grid.m │ ├── gridtypes.m │ └── reports.m ├── arg.m ├── asn1.m ├── attrdb.m ├── auth9.m ├── bench.m ├── bigkey.m ├── bloomfilter.m ├── brutus.m ├── brutusext.m ├── bufio.m ├── bundle.m ├── cci.m ├── cfg.m ├── cfgfile.m ├── complete.m ├── convcs.m ├── crc.m ├── crypt.m ├── css.m ├── csv.m ├── cvsimages.m ├── daytime.m ├── db.m ├── dbm.m ├── debug.m ├── devpointer.m ├── dhcp.m ├── dht.m ├── dial.m ├── dialog.m ├── dict.m ├── dis.m ├── diskblocks.m ├── disks.m ├── dividers.m ├── draw.m ├── ecmascript.m ├── emio.m ├── encoding.m ├── env.m ├── ether.m ├── exception.m ├── factotum.m ├── ffts.m ├── filepat.m ├── filter.m ├── format.m ├── freetype.m ├── fslib.m ├── fsproto.m ├── gamer.m ├── gr.m ├── grid │ ├── .gitignore │ ├── announce.m │ ├── browse.m │ ├── browser.m │ ├── demo │ │ ├── .gitignore │ │ ├── block.m │ │ └── exproc.m │ ├── fbrowse.m │ ├── pathreader.m │ ├── readjpg.m │ ├── regpoll.m │ └── srvbrowse.m ├── hash.m ├── hashtable.m ├── html.m ├── ida.m ├── imagefile.m ├── inflate.m ├── ip.m ├── ipattr.m ├── ipints.m ├── ir.m ├── itslib.m ├── json.m ├── keyboard.m ├── keyring.m ├── keyset.m ├── libc.m ├── libc0.m ├── linalg.m ├── lists.m ├── loader.m ├── lock.m ├── man.m ├── math.m ├── math │ ├── .gitignore │ ├── geodesy.m │ ├── polyfill.m │ └── polyhedra.m ├── memfs.m ├── mpeg.m ├── msgio.m ├── multistyx.m ├── muxclient.m ├── names.m ├── newns.m ├── oldauth.m ├── palm.m ├── palmfile.m ├── pkcs.m ├── plumbmsg.m ├── pop3.m ├── popup.m ├── powerman.m ├── prefab.m ├── print.m ├── profile.m ├── pslib.m ├── quicktime.m ├── rabin.m ├── rand.m ├── readdir.m ├── regex.m ├── regexutils.m ├── registries.m ├── rfc822.m ├── riff.m ├── rudp.m ├── runt.m ├── scoretable.m ├── scsiio.m ├── secstore.m ├── security.m ├── selectfile.m ├── sets.m ├── sets32.m ├── sexprs.m ├── sh.m ├── smtp.m ├── sort.m ├── spki.m ├── srv.m ├── srvrunt.b ├── ssl3.m ├── sslsession.m ├── string.m ├── strinttab.m ├── strokes.m ├── styx.m ├── styxconv.m ├── styxflush.m ├── styxlib.m ├── styxpersist.m ├── styxservers.m ├── sys.m ├── tables.m ├── tabs.m ├── tcllib.m ├── tftp.m ├── timers.m ├── titlebar.m ├── tk.m ├── tkclient.m ├── translate.m ├── ubfa.m ├── unbundle.m ├── uris.m ├── url.m ├── usb.m ├── vac.m ├── venti.m ├── volume.m ├── wait.m ├── watchvars.m ├── webget.m ├── winplace.m ├── wmclient.m ├── wmlib.m ├── wmsrv.m ├── workdir.m ├── x509.m ├── xml.m └── xpointers.m ├── n ├── .gitignore └── prog │ └── .gitignore ├── opt ├── .gitignore └── README ├── os ├── .gitignore ├── NOTICE ├── README ├── boot │ ├── .gitignore │ ├── README │ ├── arm1110 │ │ ├── .gitignore │ │ ├── Mk │ │ ├── dat.h │ │ ├── donprint.c │ │ ├── fns.h │ │ ├── il.s │ │ ├── imain.c │ │ ├── inflate.c │ │ ├── io.h │ │ ├── l.s │ │ ├── lib.h │ │ ├── map │ │ ├── mem.h │ │ ├── mkfile │ │ ├── print.c │ │ └── uart.c │ ├── libflate │ │ ├── .gitignore │ │ ├── LICENCE │ │ ├── NOTICE │ │ ├── adler.c │ │ ├── crc.c │ │ ├── deflate.c │ │ ├── deflateblock.c │ │ ├── deflatezlib.c │ │ ├── deflatezlibblock.c │ │ ├── flateerr.c │ │ ├── inflate.c │ │ ├── inflateblock.c │ │ ├── inflatezlib.c │ │ ├── inflatezlibblock.c │ │ ├── mkfile │ │ └── zlib.h │ ├── mpc │ │ ├── .gitignore │ │ ├── NOTICE │ │ ├── alarm.c │ │ ├── all.h │ │ ├── archfads.c │ │ ├── archfads.h │ │ ├── archpaq.c │ │ ├── archpaq.h │ │ ├── boot.h │ │ ├── bootp.c │ │ ├── clock.c │ │ ├── conf.c │ │ ├── console.c │ │ ├── cpm.c │ │ ├── crc32.c │ │ ├── dat.h │ │ ├── defont0.c │ │ ├── devether.c │ │ ├── devuart.c │ │ ├── dload.c │ │ ├── donprint.c │ │ ├── dosboot.c │ │ ├── dosfs.h │ │ ├── etherif.h │ │ ├── etherscc.c │ │ ├── fblt.c │ │ ├── flash.c │ │ ├── fns.h │ │ ├── gbitbltclip.c │ │ ├── gnot.h │ │ ├── i2c.c │ │ ├── initfads.c │ │ ├── initpaq.c │ │ ├── initrpcg.c │ │ ├── io.h │ │ ├── ip.h │ │ ├── l.s │ │ ├── lib.h │ │ ├── main.c │ │ ├── mem.c │ │ ├── mem.h │ │ ├── mkfile │ │ ├── ms2.c │ │ ├── plan9boot.c │ │ ├── qio.c │ │ ├── rmap.c │ │ ├── screen.c │ │ ├── sload.c │ │ ├── squeeze.h │ │ ├── trap.c │ │ ├── uartboot.c │ │ ├── ureg.h │ │ └── zqs.c │ ├── pc │ │ ├── .gitignore │ │ ├── 8250.c │ │ ├── LICENCE │ │ ├── NOTICE │ │ ├── ahci.h │ │ ├── alarm.c │ │ ├── aoe.h │ │ ├── apm.c │ │ ├── bcom.c │ │ ├── boot.c │ │ ├── bootld.c │ │ ├── bootp.c │ │ ├── cga.c │ │ ├── cis.c │ │ ├── clock.c │ │ ├── conf.c │ │ ├── console.c │ │ ├── dat.h │ │ ├── devbios.c │ │ ├── devbios.h │ │ ├── devfloppy.c │ │ ├── devfloppy.h │ │ ├── devi82365.c │ │ ├── devpccard.c │ │ ├── devsd.c │ │ ├── dma.c │ │ ├── dosboot.c │ │ ├── dosfs.h │ │ ├── eipfmt.c │ │ ├── error.h │ │ ├── ether.c │ │ ├── ether2000.c │ │ ├── ether2114x.c │ │ ├── ether589.c │ │ ├── ether79c970.c │ │ ├── ether8003.c │ │ ├── ether8139.c │ │ ├── ether8169.c │ │ ├── ether82557.c │ │ ├── ether82563.c │ │ ├── ether83815.c │ │ ├── ether8390.c │ │ ├── ether8390.h │ │ ├── etherdp83820.c │ │ ├── etherec2t.c │ │ ├── etherelnk3.c │ │ ├── etherelnk3x.c │ │ ├── etherga620.c │ │ ├── etherga620fw.h │ │ ├── etherif.h │ │ ├── etherigbe.c │ │ ├── ethermii.c │ │ ├── ethermii.h │ │ ├── etherrhine.c │ │ ├── fns.h │ │ ├── fs.c │ │ ├── fs.h │ │ ├── getcallerpc.c │ │ ├── ilock.c │ │ ├── inflate.c │ │ ├── io.h │ │ ├── ip.h │ │ ├── kbd.c │ │ ├── kfs.h │ │ ├── kfsboot.c │ │ ├── l.s │ │ ├── lib.h │ │ ├── load.c │ │ ├── mbr.s │ │ ├── mem.h │ │ ├── memory.c │ │ ├── mkfile │ │ ├── noether.c │ │ ├── part.c │ │ ├── pbs.s │ │ ├── pbsdisk │ │ ├── pbsdisk.s │ │ ├── pbsdisklba │ │ ├── pbsdisklba.s │ │ ├── pbslba.s │ │ ├── pci.c │ │ ├── print.c │ │ ├── queue.c │ │ ├── sd.h │ │ ├── sd53c8xx.c │ │ ├── sd53c8xx.i │ │ ├── sdaoe.c │ │ ├── sdata.c │ │ ├── sdbios.c │ │ ├── sdiahci.c │ │ ├── sdmylex.c │ │ ├── sdscsi.c │ │ ├── trap.c │ │ ├── ureg.h │ │ └── x16.h │ ├── puma │ │ ├── .gitignore │ │ ├── 8250.c │ │ ├── alarm.c │ │ ├── armv4.h │ │ ├── boot.h │ │ ├── bootp.c │ │ ├── cga.c │ │ ├── clock.c │ │ ├── conf.c │ │ ├── console.c │ │ ├── dat.h │ │ ├── div.s │ │ ├── donprint.c │ │ ├── dosboot.c │ │ ├── dosfs.h │ │ ├── ebsit.trap.c │ │ ├── ether.c │ │ ├── ether.h │ │ ├── ether8900.c │ │ ├── flash.c │ │ ├── fns.h │ │ ├── hard.c │ │ ├── io.h │ │ ├── ip.h │ │ ├── kbd.c │ │ ├── l.s │ │ ├── lib.h │ │ ├── main.c │ │ ├── mem.h │ │ ├── mkfile │ │ ├── outb.c │ │ ├── plan9boot.c │ │ ├── puma.c │ │ ├── puma.h │ │ ├── qio.c │ │ ├── rmap.c │ │ ├── squeeze.h │ │ ├── sum.c │ │ ├── trap.c │ │ ├── ureg.h │ │ └── zqs.c │ └── rpcg │ │ ├── .gitignore │ │ ├── NOTICE │ │ ├── alarm.c │ │ ├── all.h │ │ ├── archrpcg.c │ │ ├── archrpcg.h │ │ ├── boot.h │ │ ├── bootp.c │ │ ├── clock.c │ │ ├── conf.c │ │ ├── console.c │ │ ├── cpm.c │ │ ├── crc32.c │ │ ├── dat.h │ │ ├── defont0.c │ │ ├── devether.c │ │ ├── devuart.c │ │ ├── dload.c │ │ ├── donprint.c │ │ ├── dosboot.c │ │ ├── dosfs.h │ │ ├── etherif.h │ │ ├── etherscc.c │ │ ├── fblt.c │ │ ├── flash.c │ │ ├── fns.h │ │ ├── g.mx │ │ ├── gbitbltclip.c │ │ ├── gnot.h │ │ ├── i2c.c │ │ ├── initfads.c │ │ ├── initpaq.c │ │ ├── initrpcg.c │ │ ├── io.h │ │ ├── ip.h │ │ ├── l.s │ │ ├── lib.h │ │ ├── libg.h │ │ ├── main.c │ │ ├── mem.c │ │ ├── mem.h │ │ ├── mkfile │ │ ├── ms2.c │ │ ├── plan9boot.c │ │ ├── qbromrpcg │ │ ├── qio.c │ │ ├── rmap.c │ │ ├── screen.c │ │ ├── sload │ │ ├── sload.c │ │ ├── squeeze.h │ │ ├── trap.c │ │ ├── uartboot.c │ │ ├── ureg.h │ │ └── zqs.c ├── cerf1110 │ ├── .gitignore │ ├── Mk │ ├── NOTICE │ ├── README │ ├── archcerf.c │ ├── cerf │ ├── dat.h │ ├── devata.c │ ├── devcerf.c │ ├── ether8900.c │ ├── fns.h │ ├── io.h │ ├── main.c │ ├── mem.h │ └── mkfile ├── cerf250 │ ├── .gitignore │ ├── NOTICE │ ├── README │ ├── archcerf.c │ ├── cerf │ ├── dat.h │ ├── devpcf8563.c │ ├── ether91c111.c │ ├── fns.h │ ├── io.h │ ├── main.c │ ├── mem.h │ ├── mkfile │ └── uart.h ├── cerf405 │ ├── .gitignore │ ├── NOTICE │ ├── README │ ├── cerf │ ├── clock.c │ ├── compile.c │ ├── dat.h │ ├── devboot.c │ ├── devether.c │ ├── devrtc.c │ ├── devuart.c │ ├── etheremac.c │ ├── etherif.h │ ├── fns.h │ ├── fpi.h │ ├── fpipower.c │ ├── gpio.c │ ├── iic.c │ ├── inb.s │ ├── io.h │ ├── l.s │ ├── main.c │ ├── mal.c │ ├── mem.h │ ├── mkfile │ ├── mmu.c │ ├── nand.c │ ├── nofp.s │ ├── pci.c │ ├── physmem.h │ ├── powerbreak.c │ ├── rmap.c │ ├── tlb.s │ ├── trap.c │ ├── uart.c │ └── uart.h ├── fads │ ├── .gitignore │ ├── NOTICE │ ├── archfads.c │ ├── archfads.h │ ├── dat.h │ ├── fads │ ├── fns.h │ ├── io.h │ ├── main.c │ ├── mem.h │ ├── mkfile │ ├── mmu.c │ └── tlb.s ├── gum │ ├── .gitignore │ ├── Firstboot │ ├── NOTICE │ ├── README │ └── gum ├── init │ ├── .gitignore │ ├── README │ ├── bootinit.b │ ├── cerf405.b │ ├── cerfinit.b │ ├── evalinit.b │ ├── geninit.b │ ├── i4e.b │ ├── init.b │ ├── ipaqinit.b │ ├── ipeinit.b │ ├── jsinit.b │ ├── mkfile │ ├── mpcinit.b │ ├── pcdemo.b │ ├── pcinit.b │ ├── reminit.b │ ├── rpcginit.b │ ├── shell.b │ ├── soeinit.b │ ├── srvinit.b │ └── wminit.b ├── ip │ ├── .gitignore │ ├── arp.c │ ├── bootp.c │ ├── compress.c │ ├── devip.c │ ├── dhcp.c │ ├── eipconvtest.c │ ├── esp.c │ ├── ethermedium.c │ ├── gre.c │ ├── icmp.c │ ├── icmp6.c │ ├── igmp.c │ ├── ihbootp.c │ ├── il.c │ ├── ip.c │ ├── ip.h │ ├── ipaux.c │ ├── ipifc.c │ ├── ipmux.c │ ├── iproute.c │ ├── iprouter.c │ ├── ipv6.c │ ├── ipv6.h │ ├── kernel.h │ ├── loopbackmedium.c │ ├── netdevmedium.c │ ├── netlog.c │ ├── nullmedium.c │ ├── pktmedium.c │ ├── plan9.c │ ├── ppp.c │ ├── ppp.h │ ├── pppmedium.c │ ├── ptclbsum.c │ ├── rudp.c │ ├── tcp.c │ └── udp.c ├── ipaq1110 │ ├── .gitignore │ ├── Mk │ ├── NOTICE │ ├── README │ ├── archipaq.c │ ├── dat.h │ ├── defont.c │ ├── devaudio.c │ ├── devipaq.c │ ├── etherwavelan.c │ ├── fns.h │ ├── inflate │ ├── io.h │ ├── ipaq │ ├── lcd.c │ ├── main.c │ ├── mem.h │ ├── mkfile │ ├── screen.c │ ├── screen.h │ ├── tstdraw.b │ └── upd ├── ipengine │ ├── .gitignore │ ├── NOTICE │ ├── README │ ├── archipe.c │ ├── archipe.h │ ├── dat.h │ ├── devfpga.c │ ├── flash28f320b3b.c │ ├── fns.h │ ├── io.h │ ├── ipe │ ├── main.c │ ├── mem.h │ ├── mkfile │ ├── mmu.c │ └── tlb.s ├── js │ ├── .gitignore │ ├── README │ ├── audio.h │ ├── clock.c │ ├── cs4231.h │ ├── dat.h │ ├── devcs4231.c │ ├── devrtc.c │ ├── fns.h │ ├── fsv.c │ ├── io.h │ ├── iob.c │ ├── js │ ├── kbd.c │ ├── l.s │ ├── main.c │ ├── mem.h │ ├── mkfile │ ├── mmu.c │ ├── ns16552.h │ ├── rom.c │ ├── rom.h │ ├── screen.c │ ├── screen.h │ ├── softcursor.h │ ├── superio.c │ ├── trap.c │ └── ureg.h ├── ks32 │ ├── .gitignore │ ├── Mk │ ├── NOTICE │ ├── archevaluator7t.c │ ├── armv7.h │ ├── clock.c │ ├── dat.h │ ├── devuart.c │ ├── download.ps │ ├── evaluator7t │ ├── fns.h │ ├── fpi.h │ ├── fpiarm.c │ ├── io.h │ ├── l.s │ ├── main.c │ ├── mem.h │ ├── mkfile │ ├── not.c │ ├── squirt │ └── trap.c ├── manga │ ├── .gitignore │ ├── Mk │ ├── archmanga.c │ ├── clock.c │ ├── dat.h │ ├── devether.c │ ├── devusb.c │ ├── eswnotes │ ├── ether8139.c │ ├── etherif.h │ ├── etherks8695.c │ ├── flashif.h │ ├── fns.h │ ├── fpi.h │ ├── fpiarm.c │ ├── gpio.c │ ├── inb.c │ ├── io.h │ ├── ioring.c │ ├── l.s │ ├── main.c │ ├── manga │ ├── mem.h │ ├── mkfile │ ├── mmu.c │ ├── pci.c │ ├── pinflate │ ├── trap.c │ ├── uartks8695.c │ ├── usb.h │ └── usbuhci.c ├── mpc │ ├── .gitignore │ ├── 800io.h │ ├── NOTICE │ ├── clock.c │ ├── cpm.c │ ├── cpmtimer.c │ ├── devata.c │ ├── devbench.c │ ├── devboot.c │ ├── devether.c │ ├── devpcmcia.c │ ├── devrtc.c │ ├── devtouch.c │ ├── devuart.c │ ├── dsp.c │ ├── dsp.h │ ├── etherif.h │ ├── etherscc.c │ ├── faultpower.c │ ├── fp.s │ ├── fpi.h │ ├── fpipower.c │ ├── i2c.c │ ├── i2c_spi.srx │ ├── inb.s │ ├── kbd.c │ ├── l.s │ ├── nofp.s │ ├── pcmcia.h │ ├── pit.c │ ├── powerbreak.c │ ├── rmap.c │ ├── screen.c │ ├── screen.h │ ├── spi.c │ ├── trap.c │ └── usb.h ├── omap │ ├── .gitignore │ └── README ├── pc │ ├── .gitignore │ ├── NOTICE │ ├── README │ ├── apbootstrap.h │ ├── apbootstrap.s │ ├── apic.c │ ├── apm.c │ ├── apmjump.s │ ├── archmp.c │ ├── audio.h │ ├── cga.c │ ├── cgamemscr.c │ ├── crystal.h │ ├── dat.h │ ├── devarch.c │ ├── devds1620.c │ ├── devether.c │ ├── devfloppy.c │ ├── devi82365.c │ ├── devlm78.c │ ├── devlpt.c │ ├── devmouse.c │ ├── devmpeg.c │ ├── devpccard.c │ ├── devpnp.c │ ├── devrtc.c │ ├── devtv.c │ ├── devusb.c │ ├── devvga.c │ ├── devzt5512.c │ ├── dma.c │ ├── ether2000.c │ ├── ether2114x.c │ ├── ether589.c │ ├── ether79c960.c │ ├── ether79c970.c │ ├── ether8003.c │ ├── ether8139.c │ ├── ether82543gc.c │ ├── ether82557.c │ ├── ether83815.c │ ├── ether8390.c │ ├── ether8390.h │ ├── etherdp83820.c │ ├── etherec2t.c │ ├── etherelnk3.c │ ├── etherga620.c │ ├── etherga620fw.h │ ├── etherif.h │ ├── etherigbe.c │ ├── etherrhine.c │ ├── ethersmc.c │ ├── ethervt6102.c │ ├── etherwavelan.c │ ├── flashif.h │ ├── flashzpc.c │ ├── floppy.h │ ├── fns.h │ ├── fpi.h │ ├── fpi387.c │ ├── fpsave.s │ ├── i8250.c │ ├── i8253.c │ ├── i8259.c │ ├── io.h │ ├── kbd.c │ ├── l.s │ ├── main.c │ ├── mem.h │ ├── memory.c │ ├── mkfile │ ├── mmu.c │ ├── mouse.c │ ├── mp.c │ ├── mp.h │ ├── pc │ ├── pc4e │ ├── pcdisk │ ├── pci.acid │ ├── pci.c │ ├── pcidb.acid │ ├── pcmciamodem.c │ ├── piix4smbus.c │ ├── pix │ ├── ps2mouse.c │ ├── ptclbsum386.s │ ├── screen.c │ ├── screen.h │ ├── sd53c8xx.c │ ├── sd53c8xx.i │ ├── sd53c8xx.n │ ├── sdata.c │ ├── sdmylex.c │ ├── sdscsi.c │ ├── trap.c │ ├── tv.h │ ├── uarti8250.c │ ├── uartisa.c │ ├── uartpci.c │ ├── usb.h │ ├── usbuhci.c │ ├── vga.c │ ├── vga.h │ ├── vga3dfx.c │ ├── vgaark2000pv.c │ ├── vgabt485.c │ ├── vgaclgd542x.c │ ├── vgaclgd546x.c │ ├── vgact65545.c │ ├── vgacyber938x.c │ ├── vgaet4000.c │ ├── vgahiqvideo.c │ ├── vgai81x.c │ ├── vgamach64xx.c │ ├── vgamga2164w.c │ ├── vgamga4xx.c │ ├── vganeomagic.c │ ├── vganvidia.c │ ├── vgargb524.c │ ├── vgas3.c │ ├── vgasavage.c │ ├── vgat2r4.c │ ├── vgatvp3020.c │ ├── vgatvp3026.c │ ├── vgavmware.c │ ├── vgax.c │ ├── wavelan.c │ ├── wavelan.h │ ├── x86break.c │ └── zoran.h ├── port │ ├── .gitignore │ ├── NOTICE │ ├── alarm.c │ ├── alloc.c │ ├── allocb.c │ ├── chan.c │ ├── cis.c │ ├── dev.c │ ├── devXXX.c │ ├── devaudio.c │ ├── devbench.c │ ├── devboot.c │ ├── devbridge.c │ ├── devcap.c │ ├── devcons.c │ ├── devdbg.c │ ├── devdraw.c │ ├── devds.c │ ├── devdup.c │ ├── devdynld.c │ ├── devenv.c │ ├── devflash.c │ ├── devftl.c │ ├── devi2c.c │ ├── devindir.c │ ├── devkprof.c │ ├── devlogfs.c │ ├── devloopback.c │ ├── devmnt.c │ ├── devns16552.c │ ├── devpci.c │ ├── devpipe.c │ ├── devpointer.c │ ├── devprof.c │ ├── devprog.c │ ├── devroot.c │ ├── devsd.c │ ├── devsign.c │ ├── devsrv.c │ ├── devssl.c │ ├── devtest.c │ ├── devtinyfs.c │ ├── devtk.c │ ├── devuart.c │ ├── dial.c │ ├── dis.c │ ├── discall.c │ ├── dynld.c │ ├── edf.c │ ├── edf.h │ ├── error.h │ ├── ethermii.c │ ├── ethermii.h │ ├── ethersink.c │ ├── exception.c │ ├── exportfs.c │ ├── flashamd29f0x0.c │ ├── flashcfi16.c │ ├── flashcfi8.c │ ├── flashif.h │ ├── flashintel │ ├── flashnand.c │ ├── fpi.c │ ├── fpimem.c │ ├── inferno.c │ ├── latin1.c │ ├── latin1.h │ ├── lib.h │ ├── log.c │ ├── master │ ├── master.local │ ├── mkdevc │ ├── mkdevlist │ ├── mkfile │ ├── mkroot │ ├── mul64fract.c │ ├── netaux.c │ ├── netif.c │ ├── netif.h │ ├── nocache.c │ ├── nodynld.c │ ├── noenv.c │ ├── noscreen.c │ ├── parse.c │ ├── pgrp.c │ ├── portbreak.c │ ├── portclock.c │ ├── portdat.h │ ├── portfns.h │ ├── portmkfile │ ├── print.c │ ├── proc.c │ ├── qio.c │ ├── qlock.c │ ├── random.c │ ├── rdb.c │ ├── sd.h │ ├── swcursor.c │ ├── sysfile.c │ ├── taslock.c │ ├── tod.c │ ├── uart.h │ └── xalloc.c ├── pxa │ ├── .gitignore │ ├── NOTICE │ ├── clock.c │ ├── devether.c │ ├── devrtc.c │ ├── devuart.c │ ├── dma.c │ ├── etherif.h │ ├── fpi.h │ ├── fpiarm.c │ ├── gpio.c │ ├── i2c.c │ ├── l.s │ ├── mmu.c │ ├── pxaio.h │ ├── sa1110break.c │ └── trap.c ├── rpcg │ ├── .gitignore │ ├── NOTICE │ ├── archrpcg.c │ ├── archrpcg.h │ ├── clock.c │ ├── dat.h │ ├── fns.h │ ├── io.h │ ├── main.c │ ├── mem.h │ ├── mkfile │ ├── mmu.c │ ├── rpcg │ └── tlb.s └── sa1110 │ ├── .gitignore │ ├── clock.c │ ├── devether.c │ ├── devgpio.c │ ├── devpcmcia.c │ ├── devpower.c │ ├── devrtc.c │ ├── devuart.c │ ├── dma.c │ ├── etherif.h │ ├── fpi.h │ ├── fpiarm.c │ ├── gscreen.c │ ├── gscreen.h │ ├── i2c.h │ ├── i2cgpio.c │ ├── l.s │ ├── l3gpio.c │ ├── mmu.c │ ├── sa1110break.c │ ├── sa1110io.h │ ├── softcursor.c │ ├── suspend.c │ └── trap.c ├── program ├── services ├── .gitignore ├── httpd │ ├── .gitignore │ ├── httpd.log │ ├── httpd.rewrite │ └── httpd.suff └── webget │ ├── .gitignore │ ├── help.html │ ├── inferno.gif │ ├── start.html │ ├── vnlogo.gif │ └── webget.log ├── tmp └── .gitignore ├── tools ├── .gitignore ├── NOTICE ├── db │ ├── .gitignore │ ├── infdb.c │ └── mkfile ├── libstyx │ ├── .gitignore │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── mkfile │ ├── styxaux.h │ └── styxserver.c ├── mkfile ├── odbc │ ├── .gitignore │ ├── mkfile │ ├── mkfile-Linux │ ├── mkfile-MacOSX │ ├── mkfile-Nt │ ├── mkfile-Plan9 │ ├── mkfile-Solaris │ └── odbc.c └── styxtest │ ├── .gitignore │ ├── mkfile │ ├── mkfile-FreeBSD │ ├── mkfile-Irix │ ├── mkfile-Linux │ ├── mkfile-MacOSX │ ├── mkfile-Nt │ ├── mkfile-OpenBSD │ ├── mkfile-Plan9 │ ├── mkfile-Solaris │ ├── styxtest.c │ └── styxtest0.c ├── usr ├── .gitignore ├── default │ ├── deploy_cheshire.sh │ ├── dev │ │ ├── cheshire.sh │ │ ├── dht.sh │ │ ├── dhtfs.sh │ │ ├── dhttest.sh │ │ ├── emu.sh │ │ └── rudp.sh │ ├── emustart.sh │ ├── emustop.sh │ ├── lib │ │ ├── deb │ │ ├── plumbing │ │ └── wmsetup │ └── namespace ├── inferno │ ├── .gitignore │ ├── lena.jpg │ ├── lib │ │ ├── .gitignore │ │ └── plumbing │ └── namespace ├── quadrocube │ ├── .gitignore │ ├── dev │ │ └── .gitignore │ ├── keyring │ │ └── .gitignore │ └── lib │ │ └── .gitignore └── zubr │ ├── .gitignore │ ├── dns.b │ ├── keyring │ ├── .gitignore │ └── default │ ├── lena.jpg │ └── lib │ └── .gitignore ├── utils ├── .gitignore ├── 0a │ ├── .gitignore │ ├── a.h │ ├── a.y │ ├── l.s │ ├── lex.c │ └── mkfile ├── 0c │ ├── .gitignore │ ├── cgen.c │ ├── enam.c │ ├── gc.h │ ├── list.c │ ├── mkenam │ ├── mkfile │ ├── mul.c │ ├── peep.c │ ├── reg.c │ ├── sgen.c │ ├── swt.c │ ├── txt.c │ └── v.out.h ├── 0l │ ├── .gitignore │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── asm.c │ ├── enam.c │ ├── l.h │ ├── list.c │ ├── mkfile │ ├── noop.c │ ├── obj.c │ ├── optab.c │ ├── pass.c │ ├── sched.c │ └── span.c ├── 1a │ ├── .gitignore │ ├── a.h │ ├── a.y │ ├── l.s │ ├── lex.c │ └── mkfile ├── 1c │ ├── .gitignore │ ├── cgen.c │ ├── enam.c │ ├── gc.h │ ├── list.c │ ├── mkfile │ ├── mul.c │ ├── peep.c │ ├── reg.c │ ├── sgen.c │ ├── swt.c │ └── txt.c ├── 1l │ ├── .gitignore │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── asm.c │ ├── l.h │ ├── list.c │ ├── mkfile │ ├── obj.c │ ├── optab.c │ ├── pass.c │ └── span.c ├── 2a │ ├── .gitignore │ ├── a.h │ ├── a.y │ ├── l.s │ ├── lex.c │ └── mkfile ├── 2c │ ├── .gitignore │ ├── 2.out.h │ ├── Update │ ├── cgen.c │ ├── enam.c │ ├── gc.h │ ├── list.c │ ├── mkfile │ ├── mul.c │ ├── peep.c │ ├── reg.c │ ├── sgen.c │ ├── swt.c │ └── txt.c ├── 2l │ ├── .gitignore │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── asm.c │ ├── l.h │ ├── list.c │ ├── mkfile │ ├── obj.c │ ├── optab.c │ ├── pass.c │ └── span.c ├── 5a │ ├── .gitignore │ ├── a.h │ ├── a.y │ ├── lex.c │ └── mkfile ├── 5c │ ├── .gitignore │ ├── 5.out.h │ ├── cgen.c │ ├── enam.c │ ├── gc.h │ ├── list.c │ ├── mkenam │ ├── mkfile │ ├── mul.c │ ├── peep.c │ ├── reg.c │ ├── sgen.c │ ├── swt.c │ └── txt.c ├── 5coff │ ├── .gitignore │ ├── 5coff.c │ ├── NOTICE │ ├── auxi.c │ ├── auxi.h │ ├── coff.c │ ├── mkfile │ └── readcoff.c ├── 5cv │ ├── .gitignore │ ├── 5cv.c │ └── mkfile ├── 5l │ ├── .gitignore │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── asm.c │ ├── l.h │ ├── list.c │ ├── mkfile │ ├── noop.c │ ├── obj.c │ ├── optab.c │ ├── pass.c │ ├── span.c │ └── thumb.c ├── 6a │ ├── .gitignore │ ├── README │ ├── a.h │ ├── a.y │ ├── lex.c │ └── mkfile ├── 6c │ ├── .gitignore │ ├── 6.out.h │ ├── README │ ├── cgen.c │ ├── div.c │ ├── enam.c │ ├── gc.h │ ├── list.c │ ├── machcap.c │ ├── mkenam │ ├── mkfile │ ├── mul.c │ ├── peep.c │ ├── reg.c │ ├── sgen.c │ ├── swt.c │ └── txt.c ├── 6l │ ├── .gitignore │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── README │ ├── asm.c │ ├── l.h │ ├── list.c │ ├── mkfile │ ├── obj.c │ ├── optab.c │ ├── pass.c │ └── span.c ├── 8a │ ├── .gitignore │ ├── a.h │ ├── a.y │ ├── l.s │ ├── lex.c │ └── mkfile ├── 8c │ ├── .gitignore │ ├── 8.out.h │ ├── cgen.c │ ├── cgen64.c │ ├── div.c │ ├── enam.c │ ├── gc.h │ ├── list.c │ ├── machcap.c │ ├── mkenam │ ├── mkfile │ ├── mul.c │ ├── peep.c │ ├── reg.c │ ├── sgen.c │ ├── swt.c │ └── txt.c ├── 8l │ ├── .gitignore │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── asm.c │ ├── l.h │ ├── list.c │ ├── mkfile │ ├── obj.c │ ├── optab.c │ ├── pass.c │ └── span.c ├── 9c │ ├── .gitignore │ └── 9.out.h ├── NOTICE ├── acid │ ├── 386 │ ├── .gitignore │ ├── B.sh │ ├── acid.h │ ├── arm │ ├── builtin.c │ ├── dbg.y │ ├── dot.c │ ├── exec.c │ ├── expr.c │ ├── lex.c │ ├── list.c │ ├── main.c │ ├── mips │ ├── mkfile │ ├── os-Nt.c │ ├── os-Plan9.c │ ├── os-Posix.c │ ├── port │ ├── print.c │ ├── proc.c │ ├── rdebug.c │ ├── sparc │ └── util.c ├── awk │ ├── .gitignore │ ├── FIXES │ ├── NOTICE │ ├── README │ ├── awk.1 │ ├── awk.h │ ├── awkgram.y │ ├── b.c │ ├── buildwin.bat │ ├── lex.c │ ├── lib.c │ ├── mac.code │ ├── main.c │ ├── makefile │ ├── maketab.c │ ├── missing95.c │ ├── mkfile │ ├── parse.c │ ├── proctab.c │ ├── proto.h │ ├── run.c │ ├── tran.c │ ├── ytab.c │ ├── ytab.h │ ├── ytabc.bak │ └── ytabh.bak ├── c2l │ ├── .gitignore │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── acid.c │ ├── bits.c │ ├── c2l.c │ ├── cc.h │ ├── cc.y │ ├── com.c │ ├── com64.c │ ├── dcl.c │ ├── dpchk.c │ ├── lex.c │ ├── lexbody │ ├── mac.c │ ├── macbody │ ├── mkfile │ ├── mpatof.c │ ├── out.c │ ├── scon.c │ └── sub.c ├── cat │ ├── .gitignore │ ├── cat.c │ └── mkfile ├── cc │ ├── .gitignore │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── acid.c │ ├── bits.c │ ├── cc.h │ ├── cc.y │ ├── com.c │ ├── com64.c │ ├── dcl.c │ ├── dpchk.c │ ├── funct.c │ ├── lex.c │ ├── lexbody │ ├── mac.c │ ├── macbody │ ├── mkfile │ ├── mpatof.c │ ├── omachcap.c │ ├── pgen.c │ ├── pickle.c │ ├── pswt.c │ ├── scon.c │ └── sub.c ├── cp │ ├── .gitignore │ ├── cp.c │ └── mkfile ├── cvbit │ ├── .gitignore │ ├── cvbit.c │ └── mkfile ├── data2c │ ├── .gitignore │ ├── data2c.c │ └── mkfile ├── data2s │ ├── .gitignore │ ├── data2s.c │ └── mkfile ├── echo │ ├── .gitignore │ ├── echo.c │ └── mkfile ├── format │ ├── .gitignore │ ├── Nt.c │ ├── Plan9.c │ ├── format.c │ └── mkfile ├── ftl │ ├── .gitignore │ ├── ftl.c │ └── mkfile ├── iar │ ├── .gitignore │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── ar.c │ └── mkfile ├── idea │ ├── .gitignore │ ├── NOTICE │ ├── idea.c │ └── mkfile ├── include │ ├── .gitignore │ ├── a.out.h │ ├── ar.h │ ├── mach.h │ └── regexp.h ├── iyacc │ ├── .gitignore │ ├── mkfile │ ├── yacc.c │ └── yaccpar ├── ka │ ├── .gitignore │ ├── a.h │ ├── a.y │ ├── l.s │ ├── lex.c │ ├── mkfile │ └── note ├── kc │ ├── .gitignore │ ├── cgen.c │ ├── enam.c │ ├── gc.h │ ├── k.out.h │ ├── list.c │ ├── mkenam │ ├── mkfile │ ├── mul.c │ ├── peep.c │ ├── reg.c │ ├── sgen.c │ ├── swt.c │ └── txt.c ├── kl │ ├── .gitignore │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── asm.c │ ├── foo.c │ ├── l.h │ ├── list.c │ ├── mkfile │ ├── noop.c │ ├── obj.c │ ├── optab.c │ ├── pass.c │ ├── sched.c │ └── span.c ├── kprof │ ├── .gitignore │ ├── kprof.c │ └── mkfile ├── ksize │ ├── .gitignore │ ├── ksize.c │ └── mkfile ├── kstrip │ ├── .gitignore │ ├── kstrip.c │ └── mkfile ├── lib │ ├── .gitignore │ ├── rcmain │ └── yaccpar ├── libmach │ ├── .gitignore │ ├── 2.c │ ├── 2db.c │ ├── 2obj.c │ ├── 4.c │ ├── 4db.c │ ├── 5.c │ ├── 5db.c │ ├── 5obj.c │ ├── 6.c │ ├── 6obj.c │ ├── 8.c │ ├── 8db.c │ ├── 8obj.c │ ├── 9.c │ ├── 9obj.c │ ├── NOTICE │ ├── a.out.h │ ├── access.c │ ├── ar.h │ ├── bootexec.h │ ├── elf.h │ ├── executable.c │ ├── k.c │ ├── kdb.c │ ├── kobj.c │ ├── machdata.c │ ├── map.c │ ├── mkfile │ ├── obj.c │ ├── obj.h │ ├── q.c │ ├── qdb.c │ ├── qobj.c │ ├── setmach.c │ ├── swap.c │ ├── sym.c │ ├── t.c │ ├── tdb.c │ ├── ureg2.h │ ├── ureg4.h │ ├── ureg5.h │ ├── ureg6.h │ ├── ureg8.h │ ├── ureg9.h │ ├── uregk.h │ ├── uregq.h │ ├── uregt.h │ ├── uregv.h │ ├── v.c │ ├── vcodas.c │ ├── vdb.c │ └── vobj.c ├── libregexp │ ├── .gitignore │ ├── NOTICE │ ├── mkfile │ ├── regaux.c │ ├── regcomp.c │ ├── regcomp.h │ ├── regerror.c │ ├── regexec.c │ ├── regsub.c │ ├── rregexec.c │ ├── rregsub.c │ ├── test.c │ └── test2.c ├── md5sum │ ├── .gitignore │ ├── md5sum.c │ └── mkfile ├── mk │ ├── .gitignore │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── README │ ├── arc.c │ ├── archive.c │ ├── bufblock.c │ ├── env.c │ ├── file.c │ ├── fns.h │ ├── graph.c │ ├── job.c │ ├── lex.c │ ├── main.c │ ├── match.c │ ├── mk │ ├── mk.c │ ├── mk.h │ ├── mkfile │ ├── mkfile-Nt │ ├── mkfile-Plan9 │ ├── mkfile-Posix │ ├── parse.c │ ├── rc.c │ ├── recipe.c │ ├── rule.c │ ├── run.c │ ├── sh.c │ ├── shprint.c │ ├── symtab.c │ ├── var.c │ ├── varsub.c │ └── word.c ├── mkdir │ ├── .gitignore │ ├── mkdir.c │ └── mkfile ├── mkext │ ├── .gitignore │ ├── mkext.c │ └── mkfile ├── mkfile ├── mkppcimage │ ├── .gitignore │ ├── mkfile │ └── mkppcimage.c ├── ms2 │ ├── .gitignore │ ├── mkfile │ └── ms2.c ├── mv │ ├── .gitignore │ ├── mkfile │ └── mv.c ├── na │ ├── .gitignore │ ├── mkfile │ ├── na.h │ ├── na.man │ └── na.y ├── ndate │ ├── .gitignore │ ├── mkfile │ └── ndate.c ├── nm │ ├── .gitignore │ ├── mkfile │ └── nm.c ├── ntsrv │ ├── .gitignore │ ├── domk │ ├── mkfile │ └── ntsrv.c ├── qa │ ├── .gitignore │ ├── Ins │ ├── a.h │ ├── a.y │ ├── branch │ ├── lex.c │ └── mkfile ├── qc │ ├── .gitignore │ ├── cgen.c │ ├── enam.c │ ├── gc.h │ ├── list.c │ ├── machcap.c │ ├── mkenam │ ├── mkfile │ ├── mul.c │ ├── peep.c │ ├── q.out.h │ ├── reg.c │ ├── sgen.c │ ├── swt.c │ └── txt.c ├── ql │ ├── .gitignore │ ├── Ins │ ├── Notes │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── asm.c │ ├── asmout.c │ ├── cnam.c │ ├── l.h │ ├── list.c │ ├── mkcname │ ├── mkfile │ ├── noop.c │ ├── obj.c │ ├── optab.c │ ├── pass.c │ ├── sched.c │ └── span.c ├── rcsh │ ├── .gitignore │ ├── Nt.c │ ├── code.c │ ├── exec.c │ ├── glob.c │ ├── here.c │ ├── io.c │ ├── lex.c │ ├── main.c │ ├── mkfile │ ├── pcmd.c │ ├── pfnc.c │ ├── rc.h │ ├── rcmain │ ├── rcpath │ ├── simple.c │ ├── syn.y │ ├── trap.c │ ├── tree.c │ ├── var.c │ └── word.c ├── rm │ ├── .gitignore │ ├── mkfile │ └── rm-Nt.c ├── sed │ ├── .gitignore │ ├── mkfile │ └── sed.c ├── sqz │ ├── .gitignore │ ├── NOTICE │ ├── mkfile │ ├── squeeze.h │ ├── sqz.c │ └── zqs.c ├── srclist │ ├── .gitignore │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── mkfile │ └── srclist.c ├── tc │ ├── .gitignore │ ├── 5.out.h │ ├── cgen.c │ ├── enam.c │ ├── gc.h │ ├── list.c │ ├── mkenam │ ├── mkfile │ ├── mul.c │ ├── peep.c │ ├── reg.c │ ├── sgen.c │ ├── swt.c │ └── txt.c ├── test │ ├── .gitignore │ ├── mkfile │ └── test-Nt.c ├── tr │ ├── .gitignore │ ├── mkfile │ └── tr.c ├── va │ ├── .gitignore │ ├── a.h │ ├── a.y │ ├── l.s │ ├── lex.c │ ├── mkfile │ └── note ├── vc │ ├── .gitignore │ ├── cgen.c │ ├── enam.c │ ├── gc.h │ ├── list.c │ ├── mkenam │ ├── mkfile │ ├── mul.c │ ├── peep.c │ ├── reg.c │ ├── sgen.c │ ├── swt.c │ ├── txt.c │ └── v.out.h └── vl │ ├── .gitignore │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── asm.c │ ├── compat.c │ ├── l.h │ ├── list.c │ ├── mkfile │ ├── noop.c │ ├── obj.c │ ├── optab.c │ ├── pass.c │ ├── sched.c │ └── span.c └── wonderland ├── .gitignore └── README /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/CHANGES -------------------------------------------------------------------------------- /DragonFly/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DragonFly/386/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DragonFly/386/bin/.dreg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DragonFly/386/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DragonFly/386/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DragonFly/386/lib/.dreg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DragonFly/386/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FreeBSD/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FreeBSD/386/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FreeBSD/386/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FreeBSD/386/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hp/s800/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hp/s800/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/INSTALL -------------------------------------------------------------------------------- /Inferno/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inferno/386/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inferno/386/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inferno/arm/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inferno/arm/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inferno/mips/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inferno/mips/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inferno/power/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inferno/power/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inferno/sparc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inferno/sparc/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inferno/spim/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inferno/spim/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inferno/thumb/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inferno/thumb/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Irix/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Irix/mips/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Irix/mips/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Irix/mips/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Linux/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Linux/386/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Linux/386/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Linux/386/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Linux/arm/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Linux/arm/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Linux/power/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Linux/power/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Linux/power/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Linux/spim/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Linux/spim/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MacOSX/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MacOSX/386/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MacOSX/386/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MacOSX/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/MacOSX/README -------------------------------------------------------------------------------- /MacOSX/power/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MacOSX/power/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MacOSX/power/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MacOSX/tcshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/MacOSX/tcshrc -------------------------------------------------------------------------------- /Mkdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/Mkdirs -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/NOTICE -------------------------------------------------------------------------------- /NetBSD/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NetBSD/386/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NetBSD/386/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NetBSD/386/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nt/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nt/386/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nt/386/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nt/386/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenBSD/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenBSD/386/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenBSD/386/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/386/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/386/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/386/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/arm/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/arm/bin/.dreg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/arm/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/arm/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/arm/lib/.dreg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/arm/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/mips/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/mips/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/power/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/power/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/sparc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/sparc/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/README.gcode -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/README.md -------------------------------------------------------------------------------- /Solaris/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Solaris/386/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Solaris/386/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Solaris/sparc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Solaris/sparc/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Solaris/sparc/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acme/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acme/acid/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acme/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acme/dis/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acme/edit/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acme/mail/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/NOTICE -------------------------------------------------------------------------------- /appl/acme/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/acme/acme/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/acme/acme/acid/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/acme/acme/acid/src/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/acme/acme/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/acme/acme/bin/src/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/acme/acme/edit/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/acme/acme/edit/src/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/acme/acme/mail/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/acme/acme/mail/src/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/alphabet/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/alphabet/abc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/alphabet/auxi/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/alphabet/fs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/alphabet/grid/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/alphabet/main/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/alphabet/typesets/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/charon/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/B.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/B.b -------------------------------------------------------------------------------- /appl/cmd/ar.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/ar.b -------------------------------------------------------------------------------- /appl/cmd/auth/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/auth/factotum/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/auth/factotum/proto/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/auxi/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/avr/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/cd.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/cd.b -------------------------------------------------------------------------------- /appl/cmd/cp.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/cp.b -------------------------------------------------------------------------------- /appl/cmd/dbm/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/dd.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/dd.b -------------------------------------------------------------------------------- /appl/cmd/disk/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/disk/prep/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/du.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/du.b -------------------------------------------------------------------------------- /appl/cmd/ed.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/ed.b -------------------------------------------------------------------------------- /appl/cmd/fc.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/fc.b -------------------------------------------------------------------------------- /appl/cmd/fs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/fs.b -------------------------------------------------------------------------------- /appl/cmd/fs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/install/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/ip/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/ip/nppp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/ip/ppp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/lego/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/limbo/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/ls.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/ls.b -------------------------------------------------------------------------------- /appl/cmd/m4.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/m4.b -------------------------------------------------------------------------------- /appl/cmd/mash/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/mc.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/mc.b -------------------------------------------------------------------------------- /appl/cmd/mk/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/mpc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/mv.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/mv.b -------------------------------------------------------------------------------- /appl/cmd/ndb/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/ns.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/ns.b -------------------------------------------------------------------------------- /appl/cmd/os.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/os.b -------------------------------------------------------------------------------- /appl/cmd/p.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/p.b -------------------------------------------------------------------------------- /appl/cmd/palm/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/ps.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/ps.b -------------------------------------------------------------------------------- /appl/cmd/rm.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/rm.b -------------------------------------------------------------------------------- /appl/cmd/sh/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/sh/doc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/spki/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/tr.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/tr.b -------------------------------------------------------------------------------- /appl/cmd/usb/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/cmd/wc.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/wc.b -------------------------------------------------------------------------------- /appl/cmd/xd.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/cmd/xd.b -------------------------------------------------------------------------------- /appl/collab/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/collab/clients/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/collab/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/collab/servers/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/demo/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/demo/camera/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/demo/chat/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/demo/cpupool/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/demo/lego/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/demo/ns/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/demo/odbc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/demo/spree/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/demo/whiteboard/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/ebook/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/ebook/dtd/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/grid/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/grid/demo/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/grid/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/lib/convcs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/lib/crypt/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/lib/db.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/lib/db.b -------------------------------------------------------------------------------- /appl/lib/dht/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/lib/ecmascript/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/lib/encoding/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/lib/ida/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/lib/ip.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/lib/ip.b -------------------------------------------------------------------------------- /appl/lib/ir.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/lib/ir.b -------------------------------------------------------------------------------- /appl/lib/print/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/lib/spki/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/lib/strokes/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/lib/styxconv/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/lib/usb/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/lib/w3c/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/math/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/mkfile -------------------------------------------------------------------------------- /appl/spree/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/spree/clients/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/spree/engines/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/spree/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/spree/other/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/svc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/svc/httpd/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/svc/httpd/httpd.debug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/svc/httpd/httpd.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/svc/webget/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/svc/webget/webget.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/tiny/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/wm/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/wm/avi.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/wm/avi.b -------------------------------------------------------------------------------- /appl/wm/brutus/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/wm/c4.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/wm/c4.b -------------------------------------------------------------------------------- /appl/wm/deb.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/wm/deb.b -------------------------------------------------------------------------------- /appl/wm/dir.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/wm/dir.b -------------------------------------------------------------------------------- /appl/wm/drawmux/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/wm/emu.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/wm/emu.b -------------------------------------------------------------------------------- /appl/wm/ftree/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/wm/man.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/wm/man.b -------------------------------------------------------------------------------- /appl/wm/minitel/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/wm/mpeg/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/wm/pen.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/wm/pen.b -------------------------------------------------------------------------------- /appl/wm/qt.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/wm/qt.b -------------------------------------------------------------------------------- /appl/wm/rt.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/wm/rt.b -------------------------------------------------------------------------------- /appl/wm/sam.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/wm/sam.b -------------------------------------------------------------------------------- /appl/wm/sh.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/wm/sh.b -------------------------------------------------------------------------------- /appl/wm/vt.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/wm/vt.b -------------------------------------------------------------------------------- /appl/wm/wm.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/appl/wm/wm.b -------------------------------------------------------------------------------- /asm/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asm/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/asm/NOTICE -------------------------------------------------------------------------------- /asm/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/asm/asm.h -------------------------------------------------------------------------------- /asm/asm.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/asm/asm.y -------------------------------------------------------------------------------- /asm/assem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/asm/assem.c -------------------------------------------------------------------------------- /asm/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/asm/lex.c -------------------------------------------------------------------------------- /asm/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/asm/mkfile -------------------------------------------------------------------------------- /bind: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/acme/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/auth/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/auth/proto/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/auxi/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/avr/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/charon/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/collab/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/collab/clients/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/collab/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/collab/servers/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/demo/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/demo/camera/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/demo/chat/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/demo/cpupool/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/demo/lego/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/demo/ns/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/demo/odbc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/demo/spree/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/demo/whiteboard/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/dis/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/dis/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/dis/lib/convc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/disk/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/ebook/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/fs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/grid/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/grid/demo/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/grid/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/grid/lib/convcs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/install/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/ip/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/ip/ppp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/lc: -------------------------------------------------------------------------------- 1 | #!/dis/sh 2 | ls -p $* | mc 3 | -------------------------------------------------------------------------------- /dis/lego/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/lib/convc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/lib/convcs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/lib/crypt/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/lib/encoding/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/lib/ftree/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/lib/ida/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/lib/mash/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/lib/print/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/lib/spki/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/lib/strokes/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/lib/styxconv/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/lib/usb/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/lib/w3c/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/lookman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/dis/lookman -------------------------------------------------------------------------------- /dis/man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/dis/man -------------------------------------------------------------------------------- /dis/math/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/mpc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/mpeg/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/ndb/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/sh/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/dis/shutdown -------------------------------------------------------------------------------- /dis/sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/dis/sig -------------------------------------------------------------------------------- /dis/spki/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/spree/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/spree/clients/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/spree/engines/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/spree/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/svc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/svc/auth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/dis/svc/auth -------------------------------------------------------------------------------- /dis/svc/httpd/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/svc/net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/dis/svc/net -------------------------------------------------------------------------------- /dis/svc/rstyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/dis/svc/rstyx -------------------------------------------------------------------------------- /dis/svc/styx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/dis/svc/styx -------------------------------------------------------------------------------- /dis/svc/webget/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/tiny/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/usb/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/wm/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dis/wm/brutus/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/acid.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/acid.ms -------------------------------------------------------------------------------- /doc/acid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/acid.pdf -------------------------------------------------------------------------------- /doc/acme/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/asm.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/asm.ms -------------------------------------------------------------------------------- /doc/asm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/asm.pdf -------------------------------------------------------------------------------- /doc/bltj.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/bltj.ms -------------------------------------------------------------------------------- /doc/bltj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/bltj.pdf -------------------------------------------------------------------------------- /doc/descent/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/dev.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/dev.ms -------------------------------------------------------------------------------- /doc/dev.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/dev.pdf -------------------------------------------------------------------------------- /doc/dis.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/dis.ms -------------------------------------------------------------------------------- /doc/dis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/dis.pdf -------------------------------------------------------------------------------- /doc/fonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/fonts -------------------------------------------------------------------------------- /doc/fonts.bem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/fonts.bem -------------------------------------------------------------------------------- /doc/fonts.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/fonts.pal -------------------------------------------------------------------------------- /doc/lego.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/lego.ms -------------------------------------------------------------------------------- /doc/lego.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/lego.pdf -------------------------------------------------------------------------------- /doc/limbo/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/limbotk/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/lprof.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/lprof.ms -------------------------------------------------------------------------------- /doc/lprof.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/lprof.pdf -------------------------------------------------------------------------------- /doc/mk.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/mk.ms -------------------------------------------------------------------------------- /doc/mk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/mk.pdf -------------------------------------------------------------------------------- /doc/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/mkfile -------------------------------------------------------------------------------- /doc/perform/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/port.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/port.ms -------------------------------------------------------------------------------- /doc/port.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/port.pdf -------------------------------------------------------------------------------- /doc/realinferno/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/sh.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/sh.ms -------------------------------------------------------------------------------- /doc/sh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/sh.pdf -------------------------------------------------------------------------------- /doc/styx.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/styx.ms -------------------------------------------------------------------------------- /doc/styx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/doc/styx.pdf -------------------------------------------------------------------------------- /empties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/empties -------------------------------------------------------------------------------- /emu/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/DragonFly/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/FreeBSD/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/Hp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/Hp/NOTE: -------------------------------------------------------------------------------- 1 | this, like Irix, lacks deveia 2 | -------------------------------------------------------------------------------- /emu/Hp/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Hp/cmd.c -------------------------------------------------------------------------------- /emu/Hp/emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Hp/emu -------------------------------------------------------------------------------- /emu/Hp/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Hp/mkfile -------------------------------------------------------------------------------- /emu/Hp/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Hp/os.c -------------------------------------------------------------------------------- /emu/Irix/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/Irix/NOTE: -------------------------------------------------------------------------------- 1 | for some strange reason, it lacks deveia! 2 | -------------------------------------------------------------------------------- /emu/Irix/emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Irix/emu -------------------------------------------------------------------------------- /emu/Irix/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Irix/os.c -------------------------------------------------------------------------------- /emu/Linux/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/Linux/emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Linux/emu -------------------------------------------------------------------------------- /emu/MacOSX/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/NOTICE -------------------------------------------------------------------------------- /emu/NetBSD/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/Nt/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/Nt/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Nt/cmd.c -------------------------------------------------------------------------------- /emu/Nt/emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Nt/emu -------------------------------------------------------------------------------- /emu/Nt/fp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Nt/fp.c -------------------------------------------------------------------------------- /emu/Nt/ie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Nt/ie -------------------------------------------------------------------------------- /emu/Nt/ipif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Nt/ipif.c -------------------------------------------------------------------------------- /emu/Nt/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Nt/mkfile -------------------------------------------------------------------------------- /emu/Nt/nt.rc: -------------------------------------------------------------------------------- 1 | 100 ICON inferno.ico 2 | -------------------------------------------------------------------------------- /emu/Nt/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Nt/os.c -------------------------------------------------------------------------------- /emu/Nt/vlrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Nt/vlrt.c -------------------------------------------------------------------------------- /emu/Nt/win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Nt/win.c -------------------------------------------------------------------------------- /emu/OpenBSD/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/Plan9/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/Plan9/emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/Plan9/emu -------------------------------------------------------------------------------- /emu/Solaris/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/Unixware/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/mkfile -------------------------------------------------------------------------------- /emu/port/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/port/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/emu/port/ip.h -------------------------------------------------------------------------------- /icons/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/cards/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/charon/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/csn.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/icons/csn.bit -------------------------------------------------------------------------------- /icons/ibc.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/icons/ibc.bit -------------------------------------------------------------------------------- /icons/lnw.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/icons/lnw.bit -------------------------------------------------------------------------------- /icons/minicharon/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/monitor/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/rec-pb/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/run.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/icons/run.bit -------------------------------------------------------------------------------- /icons/smallcards/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/tinycards/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/tinytk/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/tk/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/tk/debug/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/tk/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/icons/tk/info -------------------------------------------------------------------------------- /icons/tk/keybd/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/tk/mail/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/web.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/icons/web.bit -------------------------------------------------------------------------------- /icons/whiteboard/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/a.out.h: -------------------------------------------------------------------------------- 1 | #include "../utils/libmach/a.out.h" 2 | -------------------------------------------------------------------------------- /include/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/include/bio.h -------------------------------------------------------------------------------- /include/freetype/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/freetype/cache/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/freetype/config/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/freetype/internal/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/include/isa.h -------------------------------------------------------------------------------- /include/logfsos.h: -------------------------------------------------------------------------------- 1 | #include "lib9.h" 2 | -------------------------------------------------------------------------------- /include/mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/include/mp.h -------------------------------------------------------------------------------- /include/tk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/include/tk.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- 1 | #define VERSION "Fourth Edition (20120820)" 2 | -------------------------------------------------------------------------------- /include/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/include/vm.h -------------------------------------------------------------------------------- /keydb/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keydb/keys: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/acid/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/acid/386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/acid/386 -------------------------------------------------------------------------------- /lib/acid/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/acid/arm -------------------------------------------------------------------------------- /lib/acid/gpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/acid/gpa -------------------------------------------------------------------------------- /lib/acid/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/acid/mips -------------------------------------------------------------------------------- /lib/acid/port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/acid/port -------------------------------------------------------------------------------- /lib/convcs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dht/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dht/neis: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebook/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/A.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/B.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/C.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/D.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/E.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/F.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/G.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/H.html.annot: -------------------------------------------------------------------------------- 1 | 22841 Hello -------------------------------------------------------------------------------- /lib/ebooks/devils/I.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/J.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/K.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/L.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/M.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/N.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/O.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/P.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/Q.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/R.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/S.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/T.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/TitlePage.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/U.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/V.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/W.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/X.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/Y.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/Z.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/foreword.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/index.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/preface.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/BART.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/BentSub.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/BlueWater.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/ExecutiveSummary.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/GoldMine.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/GoldenGate.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/TitlePage.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/awards.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/business.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/confrontations.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/covert.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/dial-a-ride.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/foreword.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/hobbies.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/patents.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/toc.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/understandingoeb/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/emptydirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/emptydirs -------------------------------------------------------------------------------- /lib/games/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ircnames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/ircnames -------------------------------------------------------------------------------- /lib/keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/keyboard -------------------------------------------------------------------------------- /lib/legal/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/legal/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/legal/GPL -------------------------------------------------------------------------------- /lib/lego/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/limbo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/limbo.vim -------------------------------------------------------------------------------- /lib/mashinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/mashinit -------------------------------------------------------------------------------- /lib/mimetype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/mimetype -------------------------------------------------------------------------------- /lib/mk/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/mk/binds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/mk/binds -------------------------------------------------------------------------------- /lib/ndb/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ndb/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/ndb/dns -------------------------------------------------------------------------------- /lib/ndb/local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/ndb/local -------------------------------------------------------------------------------- /lib/polyhedra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/polyhedra -------------------------------------------------------------------------------- /lib/print/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/print/defprinter: -------------------------------------------------------------------------------- 1 | printer0 2 | -------------------------------------------------------------------------------- /lib/proto/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/proto/Hp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/proto/Hp -------------------------------------------------------------------------------- /lib/proto/Nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/proto/Nt -------------------------------------------------------------------------------- /lib/proto/os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/proto/os -------------------------------------------------------------------------------- /lib/proto/src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/proto/src -------------------------------------------------------------------------------- /lib/scores/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/scores/x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/scores/x -------------------------------------------------------------------------------- /lib/scsicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/scsicodes -------------------------------------------------------------------------------- /lib/sexp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/sexp -------------------------------------------------------------------------------- /lib/sh/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/sh/owen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/sh/owen -------------------------------------------------------------------------------- /lib/sh/sched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/sh/sched -------------------------------------------------------------------------------- /lib/sh/srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/sh/srv -------------------------------------------------------------------------------- /lib/sh/win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/sh/win -------------------------------------------------------------------------------- /lib/strokes/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tbsetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/tbsetup -------------------------------------------------------------------------------- /lib/unicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/unicode -------------------------------------------------------------------------------- /lib/unidata/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/units: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/units -------------------------------------------------------------------------------- /lib/usbdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/usbdb -------------------------------------------------------------------------------- /lib/wmcharon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/wmcharon -------------------------------------------------------------------------------- /lib/wmsetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/wmsetup -------------------------------------------------------------------------------- /lib/words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/words -------------------------------------------------------------------------------- /lib/yaccpar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib/yaccpar -------------------------------------------------------------------------------- /lib9/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib9/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/NOTICE -------------------------------------------------------------------------------- /lib9/argv0.c: -------------------------------------------------------------------------------- 1 | char* argv0 = 0; 2 | -------------------------------------------------------------------------------- /lib9/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/create.c -------------------------------------------------------------------------------- /lib9/dofmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/dofmt.c -------------------------------------------------------------------------------- /lib9/dorfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/dorfmt.c -------------------------------------------------------------------------------- /lib9/errfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/errfmt.c -------------------------------------------------------------------------------- /lib9/exits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/exits.c -------------------------------------------------------------------------------- /lib9/fltfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/fltfmt.c -------------------------------------------------------------------------------- /lib9/fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/fmt.c -------------------------------------------------------------------------------- /lib9/fmtdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/fmtdef.h -------------------------------------------------------------------------------- /lib9/fmtfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/fmtfd.c -------------------------------------------------------------------------------- /lib9/fmtstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/fmtstr.c -------------------------------------------------------------------------------- /lib9/fprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/fprint.c -------------------------------------------------------------------------------- /lib9/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/lock.c -------------------------------------------------------------------------------- /lib9/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/mkfile -------------------------------------------------------------------------------- /lib9/mkfile-Plan9: -------------------------------------------------------------------------------- 1 | TARGFILES=errstr-Plan9.$O\ 2 | 3 | -------------------------------------------------------------------------------- /lib9/pow10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/pow10.c -------------------------------------------------------------------------------- /lib9/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/print.c -------------------------------------------------------------------------------- /lib9/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/qsort.c -------------------------------------------------------------------------------- /lib9/readn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/readn.c -------------------------------------------------------------------------------- /lib9/rune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/rune.c -------------------------------------------------------------------------------- /lib9/seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/seek.c -------------------------------------------------------------------------------- /lib9/sprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/sprint.c -------------------------------------------------------------------------------- /lib9/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/strdup.c -------------------------------------------------------------------------------- /lib9/u16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/u16.c -------------------------------------------------------------------------------- /lib9/u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/u32.c -------------------------------------------------------------------------------- /lib9/u64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/u64.c -------------------------------------------------------------------------------- /lib9/utflen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/lib9/utflen.c -------------------------------------------------------------------------------- /libbio/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libbio/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libbio/NOTICE -------------------------------------------------------------------------------- /libbio/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libbio/mkfile -------------------------------------------------------------------------------- /libdraw/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdraw/rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libdraw/rgb.c -------------------------------------------------------------------------------- /libdynld/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libfreetype/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libfreetype/NOTICE/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libfreetype/ft2system.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libinterp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libinterp/README: -------------------------------------------------------------------------------- 1 | comp-68020.c has not been tested recently 2 | -------------------------------------------------------------------------------- /libinterp/das-68000.c: -------------------------------------------------------------------------------- 1 | #include "das-68020.c" 2 | -------------------------------------------------------------------------------- /libinterp/das-spim.c: -------------------------------------------------------------------------------- 1 | #include "das-mips.c" 2 | -------------------------------------------------------------------------------- /libkern/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libkern/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libkern/abs.c -------------------------------------------------------------------------------- /libkern/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libkern/exp.c -------------------------------------------------------------------------------- /libkern/fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libkern/fmt.c -------------------------------------------------------------------------------- /libkern/getfcr-spim.s: -------------------------------------------------------------------------------- 1 | #include "getfcr-mips.s" 2 | -------------------------------------------------------------------------------- /libkern/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libkern/log.c -------------------------------------------------------------------------------- /libkern/memmove-spim.s: -------------------------------------------------------------------------------- 1 | #include "memmove-mips.s" 2 | -------------------------------------------------------------------------------- /libkern/memset-spim.s: -------------------------------------------------------------------------------- 1 | #include "memset-mips.s" 2 | -------------------------------------------------------------------------------- /libkern/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libkern/pow.c -------------------------------------------------------------------------------- /libkern/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libkern/sin.c -------------------------------------------------------------------------------- /libkern/strchr-spim.s: -------------------------------------------------------------------------------- 1 | #include "strchr-mips.s" 2 | -------------------------------------------------------------------------------- /libkern/u16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libkern/u16.c -------------------------------------------------------------------------------- /libkern/u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libkern/u32.c -------------------------------------------------------------------------------- /libkern/u64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libkern/u64.c -------------------------------------------------------------------------------- /libkeyring/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /liblogfs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /liblogfs/gn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/liblogfs/gn.c -------------------------------------------------------------------------------- /liblogfs/is.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/liblogfs/is.c -------------------------------------------------------------------------------- /libmath/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmath/FPcontrol-Plan9.c: -------------------------------------------------------------------------------- 1 | #include "FPcontrol-Inferno.c" 2 | -------------------------------------------------------------------------------- /libmath/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmath/fdlibm/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmemdraw/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmemlayer/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmemlayer/lreshape.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmp/Inferno-386/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmp/Inferno-amd64/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmp/Inferno-mips/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmp/Inferno-power/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmp/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libmp/NOTICE -------------------------------------------------------------------------------- /libmp/Plan9-386/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmp/Plan9-amd64/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmp/Plan9-mips/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmp/Plan9-power/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmp/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libmp/mkfile -------------------------------------------------------------------------------- /libmp/mtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libmp/mtest.c -------------------------------------------------------------------------------- /libmp/port/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmp/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libmp/test.c -------------------------------------------------------------------------------- /libnandfs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libprefab/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsec/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsec/Inferno-386/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsec/Inferno-mips/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsec/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libsec/NOTICE -------------------------------------------------------------------------------- /libsec/Plan9-386/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsec/Plan9-mips/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsec/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libsec/mkfile -------------------------------------------------------------------------------- /libsec/port/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libtk/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libtk/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/NOTES -------------------------------------------------------------------------------- /libtk/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/NOTICE -------------------------------------------------------------------------------- /libtk/buton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/buton.c -------------------------------------------------------------------------------- /libtk/canvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/canvs.c -------------------------------------------------------------------------------- /libtk/canvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/canvs.h -------------------------------------------------------------------------------- /libtk/canvu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/canvu.c -------------------------------------------------------------------------------- /libtk/carcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/carcs.c -------------------------------------------------------------------------------- /libtk/cbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/cbits.c -------------------------------------------------------------------------------- /libtk/cimag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/cimag.c -------------------------------------------------------------------------------- /libtk/cline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/cline.c -------------------------------------------------------------------------------- /libtk/colrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/colrs.c -------------------------------------------------------------------------------- /libtk/coval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/coval.c -------------------------------------------------------------------------------- /libtk/cpoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/cpoly.c -------------------------------------------------------------------------------- /libtk/crect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/crect.c -------------------------------------------------------------------------------- /libtk/ctext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/ctext.c -------------------------------------------------------------------------------- /libtk/cwind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/cwind.c -------------------------------------------------------------------------------- /libtk/ebind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/ebind.c -------------------------------------------------------------------------------- /libtk/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/entry.c -------------------------------------------------------------------------------- /libtk/extns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/extns.c -------------------------------------------------------------------------------- /libtk/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/frame.c -------------------------------------------------------------------------------- /libtk/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/frame.h -------------------------------------------------------------------------------- /libtk/grids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/grids.c -------------------------------------------------------------------------------- /libtk/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/image.c -------------------------------------------------------------------------------- /libtk/label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/label.c -------------------------------------------------------------------------------- /libtk/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/label.h -------------------------------------------------------------------------------- /libtk/listb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/listb.c -------------------------------------------------------------------------------- /libtk/listb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/listb.h -------------------------------------------------------------------------------- /libtk/mail.tk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/mail.tk -------------------------------------------------------------------------------- /libtk/menu.tk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/menu.tk -------------------------------------------------------------------------------- /libtk/menus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/menus.c -------------------------------------------------------------------------------- /libtk/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/mkfile -------------------------------------------------------------------------------- /libtk/packr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/packr.c -------------------------------------------------------------------------------- /libtk/panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/panel.c -------------------------------------------------------------------------------- /libtk/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/parse.c -------------------------------------------------------------------------------- /libtk/scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/scale.c -------------------------------------------------------------------------------- /libtk/scrol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/scrol.c -------------------------------------------------------------------------------- /libtk/textu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/textu.c -------------------------------------------------------------------------------- /libtk/textw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/textw.c -------------------------------------------------------------------------------- /libtk/textw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/textw.h -------------------------------------------------------------------------------- /libtk/tindx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/tindx.c -------------------------------------------------------------------------------- /libtk/tmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/tmark.c -------------------------------------------------------------------------------- /libtk/ttags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/ttags.c -------------------------------------------------------------------------------- /libtk/twind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/twind.c -------------------------------------------------------------------------------- /libtk/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/utils.c -------------------------------------------------------------------------------- /libtk/varbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/varbl.c -------------------------------------------------------------------------------- /libtk/windw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/windw.c -------------------------------------------------------------------------------- /libtk/xdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/libtk/xdata.c -------------------------------------------------------------------------------- /limbo/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /limbo/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/NOTICE -------------------------------------------------------------------------------- /limbo/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/asm.c -------------------------------------------------------------------------------- /limbo/com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/com.c -------------------------------------------------------------------------------- /limbo/decls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/decls.c -------------------------------------------------------------------------------- /limbo/dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/dis.c -------------------------------------------------------------------------------- /limbo/ecom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/ecom.c -------------------------------------------------------------------------------- /limbo/fns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/fns.h -------------------------------------------------------------------------------- /limbo/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/gen.c -------------------------------------------------------------------------------- /limbo/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/lex.c -------------------------------------------------------------------------------- /limbo/limbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/limbo.h -------------------------------------------------------------------------------- /limbo/limbo.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/limbo.y -------------------------------------------------------------------------------- /limbo/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/mkfile -------------------------------------------------------------------------------- /limbo/nodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/nodes.c -------------------------------------------------------------------------------- /limbo/optab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/optab.c -------------------------------------------------------------------------------- /limbo/optim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/optim.c -------------------------------------------------------------------------------- /limbo/sbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/sbl.c -------------------------------------------------------------------------------- /limbo/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/stubs.c -------------------------------------------------------------------------------- /limbo/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/limbo/types.c -------------------------------------------------------------------------------- /locale/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /locale/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/CET -------------------------------------------------------------------------------- /locale/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/Cuba -------------------------------------------------------------------------------- /locale/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/EET -------------------------------------------------------------------------------- /locale/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/Egypt -------------------------------------------------------------------------------- /locale/GMT: -------------------------------------------------------------------------------- 1 | GMT 0 2 | -------------------------------------------------------------------------------- /locale/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/HST -------------------------------------------------------------------------------- /locale/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/Iran -------------------------------------------------------------------------------- /locale/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/Israel -------------------------------------------------------------------------------- /locale/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/Japan -------------------------------------------------------------------------------- /locale/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/Libya -------------------------------------------------------------------------------- /locale/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/MET -------------------------------------------------------------------------------- /locale/Moscow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/Moscow -------------------------------------------------------------------------------- /locale/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/NOTICE -------------------------------------------------------------------------------- /locale/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/NZ -------------------------------------------------------------------------------- /locale/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/Navajo -------------------------------------------------------------------------------- /locale/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/PRC -------------------------------------------------------------------------------- /locale/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/Poland -------------------------------------------------------------------------------- /locale/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/README -------------------------------------------------------------------------------- /locale/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/ROC -------------------------------------------------------------------------------- /locale/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/ROK -------------------------------------------------------------------------------- /locale/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/Turkey -------------------------------------------------------------------------------- /locale/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/W-SU -------------------------------------------------------------------------------- /locale/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/locale/WET -------------------------------------------------------------------------------- /locale/en_US/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /locale/en_US/dict/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /locale/en_US/location: -------------------------------------------------------------------------------- 1 | en_US 2 | -------------------------------------------------------------------------------- /locale/location: -------------------------------------------------------------------------------- 1 | en_US 2 | -------------------------------------------------------------------------------- /log/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /makemk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/makemk.sh -------------------------------------------------------------------------------- /man/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/1/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/1/0intro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/0intro -------------------------------------------------------------------------------- /man/1/9win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/9win -------------------------------------------------------------------------------- /man/1/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/INDEX -------------------------------------------------------------------------------- /man/1/acme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/acme -------------------------------------------------------------------------------- /man/1/ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/ar -------------------------------------------------------------------------------- /man/1/asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/asm -------------------------------------------------------------------------------- /man/1/auplay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/auplay -------------------------------------------------------------------------------- /man/1/avr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/avr -------------------------------------------------------------------------------- /man/1/bind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/bind -------------------------------------------------------------------------------- /man/1/blur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/blur -------------------------------------------------------------------------------- /man/1/brutus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/brutus -------------------------------------------------------------------------------- /man/1/cal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/cal -------------------------------------------------------------------------------- /man/1/calc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/calc -------------------------------------------------------------------------------- /man/1/cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/cat -------------------------------------------------------------------------------- /man/1/cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/cd -------------------------------------------------------------------------------- /man/1/charon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/charon -------------------------------------------------------------------------------- /man/1/chgrp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/chgrp -------------------------------------------------------------------------------- /man/1/chmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/chmod -------------------------------------------------------------------------------- /man/1/cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/cmp -------------------------------------------------------------------------------- /man/1/collab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/collab -------------------------------------------------------------------------------- /man/1/comm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/comm -------------------------------------------------------------------------------- /man/1/cook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/cook -------------------------------------------------------------------------------- /man/1/cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/cp -------------------------------------------------------------------------------- /man/1/cprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/cprof -------------------------------------------------------------------------------- /man/1/cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/cpu -------------------------------------------------------------------------------- /man/1/crypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/crypt -------------------------------------------------------------------------------- /man/1/date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/date -------------------------------------------------------------------------------- /man/1/dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/dd -------------------------------------------------------------------------------- /man/1/deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/deb -------------------------------------------------------------------------------- /man/1/diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/diff -------------------------------------------------------------------------------- /man/1/disdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/disdep -------------------------------------------------------------------------------- /man/1/dmview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/dmview -------------------------------------------------------------------------------- /man/1/du: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/du -------------------------------------------------------------------------------- /man/1/ebook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/ebook -------------------------------------------------------------------------------- /man/1/echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/echo -------------------------------------------------------------------------------- /man/1/emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/emu -------------------------------------------------------------------------------- /man/1/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/env -------------------------------------------------------------------------------- /man/1/fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/fc -------------------------------------------------------------------------------- /man/1/fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/fmt -------------------------------------------------------------------------------- /man/1/fortune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/fortune -------------------------------------------------------------------------------- /man/1/freq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/freq -------------------------------------------------------------------------------- /man/1/fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/fs -------------------------------------------------------------------------------- /man/1/ftest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/ftest -------------------------------------------------------------------------------- /man/1/ftree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/ftree -------------------------------------------------------------------------------- /man/1/gettar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/gettar -------------------------------------------------------------------------------- /man/1/grep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/grep -------------------------------------------------------------------------------- /man/1/grid-ns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/grid-ns -------------------------------------------------------------------------------- /man/1/gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/gzip -------------------------------------------------------------------------------- /man/1/idea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/idea -------------------------------------------------------------------------------- /man/1/itest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/itest -------------------------------------------------------------------------------- /man/1/kill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/kill -------------------------------------------------------------------------------- /man/1/limbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/limbo -------------------------------------------------------------------------------- /man/1/listen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/listen -------------------------------------------------------------------------------- /man/1/logon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/logon -------------------------------------------------------------------------------- /man/1/look: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/look -------------------------------------------------------------------------------- /man/1/ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/ls -------------------------------------------------------------------------------- /man/1/m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/m4 -------------------------------------------------------------------------------- /man/1/man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/man -------------------------------------------------------------------------------- /man/1/mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/mash -------------------------------------------------------------------------------- /man/1/mash-tk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/mash-tk -------------------------------------------------------------------------------- /man/1/mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/mc -------------------------------------------------------------------------------- /man/1/mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/mdb -------------------------------------------------------------------------------- /man/1/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/mk -------------------------------------------------------------------------------- /man/1/mkdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/mkdir -------------------------------------------------------------------------------- /man/1/mprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/mprof -------------------------------------------------------------------------------- /man/1/mux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/mux -------------------------------------------------------------------------------- /man/1/mv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/mv -------------------------------------------------------------------------------- /man/1/netkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/netkey -------------------------------------------------------------------------------- /man/1/netstat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/netstat -------------------------------------------------------------------------------- /man/1/ns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/ns -------------------------------------------------------------------------------- /man/1/nsbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/nsbuild -------------------------------------------------------------------------------- /man/1/os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/os -------------------------------------------------------------------------------- /man/1/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/p -------------------------------------------------------------------------------- /man/1/prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/prof -------------------------------------------------------------------------------- /man/1/ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/ps -------------------------------------------------------------------------------- /man/1/pwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/pwd -------------------------------------------------------------------------------- /man/1/rcmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/rcmd -------------------------------------------------------------------------------- /man/1/read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/read -------------------------------------------------------------------------------- /man/1/rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/rm -------------------------------------------------------------------------------- /man/1/sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/sh -------------------------------------------------------------------------------- /man/1/sort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/sort -------------------------------------------------------------------------------- /man/1/sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/sum -------------------------------------------------------------------------------- /man/1/tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/tail -------------------------------------------------------------------------------- /man/1/tcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/tcs -------------------------------------------------------------------------------- /man/1/tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/tee -------------------------------------------------------------------------------- /man/1/time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/time -------------------------------------------------------------------------------- /man/1/tiny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/tiny -------------------------------------------------------------------------------- /man/1/tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/tr -------------------------------------------------------------------------------- /man/1/uniq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/uniq -------------------------------------------------------------------------------- /man/1/wc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/wc -------------------------------------------------------------------------------- /man/1/wish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/wish -------------------------------------------------------------------------------- /man/1/wm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/wm -------------------------------------------------------------------------------- /man/1/xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/xd -------------------------------------------------------------------------------- /man/1/yacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/1/yacc -------------------------------------------------------------------------------- /man/10/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/10/2a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/10/2a -------------------------------------------------------------------------------- /man/10/2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/10/2c -------------------------------------------------------------------------------- /man/10/2l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/10/2l -------------------------------------------------------------------------------- /man/10/5cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/10/5cv -------------------------------------------------------------------------------- /man/10/ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/10/ar -------------------------------------------------------------------------------- /man/10/c2l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/10/c2l -------------------------------------------------------------------------------- /man/10/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/10/dev -------------------------------------------------------------------------------- /man/10/eve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/10/eve -------------------------------------------------------------------------------- /man/10/iar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/10/iar -------------------------------------------------------------------------------- /man/10/inb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/10/inb -------------------------------------------------------------------------------- /man/10/inm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/10/inm -------------------------------------------------------------------------------- /man/10/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/10/mk -------------------------------------------------------------------------------- /man/10/ms2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/10/ms2 -------------------------------------------------------------------------------- /man/10/qio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/10/qio -------------------------------------------------------------------------------- /man/10/ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/10/ref -------------------------------------------------------------------------------- /man/2/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/2/arg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/arg -------------------------------------------------------------------------------- /man/2/asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/asn1 -------------------------------------------------------------------------------- /man/2/cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/cfg -------------------------------------------------------------------------------- /man/2/crc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/crc -------------------------------------------------------------------------------- /man/2/csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/csv -------------------------------------------------------------------------------- /man/2/dbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/dbm -------------------------------------------------------------------------------- /man/2/dial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/dial -------------------------------------------------------------------------------- /man/2/dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/dict -------------------------------------------------------------------------------- /man/2/dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/dis -------------------------------------------------------------------------------- /man/2/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/env -------------------------------------------------------------------------------- /man/2/hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/hash -------------------------------------------------------------------------------- /man/2/ida: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/ida -------------------------------------------------------------------------------- /man/2/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/ip -------------------------------------------------------------------------------- /man/2/ir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/ir -------------------------------------------------------------------------------- /man/2/json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/json -------------------------------------------------------------------------------- /man/2/lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/lock -------------------------------------------------------------------------------- /man/2/mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/mpeg -------------------------------------------------------------------------------- /man/2/pop3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/pop3 -------------------------------------------------------------------------------- /man/2/prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/prof -------------------------------------------------------------------------------- /man/2/rand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/rand -------------------------------------------------------------------------------- /man/2/sets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/sets -------------------------------------------------------------------------------- /man/2/sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/sh -------------------------------------------------------------------------------- /man/2/smtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/smtp -------------------------------------------------------------------------------- /man/2/spki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/spki -------------------------------------------------------------------------------- /man/2/srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/srv -------------------------------------------------------------------------------- /man/2/styx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/styx -------------------------------------------------------------------------------- /man/2/tabs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/tabs -------------------------------------------------------------------------------- /man/2/tftp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/tftp -------------------------------------------------------------------------------- /man/2/tk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/tk -------------------------------------------------------------------------------- /man/2/ubfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/ubfa -------------------------------------------------------------------------------- /man/2/wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/wait -------------------------------------------------------------------------------- /man/2/xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/2/xml -------------------------------------------------------------------------------- /man/3/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/3/arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/arch -------------------------------------------------------------------------------- /man/3/boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/boot -------------------------------------------------------------------------------- /man/3/cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/cap -------------------------------------------------------------------------------- /man/3/cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/cmd -------------------------------------------------------------------------------- /man/3/cons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/cons -------------------------------------------------------------------------------- /man/3/dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/dbg -------------------------------------------------------------------------------- /man/3/draw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/draw -------------------------------------------------------------------------------- /man/3/ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/ds -------------------------------------------------------------------------------- /man/3/dup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/dup -------------------------------------------------------------------------------- /man/3/eia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/eia -------------------------------------------------------------------------------- /man/3/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/env -------------------------------------------------------------------------------- /man/3/fpga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/fpga -------------------------------------------------------------------------------- /man/3/fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/fs -------------------------------------------------------------------------------- /man/3/ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/ftl -------------------------------------------------------------------------------- /man/3/gpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/gpio -------------------------------------------------------------------------------- /man/3/i2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/i2c -------------------------------------------------------------------------------- /man/3/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/ip -------------------------------------------------------------------------------- /man/3/lpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/lpt -------------------------------------------------------------------------------- /man/3/mnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/mnt -------------------------------------------------------------------------------- /man/3/mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/mpeg -------------------------------------------------------------------------------- /man/3/pbus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/pbus -------------------------------------------------------------------------------- /man/3/pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/pipe -------------------------------------------------------------------------------- /man/3/plap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/plap -------------------------------------------------------------------------------- /man/3/pnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/pnp -------------------------------------------------------------------------------- /man/3/prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/prof -------------------------------------------------------------------------------- /man/3/prog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/prog -------------------------------------------------------------------------------- /man/3/root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/root -------------------------------------------------------------------------------- /man/3/rtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/rtc -------------------------------------------------------------------------------- /man/3/sd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/sd -------------------------------------------------------------------------------- /man/3/sign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/sign -------------------------------------------------------------------------------- /man/3/srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/srv -------------------------------------------------------------------------------- /man/3/srv9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/srv9 -------------------------------------------------------------------------------- /man/3/ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/ssl -------------------------------------------------------------------------------- /man/3/tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/tls -------------------------------------------------------------------------------- /man/3/tv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/tv -------------------------------------------------------------------------------- /man/3/usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/usb -------------------------------------------------------------------------------- /man/3/vga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/vga -------------------------------------------------------------------------------- /man/3/vid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/3/vid -------------------------------------------------------------------------------- /man/4/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/4/acme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/4/acme -------------------------------------------------------------------------------- /man/4/dbfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/4/dbfs -------------------------------------------------------------------------------- /man/4/kfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/4/kfs -------------------------------------------------------------------------------- /man/4/trfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/4/trfs -------------------------------------------------------------------------------- /man/5/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/5/open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/5/open -------------------------------------------------------------------------------- /man/5/read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/5/read -------------------------------------------------------------------------------- /man/5/stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/5/stat -------------------------------------------------------------------------------- /man/5/walk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/5/walk -------------------------------------------------------------------------------- /man/6/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/6/auth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/6/auth -------------------------------------------------------------------------------- /man/6/dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/6/dis -------------------------------------------------------------------------------- /man/6/font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/6/font -------------------------------------------------------------------------------- /man/6/json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/6/json -------------------------------------------------------------------------------- /man/6/keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/6/keys -------------------------------------------------------------------------------- /man/6/man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/6/man -------------------------------------------------------------------------------- /man/6/ndb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/6/ndb -------------------------------------------------------------------------------- /man/6/sbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/6/sbl -------------------------------------------------------------------------------- /man/6/ubfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/6/ubfa -------------------------------------------------------------------------------- /man/6/utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/6/utf -------------------------------------------------------------------------------- /man/7/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/7/cddb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/7/cddb -------------------------------------------------------------------------------- /man/7/db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/7/db -------------------------------------------------------------------------------- /man/8/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/8/cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/8/cs -------------------------------------------------------------------------------- /man/8/dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/8/dhcp -------------------------------------------------------------------------------- /man/8/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/8/dns -------------------------------------------------------------------------------- /man/8/ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/8/ftl -------------------------------------------------------------------------------- /man/8/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/8/init -------------------------------------------------------------------------------- /man/8/mkfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/8/mkfs -------------------------------------------------------------------------------- /man/8/ping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/8/ping -------------------------------------------------------------------------------- /man/8/prep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/8/prep -------------------------------------------------------------------------------- /man/8/rip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/8/rip -------------------------------------------------------------------------------- /man/8/sntp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/8/sntp -------------------------------------------------------------------------------- /man/8/svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/8/svc -------------------------------------------------------------------------------- /man/9/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/9/bind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/9/bind -------------------------------------------------------------------------------- /man/9/grab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/9/grab -------------------------------------------------------------------------------- /man/9/grid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/9/grid -------------------------------------------------------------------------------- /man/9/menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/9/menu -------------------------------------------------------------------------------- /man/9/pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/9/pack -------------------------------------------------------------------------------- /man/9/see: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/9/see -------------------------------------------------------------------------------- /man/9/send: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/9/send -------------------------------------------------------------------------------- /man/9/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/9/text -------------------------------------------------------------------------------- /man/fonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/fonts -------------------------------------------------------------------------------- /man/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/index -------------------------------------------------------------------------------- /man/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/lib/lookman/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/man/mkfile -------------------------------------------------------------------------------- /mkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/mkconfig -------------------------------------------------------------------------------- /mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/mkfile -------------------------------------------------------------------------------- /mkfiles/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mnt/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mnt/dhtfs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mnt/dhtfs/placeholder: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /mnt/keys/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mnt/keys/alice/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mnt/registry/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/alphabet/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/grid/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/grid/demo/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/math/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/srvrunt.b: -------------------------------------------------------------------------------- 1 | implement nothing; 2 | 3 | include "srv.m"; 4 | -------------------------------------------------------------------------------- /n/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /n/prog/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opt/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/opt/README -------------------------------------------------------------------------------- /os/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/NOTICE -------------------------------------------------------------------------------- /os/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/README -------------------------------------------------------------------------------- /os/boot/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/boot/arm1110/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/boot/arm1110/dat.h: -------------------------------------------------------------------------------- 1 | /* deliberately empty */ 2 | -------------------------------------------------------------------------------- /os/boot/libflate/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/boot/mpc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/boot/mpc/mem.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/boot/pc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/boot/puma/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/boot/rpcg/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/boot/rpcg/mem.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/cerf1110/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/cerf250/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/cerf405/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/fads/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/fads/io.h: -------------------------------------------------------------------------------- 1 | #include "../mpc/800io.h" 2 | -------------------------------------------------------------------------------- /os/gum/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/gum/gum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/gum/gum -------------------------------------------------------------------------------- /os/init/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/ip/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/ip/il.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/ip/il.c -------------------------------------------------------------------------------- /os/ip/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/ip/ip.c -------------------------------------------------------------------------------- /os/ip/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/ip/ip.h -------------------------------------------------------------------------------- /os/ipaq1110/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/ipengine/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/ipengine/io.h: -------------------------------------------------------------------------------- 1 | #include "../mpc/800io.h" 2 | -------------------------------------------------------------------------------- /os/js/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/js/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/js/io.h -------------------------------------------------------------------------------- /os/js/js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/js/js -------------------------------------------------------------------------------- /os/js/l.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/js/l.s -------------------------------------------------------------------------------- /os/ks32/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/ks32/Mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/ks32/Mk -------------------------------------------------------------------------------- /os/ks32/squirt: -------------------------------------------------------------------------------- 1 | #!/bin/rc 2 | cat ievaluator7t.txt 3 | -------------------------------------------------------------------------------- /os/manga/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/mpc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/mpc/l.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/mpc/l.s -------------------------------------------------------------------------------- /os/omap/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/pc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/pc/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/pc/io.h -------------------------------------------------------------------------------- /os/pc/l.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/pc/l.s -------------------------------------------------------------------------------- /os/pc/mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/pc/mp.c -------------------------------------------------------------------------------- /os/pc/mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/pc/mp.h -------------------------------------------------------------------------------- /os/pc/pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/pc/pc -------------------------------------------------------------------------------- /os/pc/pc4e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/pc/pc4e -------------------------------------------------------------------------------- /os/pc/pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/pc/pix -------------------------------------------------------------------------------- /os/pc/tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/pc/tv.h -------------------------------------------------------------------------------- /os/port/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/pxa/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/pxa/l.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/os/pxa/l.s -------------------------------------------------------------------------------- /os/rpcg/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/rpcg/io.h: -------------------------------------------------------------------------------- 1 | #include "../mpc/800io.h" 2 | -------------------------------------------------------------------------------- /os/sa1110/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /program: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabbi/wonderland/HEAD/program -------------------------------------------------------------------------------- /services/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/httpd/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/httpd/httpd.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/webget/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/webget/webget.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/db/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/libstyx/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/odbc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/odbc/mkfile-Linux: -------------------------------------------------------------------------------- 1 | SYSLIBS=-lodbc 2 | -------------------------------------------------------------------------------- /tools/odbc/mkfile-MacOSX: -------------------------------------------------------------------------------- 1 | SYSLIBS= -liodbc 2 | -------------------------------------------------------------------------------- /tools/odbc/mkfile-Plan9: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-FreeBSD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-Irix: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-Linux: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-MacOSX: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-OpenBSD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-Plan9: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/default/lib/deb: -------------------------------------------------------------------------------- 1 | 0100 -------------------------------------------------------------------------------- /usr/default/namespace: -------------------------------------------------------------------------------- 1 | bind -ia #C / 2 | -------------------------------------------------------------------------------- /usr/inferno/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/inferno/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/inferno/namespace: -------------------------------------------------------------------------------- 1 | bind -ia #C / 2 | -------------------------------------------------------------------------------- /usr/quadrocube/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/quadrocube/dev/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/quadrocube/keyring/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/quadrocube/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/zubr/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/zubr/keyring/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/zubr/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/0a/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/0c/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/0l/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/1a/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/1c/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/1l/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/2a/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/2c/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/2l/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/5a/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/5c/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/5coff/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/5cv/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/5l/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/6a/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/6c/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/6l/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/8a/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/8c/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/8l/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/9c/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/acid/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/acid/arm: -------------------------------------------------------------------------------- 1 | please remove this file 2 | -------------------------------------------------------------------------------- /utils/awk/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/c2l/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/cat/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/cc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/cp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/cvbit/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/data2c/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/data2s/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/echo/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/format/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/ftl/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/iar/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/idea/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/iyacc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/ka/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/kc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/kl/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/kprof/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/ksize/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/kstrip/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/libmach/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/libregexp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/md5sum/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/mk/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/mkdir/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/mkext/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/mkppcimage/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/ms2/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/mv/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/na/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/ndate/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/nm/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/ntsrv/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/qa/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/qc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/ql/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/rcsh/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/rm/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/sed/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/sqz/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/srclist/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/tc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/test/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/tr/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/va/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/vc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/vl/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wonderland/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wonderland/README: -------------------------------------------------------------------------------- 1 | The Wonderland is mounted here... 2 | --------------------------------------------------------------------------------