├── .github └── workflows │ ├── Makefile │ ├── build-and-test.jsonnet │ ├── build-and-test.yml │ ├── docker.yml │ └── jsonnet_to_yaml.sh ├── .gitignore ├── 5a ├── a.h ├── a.y ├── lex.c └── mkfile ├── 5c ├── 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 ├── 5l ├── Plan9.c ├── Posix.c ├── asm.c ├── l.h ├── list.c ├── mkfile ├── noop.c ├── obj.c ├── optab.c ├── pass.c └── span.c ├── 8a ├── a.h ├── a.y ├── l.s ├── lex.c └── mkfile ├── 8c ├── 6.out.h ├── 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 ├── Plan9.c ├── Posix.c ├── asm.c ├── compat.c ├── elf.c ├── elf.h ├── l.h ├── list.c ├── mkfile ├── obj.c ├── optab.c ├── pass.c └── span.c ├── Cygwin └── 386 │ ├── bin │ ├── ar │ ├── iyacc │ ├── mk │ ├── pad.txt │ └── yacc │ ├── include │ ├── fpuctl.h │ └── lib9.h │ └── lib │ └── .keep ├── Dockerfile ├── Linux └── 386 │ ├── bin │ ├── data2c │ ├── iyacc │ └── mk │ ├── include │ ├── fpuctl.h │ └── lib9.h │ └── lib │ └── .keep ├── MacOSX └── 386 │ ├── bin │ ├── ar │ ├── data2c │ ├── iyacc │ ├── mk │ └── yacc │ ├── include │ ├── fpuctl.h │ └── lib9.h │ └── lib │ └── .keep ├── Makefile ├── Plan9 └── 386 │ ├── bin │ └── data2c │ └── include │ ├── lib9.h │ └── u.h ├── acid ├── 386 ├── B.sh ├── acid.h ├── arm ├── builtin.c ├── dbg.y ├── dot.c ├── exec.c ├── expr.c ├── lex.c ├── list.c ├── main.c ├── mkfile ├── os-Plan9.c ├── os-Posix.c ├── port ├── print.c ├── proc.c ├── rdebug.c └── util.c ├── ar ├── Plan9.c ├── Posix.c ├── ar.c └── mkfile ├── cc ├── Plan9.c ├── Posix.c ├── acid.c ├── bits.c ├── c99 ├── 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 ├── changes.txt ├── configure ├── copyright.txt ├── docs ├── acid.ms ├── acid.pdf ├── acidpaper.ms ├── acidpaper.pdf ├── acidtut.ms ├── acidtut.pdf ├── asm.ms ├── asm.pdf ├── comp.ms ├── comp.pdf ├── compiler.ms ├── compiler.pdf ├── lex.pdf ├── mk.ms ├── mk.pdf └── yacc.pdf ├── etc ├── compilers ├── mkconfig.txt ├── os.arch.dlist ├── os.arch.dlist.sh └── os.dlist ├── include ├── a.out.h ├── ar.h ├── bio.h ├── mach.h ├── mathi.h ├── rdbg.h └── regexp.h ├── install.txt ├── install_linux.txt ├── install_macos.txt ├── install_windows.txt ├── ld ├── Posix.c ├── elf.c └── elf.h ├── lex ├── header.c ├── ldefs.h ├── lmain.c ├── mkfile ├── ncform ├── parser.y ├── sub1.c └── sub2.c ├── lib ├── lex.ncform ├── rcmain ├── rcmain.unix ├── yaccpar └── yaccpars ├── lib9 ├── argv0.c ├── charstod.c ├── cistrcmp.c ├── cistrncmp.c ├── cistrstr.c ├── cleanname.c ├── copyright.txt ├── create.c ├── dirstat-posix.c ├── dirwstat.c ├── dofmt.c ├── dorfmt.c ├── errfmt.c ├── errstr-Plan9.c ├── errstr-posix.c ├── exits.c ├── fltfmt.c ├── fmt.c ├── fmtdef.h ├── fmtfd.c ├── fmtlock.c ├── fmtprint.c ├── fmtquote.c ├── fmtrune.c ├── fmtstr.c ├── fmtvprint.c ├── fprint.c ├── getcallerpc-Cygwin-386.s ├── getcallerpc-Linux-386.s ├── getcallerpc-MacOSX-386.s ├── getfields.c ├── getuser-posix.c ├── getwd-posix.c ├── lock.c ├── mk.sh ├── mkfile ├── mkfile-Plan9 ├── mkfile-Posix ├── nulldir.c ├── pow10.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 ├── smprint.c ├── snprint.c ├── sprint.c ├── strdup.c ├── strecpy.c ├── strtoll.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 ├── 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 ├── bvprint.c ├── bwrite.c ├── mk.sh └── mkfile ├── liblex ├── allprint.c ├── main.c ├── mkfile ├── reject.c ├── yyless.c └── yywrap.c ├── libmach ├── 5.c ├── 5db.c ├── 5obj.c ├── 6.c ├── 6obj.c ├── 8.c ├── 8db.c ├── 8obj.c ├── NOTICE ├── access.c ├── ar.h ├── bootexec.h ├── elf.h ├── executable.c ├── machdata.c ├── macho.h ├── map.c ├── mkfile ├── obj.c ├── obj.h ├── setmach.c ├── swap.c ├── sym.c ├── ureg5.h ├── ureg6.h └── ureg8.h ├── libmath ├── FPcontrol-Cygwin.c ├── FPcontrol-Linux.c ├── FPcontrol-MacOSX.c ├── FPcontrol-Plan9.c ├── bin │ ├── fdlibm-stubs │ ├── unif_dtoa │ └── unif_fdlibm ├── blas.c ├── copyright.txt ├── dtoa.c ├── fdim.c ├── fdlibm │ ├── 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 ├── libregexp ├── mk.sh ├── mkfile ├── regaux.c ├── regcomp.c ├── regcomp.h ├── regerror.c ├── regexec.c ├── regsub.c ├── rregexec.c └── rregsub.c ├── mk ├── 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.c ├── mk.h ├── mk.sh ├── mkfile ├── 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 ├── mkfile ├── mkfiles ├── mkfile-Cygwin-386 ├── mkfile-Linux-386 ├── mkfile-MacOSX-386 ├── mkfile-Plan9-386 ├── mkhost-Cygwin ├── mkhost-Linux ├── mkhost-MacOSX ├── mkhost-Plan9 ├── mklibsubdirs ├── mkone-rc ├── mkone-sh ├── mksubdirs ├── mksyslib-rc └── mksyslib-sh ├── modif-orig.txt ├── pcc ├── Plan9.c ├── Posix.c ├── mkfile └── pcc.c ├── rc ├── Plan9.c ├── Posix.c ├── code.c ├── exec.c ├── exec.h ├── fns.h ├── getflags.c ├── getflags.h ├── glob.c ├── globals.c ├── havefork.c ├── haventfork.c ├── here.c ├── io.c ├── io.h ├── lex.c ├── mkfile ├── pad.txt ├── pcmd.c ├── pfnc.c ├── plan9.c ├── rc.h ├── simple.c ├── subr.c ├── syn.y ├── trap.c ├── tree.c ├── unix.c ├── unix.h ├── var.c └── win32.c ├── readme.txt ├── skip_list.txt ├── todo.org ├── utilities ├── aux │ ├── data2s.c │ ├── mkfile │ └── mklatinkbd.c ├── date │ ├── date.c │ └── mkfile ├── hoc │ ├── code.c │ ├── hoc.h │ ├── hoc.y │ ├── init.c │ ├── math.c │ ├── mkfile │ └── symbol.c ├── kprof │ ├── kprof.c │ └── mkfile ├── ksize │ ├── ksize.c │ └── mkfile ├── kstrip │ ├── kstrip.c │ └── mkfile ├── mkfile ├── nm │ ├── mkfile │ └── nm.c ├── pad.txt ├── sed │ ├── mkfile │ ├── pad.txt │ └── sed.c └── xd │ ├── mkfile │ └── xd.c ├── va ├── a.h ├── a.y ├── l.s ├── lex.c ├── mkfile └── note ├── vc ├── 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 ├── asm.c ├── compat.c ├── l.h ├── list.c ├── mkfile ├── noop.c ├── obj.c ├── optab.c ├── pass.c ├── sched.c └── span.c └── yacc ├── mkfile ├── yacc.c └── yaccpar /.github/workflows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/.github/workflows/Makefile -------------------------------------------------------------------------------- /.github/workflows/build-and-test.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/.github/workflows/build-and-test.jsonnet -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/jsonnet_to_yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/.github/workflows/jsonnet_to_yaml.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/.gitignore -------------------------------------------------------------------------------- /5a/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5a/a.h -------------------------------------------------------------------------------- /5a/a.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5a/a.y -------------------------------------------------------------------------------- /5a/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5a/lex.c -------------------------------------------------------------------------------- /5a/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5a/mkfile -------------------------------------------------------------------------------- /5c/5.out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5c/5.out.h -------------------------------------------------------------------------------- /5c/cgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5c/cgen.c -------------------------------------------------------------------------------- /5c/enam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5c/enam.c -------------------------------------------------------------------------------- /5c/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5c/gc.h -------------------------------------------------------------------------------- /5c/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5c/list.c -------------------------------------------------------------------------------- /5c/mkenam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5c/mkenam -------------------------------------------------------------------------------- /5c/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5c/mkfile -------------------------------------------------------------------------------- /5c/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5c/mul.c -------------------------------------------------------------------------------- /5c/peep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5c/peep.c -------------------------------------------------------------------------------- /5c/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5c/reg.c -------------------------------------------------------------------------------- /5c/sgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5c/sgen.c -------------------------------------------------------------------------------- /5c/swt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5c/swt.c -------------------------------------------------------------------------------- /5c/txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5c/txt.c -------------------------------------------------------------------------------- /5l/Plan9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5l/Plan9.c -------------------------------------------------------------------------------- /5l/Posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5l/Posix.c -------------------------------------------------------------------------------- /5l/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5l/asm.c -------------------------------------------------------------------------------- /5l/l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5l/l.h -------------------------------------------------------------------------------- /5l/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5l/list.c -------------------------------------------------------------------------------- /5l/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5l/mkfile -------------------------------------------------------------------------------- /5l/noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5l/noop.c -------------------------------------------------------------------------------- /5l/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5l/obj.c -------------------------------------------------------------------------------- /5l/optab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5l/optab.c -------------------------------------------------------------------------------- /5l/pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5l/pass.c -------------------------------------------------------------------------------- /5l/span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/5l/span.c -------------------------------------------------------------------------------- /8a/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8a/a.h -------------------------------------------------------------------------------- /8a/a.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8a/a.y -------------------------------------------------------------------------------- /8a/l.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8a/l.s -------------------------------------------------------------------------------- /8a/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8a/lex.c -------------------------------------------------------------------------------- /8a/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8a/mkfile -------------------------------------------------------------------------------- /8c/6.out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/6.out.h -------------------------------------------------------------------------------- /8c/8.out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/8.out.h -------------------------------------------------------------------------------- /8c/cgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/cgen.c -------------------------------------------------------------------------------- /8c/cgen64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/cgen64.c -------------------------------------------------------------------------------- /8c/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/div.c -------------------------------------------------------------------------------- /8c/enam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/enam.c -------------------------------------------------------------------------------- /8c/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/gc.h -------------------------------------------------------------------------------- /8c/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/list.c -------------------------------------------------------------------------------- /8c/machcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/machcap.c -------------------------------------------------------------------------------- /8c/mkenam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/mkenam -------------------------------------------------------------------------------- /8c/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/mkfile -------------------------------------------------------------------------------- /8c/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/mul.c -------------------------------------------------------------------------------- /8c/peep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/peep.c -------------------------------------------------------------------------------- /8c/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/reg.c -------------------------------------------------------------------------------- /8c/sgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/sgen.c -------------------------------------------------------------------------------- /8c/swt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/swt.c -------------------------------------------------------------------------------- /8c/txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8c/txt.c -------------------------------------------------------------------------------- /8l/Plan9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8l/Plan9.c -------------------------------------------------------------------------------- /8l/Posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8l/Posix.c -------------------------------------------------------------------------------- /8l/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8l/asm.c -------------------------------------------------------------------------------- /8l/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8l/compat.c -------------------------------------------------------------------------------- /8l/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8l/elf.c -------------------------------------------------------------------------------- /8l/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8l/elf.h -------------------------------------------------------------------------------- /8l/l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8l/l.h -------------------------------------------------------------------------------- /8l/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8l/list.c -------------------------------------------------------------------------------- /8l/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8l/mkfile -------------------------------------------------------------------------------- /8l/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8l/obj.c -------------------------------------------------------------------------------- /8l/optab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8l/optab.c -------------------------------------------------------------------------------- /8l/pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8l/pass.c -------------------------------------------------------------------------------- /8l/span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/8l/span.c -------------------------------------------------------------------------------- /Cygwin/386/bin/ar: -------------------------------------------------------------------------------- 1 | iar -------------------------------------------------------------------------------- /Cygwin/386/bin/iyacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/Cygwin/386/bin/iyacc -------------------------------------------------------------------------------- /Cygwin/386/bin/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/Cygwin/386/bin/mk -------------------------------------------------------------------------------- /Cygwin/386/bin/pad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/Cygwin/386/bin/pad.txt -------------------------------------------------------------------------------- /Cygwin/386/bin/yacc: -------------------------------------------------------------------------------- 1 | iyacc -------------------------------------------------------------------------------- /Cygwin/386/include/fpuctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/Cygwin/386/include/fpuctl.h -------------------------------------------------------------------------------- /Cygwin/386/include/lib9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/Cygwin/386/include/lib9.h -------------------------------------------------------------------------------- /Cygwin/386/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/Dockerfile -------------------------------------------------------------------------------- /Linux/386/bin/data2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/Linux/386/bin/data2c -------------------------------------------------------------------------------- /Linux/386/bin/iyacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/Linux/386/bin/iyacc -------------------------------------------------------------------------------- /Linux/386/bin/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/Linux/386/bin/mk -------------------------------------------------------------------------------- /Linux/386/include/fpuctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/Linux/386/include/fpuctl.h -------------------------------------------------------------------------------- /Linux/386/include/lib9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/Linux/386/include/lib9.h -------------------------------------------------------------------------------- /Linux/386/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MacOSX/386/bin/ar: -------------------------------------------------------------------------------- 1 | iar -------------------------------------------------------------------------------- /MacOSX/386/bin/data2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/MacOSX/386/bin/data2c -------------------------------------------------------------------------------- /MacOSX/386/bin/iyacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/MacOSX/386/bin/iyacc -------------------------------------------------------------------------------- /MacOSX/386/bin/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/MacOSX/386/bin/mk -------------------------------------------------------------------------------- /MacOSX/386/bin/yacc: -------------------------------------------------------------------------------- 1 | iyacc -------------------------------------------------------------------------------- /MacOSX/386/include/fpuctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/MacOSX/386/include/fpuctl.h -------------------------------------------------------------------------------- /MacOSX/386/include/lib9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/MacOSX/386/include/lib9.h -------------------------------------------------------------------------------- /MacOSX/386/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/Makefile -------------------------------------------------------------------------------- /Plan9/386/bin/data2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/Plan9/386/bin/data2c -------------------------------------------------------------------------------- /Plan9/386/include/lib9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/Plan9/386/include/lib9.h -------------------------------------------------------------------------------- /Plan9/386/include/u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/Plan9/386/include/u.h -------------------------------------------------------------------------------- /acid/386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/386 -------------------------------------------------------------------------------- /acid/B.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/B.sh -------------------------------------------------------------------------------- /acid/acid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/acid.h -------------------------------------------------------------------------------- /acid/arm: -------------------------------------------------------------------------------- 1 | please remove this file 2 | -------------------------------------------------------------------------------- /acid/builtin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/builtin.c -------------------------------------------------------------------------------- /acid/dbg.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/dbg.y -------------------------------------------------------------------------------- /acid/dot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/dot.c -------------------------------------------------------------------------------- /acid/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/exec.c -------------------------------------------------------------------------------- /acid/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/expr.c -------------------------------------------------------------------------------- /acid/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/lex.c -------------------------------------------------------------------------------- /acid/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/list.c -------------------------------------------------------------------------------- /acid/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/main.c -------------------------------------------------------------------------------- /acid/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/mkfile -------------------------------------------------------------------------------- /acid/os-Plan9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/os-Plan9.c -------------------------------------------------------------------------------- /acid/os-Posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/os-Posix.c -------------------------------------------------------------------------------- /acid/port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/port -------------------------------------------------------------------------------- /acid/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/print.c -------------------------------------------------------------------------------- /acid/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/proc.c -------------------------------------------------------------------------------- /acid/rdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/rdebug.c -------------------------------------------------------------------------------- /acid/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/acid/util.c -------------------------------------------------------------------------------- /ar/Plan9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/ar/Plan9.c -------------------------------------------------------------------------------- /ar/Posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/ar/Posix.c -------------------------------------------------------------------------------- /ar/ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/ar/ar.c -------------------------------------------------------------------------------- /ar/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/ar/mkfile -------------------------------------------------------------------------------- /cc/Plan9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/Plan9.c -------------------------------------------------------------------------------- /cc/Posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/Posix.c -------------------------------------------------------------------------------- /cc/acid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/acid.c -------------------------------------------------------------------------------- /cc/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/bits.c -------------------------------------------------------------------------------- /cc/c99: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/c99 -------------------------------------------------------------------------------- /cc/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/cc.h -------------------------------------------------------------------------------- /cc/cc.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/cc.y -------------------------------------------------------------------------------- /cc/com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/com.c -------------------------------------------------------------------------------- /cc/com64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/com64.c -------------------------------------------------------------------------------- /cc/dcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/dcl.c -------------------------------------------------------------------------------- /cc/dpchk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/dpchk.c -------------------------------------------------------------------------------- /cc/funct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/funct.c -------------------------------------------------------------------------------- /cc/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/lex.c -------------------------------------------------------------------------------- /cc/lexbody: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/lexbody -------------------------------------------------------------------------------- /cc/mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/mac.c -------------------------------------------------------------------------------- /cc/macbody: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/macbody -------------------------------------------------------------------------------- /cc/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/mkfile -------------------------------------------------------------------------------- /cc/mpatof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/mpatof.c -------------------------------------------------------------------------------- /cc/omachcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/omachcap.c -------------------------------------------------------------------------------- /cc/pgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/pgen.c -------------------------------------------------------------------------------- /cc/pickle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/pickle.c -------------------------------------------------------------------------------- /cc/pswt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/pswt.c -------------------------------------------------------------------------------- /cc/scon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/scon.c -------------------------------------------------------------------------------- /cc/sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/cc/sub.c -------------------------------------------------------------------------------- /changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/changes.txt -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/configure -------------------------------------------------------------------------------- /copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/copyright.txt -------------------------------------------------------------------------------- /docs/acid.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/docs/acid.ms -------------------------------------------------------------------------------- /docs/acid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/docs/acid.pdf -------------------------------------------------------------------------------- /docs/acidpaper.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/docs/acidpaper.ms -------------------------------------------------------------------------------- /docs/acidpaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/docs/acidpaper.pdf -------------------------------------------------------------------------------- /docs/acidtut.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/docs/acidtut.ms -------------------------------------------------------------------------------- /docs/acidtut.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/docs/acidtut.pdf -------------------------------------------------------------------------------- /docs/asm.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/docs/asm.ms -------------------------------------------------------------------------------- /docs/asm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/docs/asm.pdf -------------------------------------------------------------------------------- /docs/comp.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/docs/comp.ms -------------------------------------------------------------------------------- /docs/comp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/docs/comp.pdf -------------------------------------------------------------------------------- /docs/compiler.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/docs/compiler.ms -------------------------------------------------------------------------------- /docs/compiler.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/docs/compiler.pdf -------------------------------------------------------------------------------- /docs/lex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/docs/lex.pdf -------------------------------------------------------------------------------- /docs/mk.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/docs/mk.ms -------------------------------------------------------------------------------- /docs/mk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/docs/mk.pdf -------------------------------------------------------------------------------- /docs/yacc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/docs/yacc.pdf -------------------------------------------------------------------------------- /etc/compilers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/etc/compilers -------------------------------------------------------------------------------- /etc/mkconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/etc/mkconfig.txt -------------------------------------------------------------------------------- /etc/os.arch.dlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/etc/os.arch.dlist -------------------------------------------------------------------------------- /etc/os.arch.dlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/etc/os.arch.dlist.sh -------------------------------------------------------------------------------- /etc/os.dlist: -------------------------------------------------------------------------------- 1 | FreeBSD 2 | Irix 3 | Linux 4 | MacOSX 5 | NetBSD 6 | Nt 7 | Plan9 8 | Solaris 9 | -------------------------------------------------------------------------------- /include/a.out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/include/a.out.h -------------------------------------------------------------------------------- /include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/include/ar.h -------------------------------------------------------------------------------- /include/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/include/bio.h -------------------------------------------------------------------------------- /include/mach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/include/mach.h -------------------------------------------------------------------------------- /include/mathi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/include/mathi.h -------------------------------------------------------------------------------- /include/rdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/include/rdbg.h -------------------------------------------------------------------------------- /include/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/include/regexp.h -------------------------------------------------------------------------------- /install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/install.txt -------------------------------------------------------------------------------- /install_linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/install_linux.txt -------------------------------------------------------------------------------- /install_macos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/install_macos.txt -------------------------------------------------------------------------------- /install_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/install_windows.txt -------------------------------------------------------------------------------- /ld/Posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/ld/Posix.c -------------------------------------------------------------------------------- /ld/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/ld/elf.c -------------------------------------------------------------------------------- /ld/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/ld/elf.h -------------------------------------------------------------------------------- /lex/header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lex/header.c -------------------------------------------------------------------------------- /lex/ldefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lex/ldefs.h -------------------------------------------------------------------------------- /lex/lmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lex/lmain.c -------------------------------------------------------------------------------- /lex/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lex/mkfile -------------------------------------------------------------------------------- /lex/ncform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lex/ncform -------------------------------------------------------------------------------- /lex/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lex/parser.y -------------------------------------------------------------------------------- /lex/sub1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lex/sub1.c -------------------------------------------------------------------------------- /lex/sub2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lex/sub2.c -------------------------------------------------------------------------------- /lib/lex.ncform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib/lex.ncform -------------------------------------------------------------------------------- /lib/rcmain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib/rcmain -------------------------------------------------------------------------------- /lib/rcmain.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib/rcmain.unix -------------------------------------------------------------------------------- /lib/yaccpar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib/yaccpar -------------------------------------------------------------------------------- /lib/yaccpars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib/yaccpars -------------------------------------------------------------------------------- /lib9/argv0.c: -------------------------------------------------------------------------------- 1 | char* argv0 = 0; 2 | -------------------------------------------------------------------------------- /lib9/charstod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/charstod.c -------------------------------------------------------------------------------- /lib9/cistrcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/cistrcmp.c -------------------------------------------------------------------------------- /lib9/cistrncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/cistrncmp.c -------------------------------------------------------------------------------- /lib9/cistrstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/cistrstr.c -------------------------------------------------------------------------------- /lib9/cleanname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/cleanname.c -------------------------------------------------------------------------------- /lib9/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/copyright.txt -------------------------------------------------------------------------------- /lib9/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/create.c -------------------------------------------------------------------------------- /lib9/dirstat-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/dirstat-posix.c -------------------------------------------------------------------------------- /lib9/dirwstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/dirwstat.c -------------------------------------------------------------------------------- /lib9/dofmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/dofmt.c -------------------------------------------------------------------------------- /lib9/dorfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/dorfmt.c -------------------------------------------------------------------------------- /lib9/errfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/errfmt.c -------------------------------------------------------------------------------- /lib9/errstr-Plan9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/errstr-Plan9.c -------------------------------------------------------------------------------- /lib9/errstr-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/errstr-posix.c -------------------------------------------------------------------------------- /lib9/exits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/exits.c -------------------------------------------------------------------------------- /lib9/fltfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/fltfmt.c -------------------------------------------------------------------------------- /lib9/fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/fmt.c -------------------------------------------------------------------------------- /lib9/fmtdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/fmtdef.h -------------------------------------------------------------------------------- /lib9/fmtfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/fmtfd.c -------------------------------------------------------------------------------- /lib9/fmtlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/fmtlock.c -------------------------------------------------------------------------------- /lib9/fmtprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/fmtprint.c -------------------------------------------------------------------------------- /lib9/fmtquote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/fmtquote.c -------------------------------------------------------------------------------- /lib9/fmtrune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/fmtrune.c -------------------------------------------------------------------------------- /lib9/fmtstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/fmtstr.c -------------------------------------------------------------------------------- /lib9/fmtvprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/fmtvprint.c -------------------------------------------------------------------------------- /lib9/fprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/fprint.c -------------------------------------------------------------------------------- /lib9/getcallerpc-Cygwin-386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/getcallerpc-Cygwin-386.s -------------------------------------------------------------------------------- /lib9/getcallerpc-Linux-386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/getcallerpc-Linux-386.s -------------------------------------------------------------------------------- /lib9/getcallerpc-MacOSX-386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/getcallerpc-MacOSX-386.s -------------------------------------------------------------------------------- /lib9/getfields.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/getfields.c -------------------------------------------------------------------------------- /lib9/getuser-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/getuser-posix.c -------------------------------------------------------------------------------- /lib9/getwd-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/getwd-posix.c -------------------------------------------------------------------------------- /lib9/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/lock.c -------------------------------------------------------------------------------- /lib9/mk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/mk.sh -------------------------------------------------------------------------------- /lib9/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/mkfile -------------------------------------------------------------------------------- /lib9/mkfile-Plan9: -------------------------------------------------------------------------------- 1 | TARGFILES=errstr-Plan9.$O\ 2 | 3 | -------------------------------------------------------------------------------- /lib9/mkfile-Posix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/mkfile-Posix -------------------------------------------------------------------------------- /lib9/nulldir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/nulldir.c -------------------------------------------------------------------------------- /lib9/pow10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/pow10.c -------------------------------------------------------------------------------- /lib9/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/print.c -------------------------------------------------------------------------------- /lib9/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/qsort.c -------------------------------------------------------------------------------- /lib9/readn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/readn.c -------------------------------------------------------------------------------- /lib9/rerrstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/rerrstr.c -------------------------------------------------------------------------------- /lib9/rune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/rune.c -------------------------------------------------------------------------------- /lib9/runeseprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/runeseprint.c -------------------------------------------------------------------------------- /lib9/runesmprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/runesmprint.c -------------------------------------------------------------------------------- /lib9/runesnprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/runesnprint.c -------------------------------------------------------------------------------- /lib9/runestrlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/runestrlen.c -------------------------------------------------------------------------------- /lib9/runevseprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/runevseprint.c -------------------------------------------------------------------------------- /lib9/sbrk-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/sbrk-posix.c -------------------------------------------------------------------------------- /lib9/seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/seek.c -------------------------------------------------------------------------------- /lib9/seprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/seprint.c -------------------------------------------------------------------------------- /lib9/smprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/smprint.c -------------------------------------------------------------------------------- /lib9/snprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/snprint.c -------------------------------------------------------------------------------- /lib9/sprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/sprint.c -------------------------------------------------------------------------------- /lib9/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/strdup.c -------------------------------------------------------------------------------- /lib9/strecpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/strecpy.c -------------------------------------------------------------------------------- /lib9/strtoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/strtoll.c -------------------------------------------------------------------------------- /lib9/sysfatal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/sysfatal.c -------------------------------------------------------------------------------- /lib9/tokenize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/tokenize.c -------------------------------------------------------------------------------- /lib9/u16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/u16.c -------------------------------------------------------------------------------- /lib9/u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/u32.c -------------------------------------------------------------------------------- /lib9/u64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/u64.c -------------------------------------------------------------------------------- /lib9/utfecpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/utfecpy.c -------------------------------------------------------------------------------- /lib9/utflen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/utflen.c -------------------------------------------------------------------------------- /lib9/utfnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/utfnlen.c -------------------------------------------------------------------------------- /lib9/utfrrune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/utfrrune.c -------------------------------------------------------------------------------- /lib9/utfrune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/utfrune.c -------------------------------------------------------------------------------- /lib9/vfprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/vfprint.c -------------------------------------------------------------------------------- /lib9/vseprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/vseprint.c -------------------------------------------------------------------------------- /lib9/vsmprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/vsmprint.c -------------------------------------------------------------------------------- /lib9/vsnprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/lib9/vsnprint.c -------------------------------------------------------------------------------- /libbio/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/NOTICE -------------------------------------------------------------------------------- /libbio/bbuffered.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/bbuffered.c -------------------------------------------------------------------------------- /libbio/bfildes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/bfildes.c -------------------------------------------------------------------------------- /libbio/bflush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/bflush.c -------------------------------------------------------------------------------- /libbio/bgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/bgetc.c -------------------------------------------------------------------------------- /libbio/bgetd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/bgetd.c -------------------------------------------------------------------------------- /libbio/bgetrune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/bgetrune.c -------------------------------------------------------------------------------- /libbio/binit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/binit.c -------------------------------------------------------------------------------- /libbio/boffset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/boffset.c -------------------------------------------------------------------------------- /libbio/bprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/bprint.c -------------------------------------------------------------------------------- /libbio/bputc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/bputc.c -------------------------------------------------------------------------------- /libbio/bputrune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/bputrune.c -------------------------------------------------------------------------------- /libbio/brdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/brdline.c -------------------------------------------------------------------------------- /libbio/bread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/bread.c -------------------------------------------------------------------------------- /libbio/bseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/bseek.c -------------------------------------------------------------------------------- /libbio/bvprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/bvprint.c -------------------------------------------------------------------------------- /libbio/bwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/bwrite.c -------------------------------------------------------------------------------- /libbio/mk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/mk.sh -------------------------------------------------------------------------------- /libbio/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libbio/mkfile -------------------------------------------------------------------------------- /liblex/allprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/liblex/allprint.c -------------------------------------------------------------------------------- /liblex/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/liblex/main.c -------------------------------------------------------------------------------- /liblex/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/liblex/mkfile -------------------------------------------------------------------------------- /liblex/reject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/liblex/reject.c -------------------------------------------------------------------------------- /liblex/yyless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/liblex/yyless.c -------------------------------------------------------------------------------- /liblex/yywrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/liblex/yywrap.c -------------------------------------------------------------------------------- /libmach/5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/5.c -------------------------------------------------------------------------------- /libmach/5db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/5db.c -------------------------------------------------------------------------------- /libmach/5obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/5obj.c -------------------------------------------------------------------------------- /libmach/6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/6.c -------------------------------------------------------------------------------- /libmach/6obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/6obj.c -------------------------------------------------------------------------------- /libmach/8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/8.c -------------------------------------------------------------------------------- /libmach/8db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/8db.c -------------------------------------------------------------------------------- /libmach/8obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/8obj.c -------------------------------------------------------------------------------- /libmach/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/NOTICE -------------------------------------------------------------------------------- /libmach/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/access.c -------------------------------------------------------------------------------- /libmach/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/ar.h -------------------------------------------------------------------------------- /libmach/bootexec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/bootexec.h -------------------------------------------------------------------------------- /libmach/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/elf.h -------------------------------------------------------------------------------- /libmach/executable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/executable.c -------------------------------------------------------------------------------- /libmach/machdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/machdata.c -------------------------------------------------------------------------------- /libmach/macho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/macho.h -------------------------------------------------------------------------------- /libmach/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/map.c -------------------------------------------------------------------------------- /libmach/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/mkfile -------------------------------------------------------------------------------- /libmach/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/obj.c -------------------------------------------------------------------------------- /libmach/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/obj.h -------------------------------------------------------------------------------- /libmach/setmach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/setmach.c -------------------------------------------------------------------------------- /libmach/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/swap.c -------------------------------------------------------------------------------- /libmach/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/sym.c -------------------------------------------------------------------------------- /libmach/ureg5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/ureg5.h -------------------------------------------------------------------------------- /libmach/ureg6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/ureg6.h -------------------------------------------------------------------------------- /libmach/ureg8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmach/ureg8.h -------------------------------------------------------------------------------- /libmath/FPcontrol-Cygwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/FPcontrol-Cygwin.c -------------------------------------------------------------------------------- /libmath/FPcontrol-Linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/FPcontrol-Linux.c -------------------------------------------------------------------------------- /libmath/FPcontrol-MacOSX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/FPcontrol-MacOSX.c -------------------------------------------------------------------------------- /libmath/FPcontrol-Plan9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/FPcontrol-Plan9.c -------------------------------------------------------------------------------- /libmath/bin/fdlibm-stubs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/bin/fdlibm-stubs -------------------------------------------------------------------------------- /libmath/bin/unif_dtoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/bin/unif_dtoa -------------------------------------------------------------------------------- /libmath/bin/unif_fdlibm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/bin/unif_fdlibm -------------------------------------------------------------------------------- /libmath/blas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/blas.c -------------------------------------------------------------------------------- /libmath/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/copyright.txt -------------------------------------------------------------------------------- /libmath/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/dtoa.c -------------------------------------------------------------------------------- /libmath/fdim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdim.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_acos.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_acosh.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_asin.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_atan2.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_atanh.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_cosh.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_exp.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_fmod.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_hypot.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_j0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_j0.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_j1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_j1.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_jn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_jn.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_lgamma_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_lgamma_r.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_log.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_log10.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_pow.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_rem_pio2.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_remainder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_remainder.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_sinh.c -------------------------------------------------------------------------------- /libmath/fdlibm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/e_sqrt.c -------------------------------------------------------------------------------- /libmath/fdlibm/fdlibm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/fdlibm.h -------------------------------------------------------------------------------- /libmath/fdlibm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/k_cos.c -------------------------------------------------------------------------------- /libmath/fdlibm/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/k_rem_pio2.c -------------------------------------------------------------------------------- /libmath/fdlibm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/k_sin.c -------------------------------------------------------------------------------- /libmath/fdlibm/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/k_tan.c -------------------------------------------------------------------------------- /libmath/fdlibm/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/readme -------------------------------------------------------------------------------- /libmath/fdlibm/s_asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_asinh.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_atan.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_cbrt.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_ceil.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_copysign.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_cos.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_erf.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_expm1.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_fabs.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_finite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_finite.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_floor.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_ilogb.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_isnan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_isnan.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_log1p.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_modf.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_nextafter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_nextafter.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_rint.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_scalbn.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_sin.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_tan.c -------------------------------------------------------------------------------- /libmath/fdlibm/s_tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/fdlibm/s_tanh.c -------------------------------------------------------------------------------- /libmath/g_fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/g_fmt.c -------------------------------------------------------------------------------- /libmath/gemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/gemm.c -------------------------------------------------------------------------------- /libmath/gfltconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/gfltconv.c -------------------------------------------------------------------------------- /libmath/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/mkfile -------------------------------------------------------------------------------- /libmath/pow10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libmath/pow10.c -------------------------------------------------------------------------------- /libregexp/mk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libregexp/mk.sh -------------------------------------------------------------------------------- /libregexp/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libregexp/mkfile -------------------------------------------------------------------------------- /libregexp/regaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libregexp/regaux.c -------------------------------------------------------------------------------- /libregexp/regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libregexp/regcomp.c -------------------------------------------------------------------------------- /libregexp/regcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libregexp/regcomp.h -------------------------------------------------------------------------------- /libregexp/regerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libregexp/regerror.c -------------------------------------------------------------------------------- /libregexp/regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libregexp/regexec.c -------------------------------------------------------------------------------- /libregexp/regsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libregexp/regsub.c -------------------------------------------------------------------------------- /libregexp/rregexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libregexp/rregexec.c -------------------------------------------------------------------------------- /libregexp/rregsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/libregexp/rregsub.c -------------------------------------------------------------------------------- /mk/Plan9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/Plan9.c -------------------------------------------------------------------------------- /mk/Posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/Posix.c -------------------------------------------------------------------------------- /mk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/README -------------------------------------------------------------------------------- /mk/arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/arc.c -------------------------------------------------------------------------------- /mk/archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/archive.c -------------------------------------------------------------------------------- /mk/bufblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/bufblock.c -------------------------------------------------------------------------------- /mk/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/env.c -------------------------------------------------------------------------------- /mk/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/file.c -------------------------------------------------------------------------------- /mk/fns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/fns.h -------------------------------------------------------------------------------- /mk/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/graph.c -------------------------------------------------------------------------------- /mk/job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/job.c -------------------------------------------------------------------------------- /mk/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/lex.c -------------------------------------------------------------------------------- /mk/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/main.c -------------------------------------------------------------------------------- /mk/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/match.c -------------------------------------------------------------------------------- /mk/mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/mk.c -------------------------------------------------------------------------------- /mk/mk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/mk.h -------------------------------------------------------------------------------- /mk/mk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/mk.sh -------------------------------------------------------------------------------- /mk/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/mkfile -------------------------------------------------------------------------------- /mk/mkfile-Plan9: -------------------------------------------------------------------------------- 1 | # 2 | # install rule for Inferno/Plan9 - use the default 3 | # 4 | -------------------------------------------------------------------------------- /mk/mkfile-Posix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/mkfile-Posix -------------------------------------------------------------------------------- /mk/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/parse.c -------------------------------------------------------------------------------- /mk/rc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/rc.c -------------------------------------------------------------------------------- /mk/recipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/recipe.c -------------------------------------------------------------------------------- /mk/rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/rule.c -------------------------------------------------------------------------------- /mk/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/run.c -------------------------------------------------------------------------------- /mk/sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/sh.c -------------------------------------------------------------------------------- /mk/shprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/shprint.c -------------------------------------------------------------------------------- /mk/symtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/symtab.c -------------------------------------------------------------------------------- /mk/var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/var.c -------------------------------------------------------------------------------- /mk/varsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/varsub.c -------------------------------------------------------------------------------- /mk/word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mk/word.c -------------------------------------------------------------------------------- /mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mkfile -------------------------------------------------------------------------------- /mkfiles/mkfile-Cygwin-386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mkfiles/mkfile-Cygwin-386 -------------------------------------------------------------------------------- /mkfiles/mkfile-Linux-386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mkfiles/mkfile-Linux-386 -------------------------------------------------------------------------------- /mkfiles/mkfile-MacOSX-386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mkfiles/mkfile-MacOSX-386 -------------------------------------------------------------------------------- /mkfiles/mkfile-Plan9-386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mkfiles/mkfile-Plan9-386 -------------------------------------------------------------------------------- /mkfiles/mkhost-Cygwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mkfiles/mkhost-Cygwin -------------------------------------------------------------------------------- /mkfiles/mkhost-Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mkfiles/mkhost-Linux -------------------------------------------------------------------------------- /mkfiles/mkhost-MacOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mkfiles/mkhost-MacOSX -------------------------------------------------------------------------------- /mkfiles/mkhost-Plan9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mkfiles/mkhost-Plan9 -------------------------------------------------------------------------------- /mkfiles/mklibsubdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mkfiles/mklibsubdirs -------------------------------------------------------------------------------- /mkfiles/mkone-rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mkfiles/mkone-rc -------------------------------------------------------------------------------- /mkfiles/mkone-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mkfiles/mkone-sh -------------------------------------------------------------------------------- /mkfiles/mksubdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mkfiles/mksubdirs -------------------------------------------------------------------------------- /mkfiles/mksyslib-rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mkfiles/mksyslib-rc -------------------------------------------------------------------------------- /mkfiles/mksyslib-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/mkfiles/mksyslib-sh -------------------------------------------------------------------------------- /modif-orig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/modif-orig.txt -------------------------------------------------------------------------------- /pcc/Plan9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/pcc/Plan9.c -------------------------------------------------------------------------------- /pcc/Posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/pcc/Posix.c -------------------------------------------------------------------------------- /pcc/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/pcc/mkfile -------------------------------------------------------------------------------- /pcc/pcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/pcc/pcc.c -------------------------------------------------------------------------------- /rc/Plan9.c: -------------------------------------------------------------------------------- 1 | plan9.c -------------------------------------------------------------------------------- /rc/Posix.c: -------------------------------------------------------------------------------- 1 | unix.c -------------------------------------------------------------------------------- /rc/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/code.c -------------------------------------------------------------------------------- /rc/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/exec.c -------------------------------------------------------------------------------- /rc/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/exec.h -------------------------------------------------------------------------------- /rc/fns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/fns.h -------------------------------------------------------------------------------- /rc/getflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/getflags.c -------------------------------------------------------------------------------- /rc/getflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/getflags.h -------------------------------------------------------------------------------- /rc/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/glob.c -------------------------------------------------------------------------------- /rc/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/globals.c -------------------------------------------------------------------------------- /rc/havefork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/havefork.c -------------------------------------------------------------------------------- /rc/haventfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/haventfork.c -------------------------------------------------------------------------------- /rc/here.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/here.c -------------------------------------------------------------------------------- /rc/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/io.c -------------------------------------------------------------------------------- /rc/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/io.h -------------------------------------------------------------------------------- /rc/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/lex.c -------------------------------------------------------------------------------- /rc/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/mkfile -------------------------------------------------------------------------------- /rc/pad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/pad.txt -------------------------------------------------------------------------------- /rc/pcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/pcmd.c -------------------------------------------------------------------------------- /rc/pfnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/pfnc.c -------------------------------------------------------------------------------- /rc/plan9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/plan9.c -------------------------------------------------------------------------------- /rc/rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/rc.h -------------------------------------------------------------------------------- /rc/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/simple.c -------------------------------------------------------------------------------- /rc/subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/subr.c -------------------------------------------------------------------------------- /rc/syn.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/syn.y -------------------------------------------------------------------------------- /rc/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/trap.c -------------------------------------------------------------------------------- /rc/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/tree.c -------------------------------------------------------------------------------- /rc/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/unix.c -------------------------------------------------------------------------------- /rc/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/unix.h -------------------------------------------------------------------------------- /rc/var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/var.c -------------------------------------------------------------------------------- /rc/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/rc/win32.c -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/readme.txt -------------------------------------------------------------------------------- /skip_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/skip_list.txt -------------------------------------------------------------------------------- /todo.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/todo.org -------------------------------------------------------------------------------- /utilities/aux/data2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/aux/data2s.c -------------------------------------------------------------------------------- /utilities/aux/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/aux/mkfile -------------------------------------------------------------------------------- /utilities/aux/mklatinkbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/aux/mklatinkbd.c -------------------------------------------------------------------------------- /utilities/date/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/date/date.c -------------------------------------------------------------------------------- /utilities/date/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/date/mkfile -------------------------------------------------------------------------------- /utilities/hoc/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/hoc/code.c -------------------------------------------------------------------------------- /utilities/hoc/hoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/hoc/hoc.h -------------------------------------------------------------------------------- /utilities/hoc/hoc.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/hoc/hoc.y -------------------------------------------------------------------------------- /utilities/hoc/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/hoc/init.c -------------------------------------------------------------------------------- /utilities/hoc/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/hoc/math.c -------------------------------------------------------------------------------- /utilities/hoc/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/hoc/mkfile -------------------------------------------------------------------------------- /utilities/hoc/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/hoc/symbol.c -------------------------------------------------------------------------------- /utilities/kprof/kprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/kprof/kprof.c -------------------------------------------------------------------------------- /utilities/kprof/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/kprof/mkfile -------------------------------------------------------------------------------- /utilities/ksize/ksize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/ksize/ksize.c -------------------------------------------------------------------------------- /utilities/ksize/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/ksize/mkfile -------------------------------------------------------------------------------- /utilities/kstrip/kstrip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/kstrip/kstrip.c -------------------------------------------------------------------------------- /utilities/kstrip/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/kstrip/mkfile -------------------------------------------------------------------------------- /utilities/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/mkfile -------------------------------------------------------------------------------- /utilities/nm/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/nm/mkfile -------------------------------------------------------------------------------- /utilities/nm/nm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/nm/nm.c -------------------------------------------------------------------------------- /utilities/pad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/pad.txt -------------------------------------------------------------------------------- /utilities/sed/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/sed/mkfile -------------------------------------------------------------------------------- /utilities/sed/pad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/sed/pad.txt -------------------------------------------------------------------------------- /utilities/sed/sed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/sed/sed.c -------------------------------------------------------------------------------- /utilities/xd/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/xd/mkfile -------------------------------------------------------------------------------- /utilities/xd/xd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/utilities/xd/xd.c -------------------------------------------------------------------------------- /va/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/va/a.h -------------------------------------------------------------------------------- /va/a.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/va/a.y -------------------------------------------------------------------------------- /va/l.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/va/l.s -------------------------------------------------------------------------------- /va/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/va/lex.c -------------------------------------------------------------------------------- /va/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/va/mkfile -------------------------------------------------------------------------------- /va/note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/va/note -------------------------------------------------------------------------------- /vc/cgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vc/cgen.c -------------------------------------------------------------------------------- /vc/enam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vc/enam.c -------------------------------------------------------------------------------- /vc/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vc/gc.h -------------------------------------------------------------------------------- /vc/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vc/list.c -------------------------------------------------------------------------------- /vc/mkenam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vc/mkenam -------------------------------------------------------------------------------- /vc/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vc/mkfile -------------------------------------------------------------------------------- /vc/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vc/mul.c -------------------------------------------------------------------------------- /vc/peep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vc/peep.c -------------------------------------------------------------------------------- /vc/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vc/reg.c -------------------------------------------------------------------------------- /vc/sgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vc/sgen.c -------------------------------------------------------------------------------- /vc/swt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vc/swt.c -------------------------------------------------------------------------------- /vc/txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vc/txt.c -------------------------------------------------------------------------------- /vc/v.out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vc/v.out.h -------------------------------------------------------------------------------- /vl/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vl/asm.c -------------------------------------------------------------------------------- /vl/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vl/compat.c -------------------------------------------------------------------------------- /vl/l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vl/l.h -------------------------------------------------------------------------------- /vl/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vl/list.c -------------------------------------------------------------------------------- /vl/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vl/mkfile -------------------------------------------------------------------------------- /vl/noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vl/noop.c -------------------------------------------------------------------------------- /vl/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vl/obj.c -------------------------------------------------------------------------------- /vl/optab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vl/optab.c -------------------------------------------------------------------------------- /vl/pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vl/pass.c -------------------------------------------------------------------------------- /vl/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vl/sched.c -------------------------------------------------------------------------------- /vl/span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/vl/span.c -------------------------------------------------------------------------------- /yacc/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/yacc/mkfile -------------------------------------------------------------------------------- /yacc/yacc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/yacc/yacc.c -------------------------------------------------------------------------------- /yacc/yaccpar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryx/fork-kencc/HEAD/yacc/yaccpar --------------------------------------------------------------------------------