├── .gitignore ├── README ├── changes ├── debian ├── .gitignore ├── README.source ├── changelog ├── clean ├── control ├── copyright ├── f2c.docs ├── f2c.install ├── f2c.manpages ├── patches │ ├── 0001-make-tweaks.patch │ ├── 0002-prototype-rmdir.patch │ ├── 0003-struct-init-braces.patch │ ├── 0004-fc-script-path-and-tmpfile.patch │ ├── 0005-sysdep-tmpfiles.patch │ ├── 0006-man-dash-hyphen-slash.patch │ ├── 0007-fc-man-page.patch │ ├── 0008-typos.patch │ ├── 0009-redirect-URL.patch │ └── series ├── rules ├── source │ └── format └── watch ├── f2c.1 ├── f2c.1t ├── f2c.h ├── f2c.pdf ├── f2c.ps ├── fc ├── getopt.c └── src ├── Notice ├── README ├── cds.c ├── data.c ├── defines.h ├── defs.h ├── equiv.c ├── error.c ├── exec.c ├── expr.c ├── f2c.1 ├── f2c.1t ├── f2c.h ├── format.c ├── format.h ├── formatdata.c ├── ftypes.h ├── gram.c ├── gram.dcl ├── gram.exec ├── gram.expr ├── gram.head ├── gram.io ├── init.c ├── intr.c ├── io.c ├── iob.h ├── lex.c ├── machdefs.h ├── main.c ├── makefile.u ├── makefile.vc ├── malloc.c ├── mem.c ├── memset.c ├── misc.c ├── mkfile.plan9 ├── names.c ├── names.h ├── niceprintf.c ├── niceprintf.h ├── output.c ├── output.h ├── p1defs.h ├── p1output.c ├── parse.h ├── parse_args.c ├── pccdefs.h ├── pread.c ├── proc.c ├── put.c ├── putpcc.c ├── sysdep.c ├── sysdep.h ├── sysdeptest.c ├── tokens ├── usignal.h ├── vax.c ├── version.c ├── xsum.c └── xsum0.out /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/.gitignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/README -------------------------------------------------------------------------------- /changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/changes -------------------------------------------------------------------------------- /debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/.gitignore -------------------------------------------------------------------------------- /debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/README.source -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/clean -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/f2c.docs: -------------------------------------------------------------------------------- 1 | f2c.ps 2 | README 3 | -------------------------------------------------------------------------------- /debian/f2c.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/f2c.install -------------------------------------------------------------------------------- /debian/f2c.manpages: -------------------------------------------------------------------------------- 1 | fc.1 2 | f2c.1t 3 | -------------------------------------------------------------------------------- /debian/patches/0001-make-tweaks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/patches/0001-make-tweaks.patch -------------------------------------------------------------------------------- /debian/patches/0002-prototype-rmdir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/patches/0002-prototype-rmdir.patch -------------------------------------------------------------------------------- /debian/patches/0003-struct-init-braces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/patches/0003-struct-init-braces.patch -------------------------------------------------------------------------------- /debian/patches/0004-fc-script-path-and-tmpfile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/patches/0004-fc-script-path-and-tmpfile.patch -------------------------------------------------------------------------------- /debian/patches/0005-sysdep-tmpfiles.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/patches/0005-sysdep-tmpfiles.patch -------------------------------------------------------------------------------- /debian/patches/0006-man-dash-hyphen-slash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/patches/0006-man-dash-hyphen-slash.patch -------------------------------------------------------------------------------- /debian/patches/0007-fc-man-page.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/patches/0007-fc-man-page.patch -------------------------------------------------------------------------------- /debian/patches/0008-typos.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/patches/0008-typos.patch -------------------------------------------------------------------------------- /debian/patches/0009-redirect-URL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/patches/0009-redirect-URL.patch -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/patches/series -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/debian/watch -------------------------------------------------------------------------------- /f2c.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/f2c.1 -------------------------------------------------------------------------------- /f2c.1t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/f2c.1t -------------------------------------------------------------------------------- /f2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/f2c.h -------------------------------------------------------------------------------- /f2c.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/f2c.pdf -------------------------------------------------------------------------------- /f2c.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/f2c.ps -------------------------------------------------------------------------------- /fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/fc -------------------------------------------------------------------------------- /getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/getopt.c -------------------------------------------------------------------------------- /src/Notice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/Notice -------------------------------------------------------------------------------- /src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/README -------------------------------------------------------------------------------- /src/cds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/cds.c -------------------------------------------------------------------------------- /src/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/data.c -------------------------------------------------------------------------------- /src/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/defines.h -------------------------------------------------------------------------------- /src/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/defs.h -------------------------------------------------------------------------------- /src/equiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/equiv.c -------------------------------------------------------------------------------- /src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/error.c -------------------------------------------------------------------------------- /src/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/exec.c -------------------------------------------------------------------------------- /src/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/expr.c -------------------------------------------------------------------------------- /src/f2c.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/f2c.1 -------------------------------------------------------------------------------- /src/f2c.1t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/f2c.1t -------------------------------------------------------------------------------- /src/f2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/f2c.h -------------------------------------------------------------------------------- /src/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/format.c -------------------------------------------------------------------------------- /src/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/format.h -------------------------------------------------------------------------------- /src/formatdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/formatdata.c -------------------------------------------------------------------------------- /src/ftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/ftypes.h -------------------------------------------------------------------------------- /src/gram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/gram.c -------------------------------------------------------------------------------- /src/gram.dcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/gram.dcl -------------------------------------------------------------------------------- /src/gram.exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/gram.exec -------------------------------------------------------------------------------- /src/gram.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/gram.expr -------------------------------------------------------------------------------- /src/gram.head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/gram.head -------------------------------------------------------------------------------- /src/gram.io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/gram.io -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/init.c -------------------------------------------------------------------------------- /src/intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/intr.c -------------------------------------------------------------------------------- /src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/io.c -------------------------------------------------------------------------------- /src/iob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/iob.h -------------------------------------------------------------------------------- /src/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/lex.c -------------------------------------------------------------------------------- /src/machdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/machdefs.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/main.c -------------------------------------------------------------------------------- /src/makefile.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/makefile.u -------------------------------------------------------------------------------- /src/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/makefile.vc -------------------------------------------------------------------------------- /src/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/malloc.c -------------------------------------------------------------------------------- /src/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/mem.c -------------------------------------------------------------------------------- /src/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/memset.c -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/mkfile.plan9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/mkfile.plan9 -------------------------------------------------------------------------------- /src/names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/names.c -------------------------------------------------------------------------------- /src/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/names.h -------------------------------------------------------------------------------- /src/niceprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/niceprintf.c -------------------------------------------------------------------------------- /src/niceprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/niceprintf.h -------------------------------------------------------------------------------- /src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/output.c -------------------------------------------------------------------------------- /src/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/output.h -------------------------------------------------------------------------------- /src/p1defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/p1defs.h -------------------------------------------------------------------------------- /src/p1output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/p1output.c -------------------------------------------------------------------------------- /src/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/parse.h -------------------------------------------------------------------------------- /src/parse_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/parse_args.c -------------------------------------------------------------------------------- /src/pccdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/pccdefs.h -------------------------------------------------------------------------------- /src/pread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/pread.c -------------------------------------------------------------------------------- /src/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/proc.c -------------------------------------------------------------------------------- /src/put.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/put.c -------------------------------------------------------------------------------- /src/putpcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/putpcc.c -------------------------------------------------------------------------------- /src/sysdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/sysdep.c -------------------------------------------------------------------------------- /src/sysdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/sysdep.h -------------------------------------------------------------------------------- /src/sysdeptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/sysdeptest.c -------------------------------------------------------------------------------- /src/tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/tokens -------------------------------------------------------------------------------- /src/usignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/usignal.h -------------------------------------------------------------------------------- /src/vax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/vax.c -------------------------------------------------------------------------------- /src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/version.c -------------------------------------------------------------------------------- /src/xsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/xsum.c -------------------------------------------------------------------------------- /src/xsum0.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barak/f2c/HEAD/src/xsum0.out --------------------------------------------------------------------------------