├── README ├── README.md ├── bin ├── execrate ├── ignore ├── mamprobe ├── package └── silent ├── lib └── package │ ├── INIT.README │ ├── INIT.html │ ├── INIT.pkg │ ├── INIT.req │ ├── INIT.ver │ ├── LICENSES │ ├── ast │ ├── bsd │ └── epl │ ├── ast.def │ ├── ast.lic │ ├── bsd.def │ ├── bsd.lic │ ├── epl.def │ ├── package.mk │ ├── uwin.README │ ├── uwin.def │ ├── uwin.html │ ├── uwin.lic │ ├── uwin.pkg │ ├── uwin.req │ └── uwin.ver └── src ├── Makefile ├── Mamfile ├── cmd ├── INIT │ ├── C+probe │ ├── CONVERT.mk │ ├── MAPLIB.mk │ ├── MSGFUN.mk │ ├── MSGKEY.mk │ ├── Makefile │ ├── Mamfile │ ├── PROBE.mk │ ├── RELEASE │ ├── TEST.mk │ ├── WWW.mk │ ├── ar.ibm.risc │ ├── cc.darwin │ ├── cc.darwin.i386 │ ├── cc.darwin.i386-64 │ ├── cc.hp.ia64 │ ├── cc.hp.pa │ ├── cc.hp.pa64 │ ├── cc.ibm.risc │ ├── cc.ibm.risc.gcc │ ├── cc.linux.i386-64-icc │ ├── cc.linux.i386-icc │ ├── cc.linux.ia64-icc │ ├── cc.lynxos.i386 │ ├── cc.lynxos.ppc │ ├── cc.mvs.390 │ ├── cc.next.i386 │ ├── cc.next.m68k │ ├── cc.osf.alpha │ ├── cc.pentium4 │ ├── cc.sco.i386 │ ├── cc.sgi.mips2 │ ├── cc.sgi.mips3 │ ├── cc.sgi.mips3-o32 │ ├── cc.sgi.mips4 │ ├── cc.sgi.mips4-n32 │ ├── cc.specialize │ ├── cc.unix.mc68k │ ├── crossexec.sh │ ├── db.c │ ├── ditto.sh │ ├── dl.c │ ├── execrate.sh │ ├── filter.sh │ ├── gdbm.c │ ├── gdbm1.c │ ├── gdbm2.c │ ├── hello.c │ ├── hosttype.tst │ ├── hurl.sh │ ├── iconv.c │ ├── iffe.sh │ ├── iffe.tst │ ├── ignore.sh │ ├── intl.c │ ├── ld.hp.pa │ ├── ldd.cygwin.i386 │ ├── ldd.darwin │ ├── ldd.hp.pa │ ├── ldd.ibm.risc │ ├── ldd.lynxos │ ├── ldd.mvs.390 │ ├── ldd.sgi │ ├── m.c │ ├── m2.c │ ├── m3.c │ ├── m4.c │ ├── m5.c │ ├── m6.c │ ├── make.probe │ ├── mamake.c │ ├── mamake.rt │ ├── mamake.tst │ ├── mamprobe.sh │ ├── mkdir.sh │ ├── mktest.sh │ ├── mprobe.sh │ ├── nsl.c │ ├── p.c │ ├── package.mk │ ├── package.sh │ ├── probe.win32 │ ├── proto.c │ ├── ratz.c │ ├── regress.sh │ ├── release.c │ ├── rt.sh │ ├── silent.sh │ ├── socket.c │ ├── w.c │ └── w2.c ├── INITuwin │ ├── Makefile │ ├── m.c │ ├── map.mk │ ├── pkg-uwin.mk │ ├── uwin_keys.h │ └── uwin_keys.sh ├── Makefile ├── Mamfile ├── awk │ ├── FIXES │ ├── LICENSE │ ├── Nmakefile │ ├── README │ ├── awk.1 │ ├── awk.h │ ├── awkgram.y │ ├── b.c │ ├── buildwin.bat │ ├── lex.c │ ├── lib.c │ ├── main.c │ ├── makefile │ ├── maketab.c │ ├── missing95.c │ ├── parse.c │ ├── proto.h │ ├── run.c │ ├── tran.c │ ├── ytab.c │ └── ytab.h ├── bc │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── Examples │ │ ├── ckbook.b │ │ ├── pi.b │ │ ├── primes.b │ │ └── twins.b │ ├── INSTALL │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── Nmakefile │ ├── README │ ├── Test │ │ ├── BUG.bc │ │ ├── TESTS.bc │ │ ├── array.b │ │ ├── arrayp.b │ │ ├── aryprm.b │ │ ├── atan.b │ │ ├── checklib.b │ │ ├── div.b │ │ ├── exp.b │ │ ├── fact.b │ │ ├── jn.b │ │ ├── ln.b │ │ ├── mul.b │ │ ├── raise.b │ │ ├── signum │ │ ├── sine.b │ │ ├── sqrt.b │ │ ├── sqrt1.b │ │ ├── sqrt2.b │ │ ├── testfn.b │ │ └── timetest │ ├── acconfig.h │ ├── aclocal.m4 │ ├── bc │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bc.y │ │ ├── execute.c │ │ ├── fix-libmath_h │ │ ├── global.c │ │ ├── libmath.b │ │ ├── load.c │ │ ├── main.c │ │ ├── sbc.y │ │ ├── scan.l │ │ ├── storage.c │ │ └── util.c │ ├── config.h.in │ ├── configure │ ├── configure.in │ ├── dc │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── array.c │ │ ├── dc-proto.h │ │ ├── dc-regdef.h │ │ ├── dc.c │ │ ├── dc.h │ │ ├── eval.c │ │ ├── misc.c │ │ ├── numeric.c │ │ ├── stack.c │ │ └── string.c │ ├── doc │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bc.1 │ │ ├── dc.1 │ │ ├── dc.info │ │ ├── dc.texi │ │ └── texinfo.tex │ ├── h │ │ ├── bcdefs.h │ │ ├── const.h │ │ ├── getopt.h │ │ ├── global.h │ │ ├── number.h │ │ ├── proto.h │ │ └── version.h │ ├── install-sh │ ├── lib │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── getopt.c │ │ ├── getopt1.c │ │ ├── number.c │ │ └── vfprintf.c │ ├── missing │ ├── mkinstalldirs │ └── stamp-h.in ├── bsd │ ├── Makefile │ ├── cal.c │ ├── col.c │ └── script.c ├── captoinfo │ ├── Makefile │ ├── captoinfo.c │ ├── cexpand.c │ ├── iexpand.c │ ├── infocmp.c │ ├── infotocap.c │ ├── otermcap.c │ ├── otermcap.h │ ├── print.c │ ├── print.h │ ├── termcap │ └── terminfo ├── cc │ ├── Makefile │ ├── cc.c │ └── cc.h ├── compress │ ├── Makefile │ ├── README │ ├── compress.1 │ └── compress.c ├── ctags │ ├── .indent.pro │ ├── COPYING │ ├── EXTENDING.html │ ├── FAQ │ ├── INSTALL │ ├── INSTALL.oth │ ├── Makefile.in │ ├── NEWS │ ├── Nmakefile │ ├── README │ ├── acconfig.h │ ├── argproc.c │ ├── args.c │ ├── args.h │ ├── asm.c │ ├── asp.c │ ├── awk.c │ ├── beta.c │ ├── c.c │ ├── cobol.c │ ├── config.h.in │ ├── configure │ ├── configure.in │ ├── ctags.1 │ ├── ctags.h │ ├── ctags.html │ ├── ctags.lsm │ ├── ctags.spec │ ├── debug.c │ ├── debug.h │ ├── descrip.mms │ ├── eiffel.c │ ├── entry.c │ ├── entry.h │ ├── erlang.c │ ├── fortran.c │ ├── general.h │ ├── get.c │ ├── get.h │ ├── html.c │ ├── jscript.c │ ├── keyword.c │ ├── keyword.h │ ├── lisp.c │ ├── lregex.c │ ├── lua.c │ ├── mac.c │ ├── magic.diff │ ├── main.c │ ├── main.h │ ├── maintainer.mak │ ├── make.c │ ├── mk_bc3.mak │ ├── mk_bc5.mak │ ├── mk_djg.mak │ ├── mk_manx.mak │ ├── mk_ming.mak │ ├── mk_mpw.mak │ ├── mk_mvc.mak │ ├── mk_os2.mak │ ├── mk_qdos.mak │ ├── mk_sas.mak │ ├── mkinstalldirs │ ├── options.c │ ├── options.h │ ├── parse.c │ ├── parse.h │ ├── parsers.h │ ├── pascal.c │ ├── perl.c │ ├── php.c │ ├── python.c │ ├── qdos.c │ ├── read.c │ ├── read.h │ ├── readtags.c │ ├── readtags.h │ ├── rexx.c │ ├── routines.c │ ├── routines.h │ ├── ruby.c │ ├── scheme.c │ ├── sh.c │ ├── slang.c │ ├── sml.c │ ├── sort.c │ ├── sort.h │ ├── source.mak │ ├── sql.c │ ├── strlist.c │ ├── strlist.h │ ├── tcl.c │ ├── testing.mak │ ├── verilog.c │ ├── vim.c │ ├── vstring.c │ ├── vstring.h │ └── yacc.c ├── flex │ ├── COPYING │ ├── FlexLexer.h │ ├── INSTALL │ ├── MISC │ │ ├── Amiga │ │ │ ├── README.amiga │ │ │ ├── SMakefile │ │ │ ├── config.h │ │ │ ├── libmain.ch │ │ │ ├── libyywrap.ch │ │ │ └── parse.ych │ │ ├── Atari │ │ │ └── Atari.patches │ │ ├── Borland.old │ │ │ ├── Borland-2.4 │ │ │ └── Turbo-C │ │ ├── Borland │ │ │ ├── Makefile │ │ │ ├── NOTES │ │ │ └── config.h │ │ ├── EBCDIC │ │ ├── MSDOS │ │ │ ├── MSC70.make │ │ │ ├── configur.bat │ │ │ └── djgpp.sed │ │ ├── MVS │ │ │ ├── MVS.mail │ │ │ ├── MVS.todo │ │ │ ├── MVS.uudecode │ │ │ ├── README │ │ │ ├── diffs │ │ │ ├── fixit.l │ │ │ ├── initscan-mvs.c │ │ │ └── unfixit.l │ │ ├── Macintosh │ │ │ ├── THINK_C_notes │ │ │ ├── alloca.c │ │ │ ├── alloca.h │ │ │ └── xmalloc.c │ │ ├── NT │ │ │ ├── Makefile │ │ │ └── config.h │ │ ├── NeXT │ │ ├── OS2 │ │ │ ├── Makefile.os2 │ │ │ └── config.h │ │ ├── README │ │ ├── VMS │ │ │ ├── README.VMS │ │ │ ├── build.com │ │ │ ├── descrip.mms │ │ │ ├── mkskel.tpu │ │ │ ├── vms-code.c │ │ │ └── vms-conf.h │ │ ├── alloca.c │ │ ├── debflex.awk │ │ ├── fastwc │ │ │ ├── README │ │ │ ├── mywc.c │ │ │ ├── wc1.l │ │ │ ├── wc2.l │ │ │ ├── wc3.l │ │ │ ├── wc4.l │ │ │ └── wc5.l │ │ ├── flex.man │ │ ├── parse.c │ │ ├── parse.h │ │ ├── testxxLexer.l │ │ └── texinfo │ │ │ ├── flex.info │ │ │ └── flex.texi │ ├── Makefile │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── ccl.c │ ├── config.h │ ├── configure.in │ ├── dfa.c │ ├── ecs.c │ ├── flex.1 │ ├── flex.skl │ ├── flexdef.h │ ├── gen.c │ ├── initscan.c │ ├── libmain.c │ ├── libyywrap.c │ ├── main.c │ ├── misc.c │ ├── mkskel.sh │ ├── nfa.c │ ├── parse.y │ ├── scan.l │ ├── sym.c │ ├── tblcmp.c │ ├── version.h │ └── yylex.c ├── fvwm │ ├── Nmakefile │ ├── install │ ├── libs │ │ ├── Bindings.c │ │ ├── ClientMsg.c │ │ ├── ClientMsg.h │ │ ├── ColorUtils.c │ │ ├── Colorset.c │ │ ├── Colorset.h │ │ ├── Cursor.c │ │ ├── Event.c │ │ ├── FScreen.c │ │ ├── FScreen.h │ │ ├── FShape.c │ │ ├── FShape.h │ │ ├── GetFont.c │ │ ├── Grab.c │ │ ├── Grab.h │ │ ├── Graphics.c │ │ ├── Module.c │ │ ├── Module.h │ │ ├── Nmakefile │ │ ├── Parse.c │ │ ├── Parse.h │ │ ├── Picture.c │ │ ├── Picture.h │ │ ├── Pointer.c │ │ ├── Strings.c │ │ ├── Strings.h │ │ ├── System.c │ │ ├── Target.c │ │ ├── WinMagic.c │ │ ├── XError.c │ │ ├── XResource.c │ │ ├── debug.c │ │ ├── defaults.h │ │ ├── envvar.c │ │ ├── envvar.h │ │ ├── fvwm.ign │ │ ├── fvwmlib.h │ │ ├── fvwmrect.c │ │ ├── fvwmrect.h │ │ ├── fvwmsignal.c │ │ ├── fvwmsignal.h │ │ ├── lang-strings.h │ │ ├── safemalloc.c │ │ ├── safemalloc.h │ │ ├── strings.h │ │ ├── wild.c │ │ └── wild.h │ ├── modules │ │ ├── FvwmAnimate │ │ │ ├── FvwmAnimate.c │ │ │ ├── FvwmAnimate.h │ │ │ └── Nmakefile │ │ ├── FvwmAuto │ │ │ ├── FvwmAuto.c │ │ │ └── Nmakefile │ │ ├── FvwmBacker │ │ │ ├── FvwmBacker.c │ │ │ ├── FvwmBacker.h │ │ │ ├── Nmakefile │ │ │ └── root_bits.c │ │ ├── FvwmBanner │ │ │ ├── FvwmBanner.c │ │ │ ├── Nmakefile │ │ │ └── fvwm-logo-current.xpm │ │ ├── FvwmButtons │ │ │ ├── FvwmButtons.c │ │ │ ├── FvwmButtons.h │ │ │ ├── Nmakefile │ │ │ ├── bparse.h │ │ │ ├── button.c │ │ │ ├── button.h │ │ │ ├── draw.c │ │ │ ├── draw.h │ │ │ ├── icons.c │ │ │ ├── icons.h │ │ │ ├── misc.c │ │ │ ├── misc.h │ │ │ ├── output.c │ │ │ └── parse.c │ │ ├── FvwmCommand │ │ │ ├── FvwmCommand.c │ │ │ ├── FvwmCommand.h │ │ │ ├── FvwmCommandS.c │ │ │ ├── Nmakefile │ │ │ └── fifos.c │ │ ├── FvwmConsole │ │ │ ├── FvwmConsole.c │ │ │ ├── FvwmConsole.h │ │ │ ├── FvwmConsoleC.c │ │ │ ├── Nmakefile │ │ │ └── getline.c │ │ ├── FvwmCpp │ │ │ ├── FvwmCpp.c │ │ │ ├── FvwmCpp.h │ │ │ └── Nmakefile │ │ ├── FvwmDebug │ │ │ ├── FvwmDebug.c │ │ │ ├── FvwmDebug.h │ │ │ └── Nmakefile │ │ ├── FvwmDragWell │ │ │ ├── Nmakefile │ │ │ ├── commonStuff.h │ │ │ ├── cursorStuff.c │ │ │ ├── cursorStuff.h │ │ │ ├── dragSource.h │ │ │ ├── fvwmDragWell.c │ │ │ ├── fvwmDragWell.h │ │ │ └── xdndDragSource.c │ │ ├── FvwmEvent │ │ │ ├── FvwmEvent.c │ │ │ └── Nmakefile │ │ ├── FvwmForm │ │ │ ├── FvwmForm.c │ │ │ ├── FvwmForm.h │ │ │ ├── Nmakefile │ │ │ ├── ParseCommand.c │ │ │ └── ReadXServer.c │ │ ├── FvwmGtk │ │ │ ├── FvwmGtk.c │ │ │ ├── Nmakefile │ │ │ ├── dialog.c │ │ │ ├── expand.c │ │ │ ├── gtkpixmapmenuitem.c │ │ │ ├── menu.c │ │ │ └── windowlist.c │ │ ├── FvwmIconBox │ │ │ ├── FvwmIconBox.c │ │ │ ├── FvwmIconBox.h │ │ │ ├── Nmakefile │ │ │ └── icons.c │ │ ├── FvwmIconMan │ │ │ ├── FvwmIconMan.c │ │ │ ├── FvwmIconMan.h │ │ │ ├── Nmakefile │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── debuglevels.h │ │ │ ├── functions.c │ │ │ ├── fvwm.c │ │ │ ├── globals.c │ │ │ ├── readconfig.c │ │ │ ├── readconfig.h │ │ │ ├── winlist.c │ │ │ ├── x.c │ │ │ ├── x.h │ │ │ ├── xmanager.c │ │ │ └── xmanager.h │ │ ├── FvwmIdent │ │ │ ├── FvwmIdent.c │ │ │ ├── FvwmIdent.h │ │ │ └── Nmakefile │ │ ├── FvwmM4 │ │ │ ├── FvwmM4.c │ │ │ ├── FvwmM4.h │ │ │ └── Nmakefile │ │ ├── FvwmPager │ │ │ ├── FvwmPager.c │ │ │ ├── FvwmPager.h │ │ │ ├── Nmakefile │ │ │ └── x_pager.c │ │ ├── FvwmRearrange │ │ │ ├── FvwmRearrange.c │ │ │ └── Nmakefile │ │ ├── FvwmSave │ │ │ ├── FvwmSave.c │ │ │ ├── FvwmSave.h │ │ │ └── Nmakefile │ │ ├── FvwmSaveDesk │ │ │ ├── FvwmSaveDesk.c │ │ │ ├── FvwmSaveDesk.h │ │ │ └── Nmakefile │ │ ├── FvwmScript │ │ │ ├── FvwmScript.c │ │ │ ├── Instructions.c │ │ │ ├── Nmakefile │ │ │ ├── Widgets │ │ │ │ ├── CheckBox.c │ │ │ │ ├── HDipstick.c │ │ │ │ ├── HScrollBar.c │ │ │ │ ├── ItemDraw.c │ │ │ │ ├── List.c │ │ │ │ ├── Menu.c │ │ │ │ ├── MiniScroll.c │ │ │ │ ├── PopupMenu.c │ │ │ │ ├── PushButton.c │ │ │ │ ├── RadioButton.c │ │ │ │ ├── Rectangle.c │ │ │ │ ├── Swallow.c │ │ │ │ ├── TextField.c │ │ │ │ ├── Tools.c │ │ │ │ ├── Tools.h │ │ │ │ ├── VDipstick.c │ │ │ │ ├── VScrollBar.c │ │ │ │ └── Widget.c │ │ │ ├── libyywrap.c │ │ │ ├── scanner.c │ │ │ ├── script.c │ │ │ └── types.h │ │ ├── FvwmScroll │ │ │ ├── FvwmScroll.c │ │ │ ├── FvwmScroll.h │ │ │ ├── GrabWindow.c │ │ │ └── Nmakefile │ │ ├── FvwmTaskBar │ │ │ ├── ButtonArray.c │ │ │ ├── ButtonArray.h │ │ │ ├── Colors.c │ │ │ ├── Colors.h │ │ │ ├── FvwmTaskBar.c │ │ │ ├── FvwmTaskBar.h │ │ │ ├── Goodies.c │ │ │ ├── Goodies.h │ │ │ ├── List.c │ │ │ ├── List.h │ │ │ ├── Mallocs.c │ │ │ ├── Mallocs.h │ │ │ ├── Nmakefile │ │ │ ├── Start.c │ │ │ ├── Start.h │ │ │ └── minimail.xbm │ │ ├── FvwmTheme │ │ │ ├── FvwmTheme.c │ │ │ └── Nmakefile │ │ ├── FvwmWharf │ │ │ ├── FvwmWharf.c │ │ │ ├── Nmakefile │ │ │ ├── OffiX │ │ │ │ ├── DragAndDrop.h │ │ │ │ └── DragAndDropTypes.h │ │ │ ├── Wharf.h │ │ │ ├── icons.c │ │ │ ├── stepgfx.c │ │ │ └── stepgfx.h │ │ ├── FvwmWinList │ │ │ ├── ButtonArray.c │ │ │ ├── ButtonArray.h │ │ │ ├── FvwmWinList.c │ │ │ ├── FvwmWinList.h │ │ │ ├── List.c │ │ │ ├── List.h │ │ │ ├── Mallocs.c │ │ │ ├── Mallocs.h │ │ │ └── Nmakefile │ │ └── Nmakefile │ └── utils │ │ ├── Nmakefile │ │ ├── fvwm-config.1 │ │ ├── fvwm-config.in │ │ ├── fvwm-menu-desktop.1 │ │ ├── fvwm-menu-desktop.in │ │ ├── fvwm-menu-directory.1 │ │ ├── fvwm-menu-directory.in │ │ ├── fvwm-menu-headlines.1 │ │ ├── fvwm-menu-headlines.in │ │ ├── fvwm-menu-xlock.1 │ │ ├── fvwm-menu-xlock.in │ │ ├── fvwm24_convert.1 │ │ ├── fvwm24_convert.in │ │ ├── xpmroot.1 │ │ └── xpmroot.c ├── gmake │ ├── COPYING │ ├── ChangeLog │ ├── NEWS │ ├── Nmakefile │ ├── README │ ├── README.Amiga │ ├── README.DOS │ ├── README.OS2 │ ├── README.W32 │ ├── README.customs │ ├── README.mam │ ├── RELEASE │ ├── alloca.c │ ├── amiga.c │ ├── amiga.h │ ├── ar.c │ ├── arscan.c │ ├── commands.c │ ├── commands.h │ ├── config.h.in │ ├── config.iffe │ ├── configure │ ├── debug.h │ ├── default.c │ ├── dep.h │ ├── dir.c │ ├── expand.c │ ├── file.c │ ├── filedef.h │ ├── function.c │ ├── getloadavg.c │ ├── getopt.c │ ├── getopt.h │ ├── getopt1.c │ ├── gettext.h │ ├── glob │ │ ├── fnmatch.c │ │ ├── fnmatch.h │ │ ├── glob.c │ │ └── glob.h │ ├── gmake.1 │ ├── hash.c │ ├── hash.h │ ├── implicit.c │ ├── job.c │ ├── job.h │ ├── local.c │ ├── main.c │ ├── make.h │ ├── misc.c │ ├── read.c │ ├── remake.c │ ├── remote-cstms.c │ ├── remote-stub.c │ ├── rule.c │ ├── rule.h │ ├── signame.c │ ├── tests │ │ ├── 1.inc │ │ ├── 2.inc │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── GNUmakefile │ │ ├── NEWS │ │ ├── README │ │ ├── makefile │ │ ├── mkshadow │ │ ├── run_make_tests │ │ ├── run_make_tests.pl │ │ ├── scripts │ │ │ ├── features │ │ │ │ ├── comments │ │ │ │ ├── conditionals │ │ │ │ ├── default_names │ │ │ │ ├── double_colon │ │ │ │ ├── echoing │ │ │ │ ├── errors │ │ │ │ ├── escape │ │ │ │ ├── export │ │ │ │ ├── include │ │ │ │ ├── mult_rules │ │ │ │ ├── mult_targets │ │ │ │ ├── order_only │ │ │ │ ├── override │ │ │ │ ├── parallelism │ │ │ │ ├── patspecific_vars │ │ │ │ ├── quoting │ │ │ │ ├── recursion │ │ │ │ ├── reinvoke │ │ │ │ ├── statipattrules │ │ │ │ ├── targetvars │ │ │ │ ├── varnesting │ │ │ │ ├── vpath │ │ │ │ ├── vpath2 │ │ │ │ ├── vpathgpath │ │ │ │ └── vpathplus │ │ │ ├── functions │ │ │ │ ├── addprefix │ │ │ │ ├── addsuffix │ │ │ │ ├── basename │ │ │ │ ├── call │ │ │ │ ├── dir │ │ │ │ ├── error │ │ │ │ ├── eval │ │ │ │ ├── filter-out │ │ │ │ ├── findstring │ │ │ │ ├── foreach │ │ │ │ ├── if │ │ │ │ ├── join │ │ │ │ ├── notdir │ │ │ │ ├── origin │ │ │ │ ├── sort │ │ │ │ ├── strip │ │ │ │ ├── substitution │ │ │ │ ├── suffix │ │ │ │ ├── value │ │ │ │ ├── warning │ │ │ │ ├── wildcard │ │ │ │ └── word │ │ │ ├── misc │ │ │ │ ├── general1 │ │ │ │ ├── general2 │ │ │ │ ├── general3 │ │ │ │ └── general4 │ │ │ ├── options │ │ │ │ ├── dash-B │ │ │ │ ├── dash-C │ │ │ │ ├── dash-I │ │ │ │ ├── dash-e │ │ │ │ ├── dash-f │ │ │ │ ├── dash-k │ │ │ │ ├── dash-l │ │ │ │ ├── dash-n │ │ │ │ ├── dash-q │ │ │ │ ├── dash-t │ │ │ │ └── general │ │ │ ├── targets │ │ │ │ ├── DEFAULT │ │ │ │ ├── FORCE │ │ │ │ ├── INTERMEDIATE │ │ │ │ ├── PHONY │ │ │ │ ├── SECONDARY │ │ │ │ ├── SILENT │ │ │ │ └── clean │ │ │ ├── test_template │ │ │ └── variables │ │ │ │ ├── CURDIR │ │ │ │ ├── MAKE │ │ │ │ ├── MAKECMDGOALS │ │ │ │ ├── MAKEFILES │ │ │ │ ├── MAKEFILE_LIST │ │ │ │ ├── MAKELEVEL │ │ │ │ ├── automatic │ │ │ │ ├── flavors │ │ │ │ └── special │ │ └── test_driver.pl │ ├── variable.c │ ├── variable.h │ ├── version.c │ ├── vmsdir.h │ ├── vmsfunctions.c │ ├── vmsify.c │ └── vpath.c ├── groff │ ├── BUG-REPORT │ ├── COPYING │ ├── ChangeLog │ ├── ChangeLog.115 │ ├── ChangeLog.116 │ ├── ChangeLog.117 │ ├── ChangeLog.118 │ ├── FDL │ ├── FONT.mk │ ├── INSTALL │ ├── INSTALL.gen │ ├── LICENSES │ ├── MANIFEST │ ├── MORE.STUFF │ ├── Makefile │ ├── Makefile.ccpg │ ├── Makefile.comm │ ├── Makefile.cpg │ ├── Makefile.dev │ ├── Makefile.in │ ├── Makefile.init │ ├── Makefile.man │ ├── Makefile.old │ ├── Makefile.sub │ ├── NEWS │ ├── Nmakefile │ ├── PROBLEMS │ ├── PROJECTS │ ├── README │ ├── README.MinGW │ ├── REVISION │ ├── TODO │ ├── VERSION │ ├── YACCPLUSPLUS.mk │ ├── aclocal.m4 │ ├── arch │ │ ├── djgpp │ │ │ ├── README │ │ │ ├── config.bat │ │ │ ├── config.sed │ │ │ ├── config.site │ │ │ └── t-groff.bat │ │ └── misc │ │ │ ├── Makefile.sub │ │ │ ├── shdeps.sed │ │ │ └── shdeps.sh │ ├── configure │ ├── configure.ac │ ├── contrib │ │ ├── chem │ │ │ ├── ChangeLog │ │ │ ├── Makefile.sub │ │ │ ├── README.txt │ │ │ ├── chem.man │ │ │ ├── chem.pic │ │ │ ├── chem.pl │ │ │ └── examples │ │ │ │ ├── 122 │ │ │ │ ├── README │ │ │ │ ├── ch2a_ethyl.chem │ │ │ │ ├── ch2b_benzene.chem │ │ │ │ ├── ch2c_benzene_right.chem │ │ │ │ ├── ch4a_stick.chem │ │ │ │ ├── ch4b_methyl_acetate.chem │ │ │ │ ├── ch4c_colon.chem │ │ │ │ ├── ch4d_HCl.H2O.chem │ │ │ │ ├── ch4e_CaSO4.2H2O.chem │ │ │ │ ├── ch4f_C.chem │ │ │ │ ├── ch4g_BP.chem │ │ │ │ ├── ch4h_methacrylate.chem │ │ │ │ ├── ch4i_cyclo.chem │ │ │ │ ├── ch4j_ring4.chem │ │ │ │ ├── ch4k_ring3.chem │ │ │ │ ├── ch4l_vertex.chem │ │ │ │ ├── ch4m_double.chem │ │ │ │ ├── ch4n_triple.chem │ │ │ │ ├── ch4o_aromatic.chem │ │ │ │ ├── ch4p_cholestanol.chem │ │ │ │ ├── ch4q_rings.chem │ │ │ │ ├── ch4r_spiro.chem │ │ │ │ ├── ch4s_heteroatoms.chem │ │ │ │ ├── ch4t_polycyclic.chem │ │ │ │ ├── ch4u_nicotine.chem │ │ │ │ ├── ch4v_histidine.chem │ │ │ │ ├── ch4w_lsd.chem │ │ │ │ ├── ch4x_anisole.chem │ │ │ │ ├── ch4y_reserpine.chem │ │ │ │ ├── ch4z1_eqn_glutamic.chem │ │ │ │ ├── ch4z2_text.chem │ │ │ │ ├── ch5a_size.chem │ │ │ │ ├── ch6a_pic.chem │ │ │ │ ├── ch6b_dna.chem │ │ │ │ ├── chAa_polymer.chem │ │ │ │ ├── chAb_vinyl_chloro.chem │ │ │ │ ├── chAc_morphine.chem │ │ │ │ ├── chAd_chlorophyll.chem │ │ │ │ ├── chAe_chair.chem │ │ │ │ ├── chAf_arrow.chem │ │ │ │ ├── chAg_circle.chem │ │ │ │ ├── chAh_brackets.chem │ │ │ │ ├── chAi_poly_vinyl_chloride.chem │ │ │ │ ├── chBa_jump.chem │ │ │ │ ├── chBb_bonds.chem │ │ │ │ └── chBc_rings.chem │ │ │ │ ├── README.txt │ │ │ │ ├── atp.chem │ │ │ │ ├── cholesterin.chem │ │ │ │ ├── ethamivan.chem │ │ │ │ ├── lsd.chem │ │ │ │ ├── morphine.chem │ │ │ │ ├── penicillin.chem │ │ │ │ └── reserpine.chem │ │ ├── eqn2graph │ │ │ ├── Makefile.sub │ │ │ ├── eqn2graph.man │ │ │ └── eqn2graph.sh │ │ ├── gdiffmk │ │ │ ├── ChangeLog │ │ │ ├── Makefile.sub │ │ │ ├── README │ │ │ ├── gdiffmk.man │ │ │ ├── gdiffmk.sh │ │ │ └── tests │ │ │ │ ├── baseline │ │ │ │ ├── baseline.10 │ │ │ │ ├── baseline.6 │ │ │ │ ├── baseline.7 │ │ │ │ ├── baseline.8 │ │ │ │ ├── baseline.9 │ │ │ │ ├── file1 │ │ │ │ ├── file2 │ │ │ │ ├── runtests │ │ │ │ └── runtests.in │ │ ├── grap2graph │ │ │ ├── Makefile.sub │ │ │ ├── grap2graph.man │ │ │ └── grap2graph.sh │ │ ├── groffer │ │ │ ├── ChangeLog │ │ │ ├── Makefile.sub │ │ │ ├── README │ │ │ ├── perl │ │ │ │ ├── README_PERL │ │ │ │ ├── func.pl │ │ │ │ ├── groffer.man │ │ │ │ ├── groffer.pl │ │ │ │ ├── man.pl │ │ │ │ ├── perl_test.pl │ │ │ │ ├── roff2.pl │ │ │ │ └── split_env.sh │ │ │ ├── roff2.man │ │ │ ├── shell │ │ │ │ ├── ChangeLog.0 │ │ │ │ ├── README_SH │ │ │ │ ├── groffer.man │ │ │ │ ├── groffer.sh │ │ │ │ ├── groffer2.sh │ │ │ │ └── roff2.sh │ │ │ └── version.sh │ │ ├── hdtbl │ │ │ ├── ChangeLog │ │ │ ├── Makefile.sub │ │ │ ├── README │ │ │ ├── examples │ │ │ │ ├── chess_board.roff │ │ │ │ ├── col_rowspan_colors.roff │ │ │ │ ├── color_boxes.roff │ │ │ │ ├── color_nested_tables.roff │ │ │ │ ├── color_table_cells.roff │ │ │ │ ├── color_transitions.roff │ │ │ │ ├── fonts_n.in │ │ │ │ ├── fonts_x.in │ │ │ │ ├── mixed_pickles.roff │ │ │ │ ├── rainbow.roff │ │ │ │ └── short_reference.roff │ │ │ ├── groff_hdtbl.man │ │ │ ├── hdmisc.tmac │ │ │ └── hdtbl.tmac │ │ ├── mm │ │ │ ├── ChangeLog │ │ │ ├── Makefile.sim │ │ │ ├── Makefile.sub │ │ │ ├── NOTES │ │ │ ├── README │ │ │ ├── examples │ │ │ │ ├── APP │ │ │ │ ├── B1B2 │ │ │ │ ├── COVER │ │ │ │ ├── IND │ │ │ │ ├── LT │ │ │ │ ├── LT.se │ │ │ │ ├── ML │ │ │ │ ├── MOVE │ │ │ │ ├── MUL │ │ │ │ ├── NCOL │ │ │ │ ├── ND │ │ │ │ ├── README │ │ │ │ ├── References │ │ │ │ └── SETR │ │ │ ├── groff_mm.man │ │ │ ├── groff_mmse.man │ │ │ ├── m.tmac │ │ │ ├── mm.tmac │ │ │ ├── mm │ │ │ │ ├── 0.MT │ │ │ │ ├── 4.MT │ │ │ │ ├── 5.MT │ │ │ │ ├── ms.cov │ │ │ │ └── se_ms.cov │ │ │ ├── mmroff.man │ │ │ ├── mmroff.pl │ │ │ ├── mmse.tmac │ │ │ └── mse.tmac │ │ ├── mom │ │ │ ├── BUGS │ │ │ ├── ChangeLog │ │ │ ├── Makefile.sub │ │ │ ├── NEWS │ │ │ ├── TODO │ │ │ ├── copyright │ │ │ ├── examples │ │ │ │ ├── README.txt │ │ │ │ ├── elvis_syntax │ │ │ │ ├── elvis_syntax.new │ │ │ │ ├── letter.mom │ │ │ │ ├── mom.vim │ │ │ │ ├── penguin.ps │ │ │ │ ├── sample_docs.mom │ │ │ │ └── typesetting.mom │ │ │ ├── groff_mom.man │ │ │ ├── mom.tmac │ │ │ ├── momdoc │ │ │ │ ├── appendices.html │ │ │ │ ├── color.html │ │ │ │ ├── cover.html │ │ │ │ ├── definitions.html │ │ │ │ ├── docelement.html │ │ │ │ ├── docprocessing.html │ │ │ │ ├── goodies.html │ │ │ │ ├── graphical.html │ │ │ │ ├── headfootpage.html │ │ │ │ ├── inlines.html │ │ │ │ ├── intro.html │ │ │ │ ├── letters.html │ │ │ │ ├── macrolist.html │ │ │ │ ├── rectoverso.html │ │ │ │ ├── refer.html │ │ │ │ ├── reserved.html │ │ │ │ ├── toc.html │ │ │ │ ├── typemacdoc.html │ │ │ │ ├── typesetting.html │ │ │ │ └── using.html │ │ │ └── om.tmac │ │ ├── pdfmark │ │ │ ├── ChangeLog │ │ │ ├── Makefile.sub │ │ │ ├── PROBLEMS │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── cover.ms │ │ │ ├── pdfmark.ms │ │ │ ├── pdfmark.tmac │ │ │ ├── pdfroff.man │ │ │ ├── pdfroff.sh │ │ │ └── spdf.tmac │ │ └── pic2graph │ │ │ ├── Makefile.sub │ │ │ ├── pic2graph.man │ │ │ └── pic2graph.sh │ ├── doc │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefile.sub │ │ ├── fdl.texi │ │ ├── fixinfo.sh │ │ ├── gnu.xpm │ │ ├── grnexmpl.g │ │ ├── grnexmpl.me │ │ ├── groff.css │ │ ├── groff.texinfo │ │ ├── meintro.me │ │ ├── meref.me │ │ ├── pic.ms │ │ ├── texinfo.tex │ │ └── webpage.ms │ ├── font │ │ ├── devX100-12 │ │ │ ├── CB │ │ │ ├── CBI │ │ │ ├── CI │ │ │ ├── CR │ │ │ ├── DESC │ │ │ ├── HB │ │ │ ├── HBI │ │ │ ├── HI │ │ │ ├── HR │ │ │ ├── Makefile.sub │ │ │ ├── NB │ │ │ ├── NBI │ │ │ ├── NI │ │ │ ├── NR │ │ │ ├── S │ │ │ ├── TB │ │ │ ├── TBI │ │ │ ├── TI │ │ │ └── TR │ │ ├── devX100 │ │ │ ├── CB │ │ │ ├── CBI │ │ │ ├── CI │ │ │ ├── CR │ │ │ ├── DESC │ │ │ ├── HB │ │ │ ├── HBI │ │ │ ├── HI │ │ │ ├── HR │ │ │ ├── Makefile.sub │ │ │ ├── NB │ │ │ ├── NBI │ │ │ ├── NI │ │ │ ├── NR │ │ │ ├── S │ │ │ ├── TB │ │ │ ├── TBI │ │ │ ├── TI │ │ │ └── TR │ │ ├── devX75-12 │ │ │ ├── CB │ │ │ ├── CBI │ │ │ ├── CI │ │ │ ├── CR │ │ │ ├── DESC │ │ │ ├── HB │ │ │ ├── HBI │ │ │ ├── HI │ │ │ ├── HR │ │ │ ├── Makefile.sub │ │ │ ├── NB │ │ │ ├── NBI │ │ │ ├── NI │ │ │ ├── NR │ │ │ ├── S │ │ │ ├── TB │ │ │ ├── TBI │ │ │ ├── TI │ │ │ └── TR │ │ ├── devX75 │ │ │ ├── CB │ │ │ ├── CBI │ │ │ ├── CI │ │ │ ├── CR │ │ │ ├── DESC │ │ │ ├── HB │ │ │ ├── HBI │ │ │ ├── HI │ │ │ ├── HR │ │ │ ├── Makefile.sub │ │ │ ├── NB │ │ │ ├── NBI │ │ │ ├── NI │ │ │ ├── NR │ │ │ ├── S │ │ │ ├── TB │ │ │ ├── TBI │ │ │ ├── TI │ │ │ └── TR │ │ ├── devascii │ │ │ ├── B │ │ │ ├── BI │ │ │ ├── DESC │ │ │ ├── DESC.proto │ │ │ ├── I │ │ │ ├── Makefile.sub │ │ │ ├── R │ │ │ └── R.proto │ │ ├── devcp1047 │ │ │ ├── DESC.proto │ │ │ ├── Makefile.sub │ │ │ └── R.proto │ │ ├── devdvi │ │ │ ├── B │ │ │ ├── BI │ │ │ ├── CW │ │ │ ├── CWEC │ │ │ ├── CWI │ │ │ ├── CWIEC │ │ │ ├── CWITC │ │ │ ├── CWTC │ │ │ ├── DESC.in │ │ │ ├── EX │ │ │ ├── H │ │ │ ├── HB │ │ │ ├── HBEC │ │ │ ├── HBI │ │ │ ├── HBIEC │ │ │ ├── HBITC │ │ │ ├── HBTC │ │ │ ├── HI │ │ │ ├── HIEC │ │ │ ├── HITC │ │ │ ├── HR │ │ │ ├── HREC │ │ │ ├── HRTC │ │ │ ├── I │ │ │ ├── MI │ │ │ ├── Makefile.sub │ │ │ ├── R │ │ │ ├── S │ │ │ ├── SA │ │ │ ├── SB │ │ │ ├── SC │ │ │ ├── TB │ │ │ ├── TBEC │ │ │ ├── TBI │ │ │ ├── TBIEC │ │ │ ├── TBITC │ │ │ ├── TBTC │ │ │ ├── TI │ │ │ ├── TIEC │ │ │ ├── TITC │ │ │ ├── TR │ │ │ ├── TREC │ │ │ ├── TRTC │ │ │ └── generate │ │ │ │ ├── CompileFonts │ │ │ │ ├── Makefile │ │ │ │ ├── ec.map │ │ │ │ ├── msam.map │ │ │ │ ├── msbm.map │ │ │ │ ├── tc.map │ │ │ │ ├── texb.map │ │ │ │ ├── texex.map │ │ │ │ ├── texi.map │ │ │ │ ├── texmi.map │ │ │ │ ├── texr.map │ │ │ │ ├── texsy.map │ │ │ │ ├── textex.map │ │ │ │ └── textt.map │ │ ├── devhtml │ │ │ ├── DESC.proto │ │ │ ├── Makefile.sub │ │ │ ├── R.in │ │ │ └── R.proto │ │ ├── devlatin1 │ │ │ ├── DESC.proto │ │ │ ├── Makefile.sub │ │ │ └── R.proto │ │ ├── devlbp │ │ │ ├── CB │ │ │ ├── CI │ │ │ ├── CR │ │ │ ├── DESC.in │ │ │ ├── EB │ │ │ ├── EI │ │ │ ├── ER │ │ │ ├── HB │ │ │ ├── HBI │ │ │ ├── HI │ │ │ ├── HNB │ │ │ ├── HNBI │ │ │ ├── HNI │ │ │ ├── HNR │ │ │ ├── HR │ │ │ ├── Makefile.sub │ │ │ ├── TB │ │ │ ├── TBI │ │ │ ├── TI │ │ │ └── TR │ │ ├── devlj4 │ │ │ ├── AB │ │ │ ├── ABI │ │ │ ├── AI │ │ │ ├── ALBB │ │ │ ├── ALBR │ │ │ ├── AOB │ │ │ ├── AOI │ │ │ ├── AOR │ │ │ ├── AR │ │ │ ├── CB │ │ │ ├── CBI │ │ │ ├── CI │ │ │ ├── CLARENDON │ │ │ ├── CORONET │ │ │ ├── CR │ │ │ ├── DESC.in │ │ │ ├── GB │ │ │ ├── GBI │ │ │ ├── GI │ │ │ ├── GR │ │ │ ├── LGB │ │ │ ├── LGI │ │ │ ├── LGR │ │ │ ├── MARIGOLD │ │ │ ├── Makefile.sub │ │ │ ├── OB │ │ │ ├── OBI │ │ │ ├── OI │ │ │ ├── OR │ │ │ ├── S │ │ │ ├── SYMBOL │ │ │ ├── TB │ │ │ ├── TBI │ │ │ ├── TI │ │ │ ├── TNRB │ │ │ ├── TNRBI │ │ │ ├── TNRI │ │ │ ├── TNRR │ │ │ ├── TR │ │ │ ├── UB │ │ │ ├── UBI │ │ │ ├── UCB │ │ │ ├── UCBI │ │ │ ├── UCI │ │ │ ├── UCR │ │ │ ├── UI │ │ │ ├── UR │ │ │ ├── WINGDINGS │ │ │ └── generate │ │ │ │ ├── Makefile │ │ │ │ ├── autofont │ │ │ │ ├── 9nb00051.tfm │ │ │ │ ├── 9nb00052.tfm │ │ │ │ ├── 9nb00053.tfm │ │ │ │ ├── 9nb00054.tfm │ │ │ │ ├── 9nb00055.tfm │ │ │ │ ├── 9nb00056.tfm │ │ │ │ ├── 9nb00057.tfm │ │ │ │ ├── 9nb00058.tfm │ │ │ │ ├── 9nb00059.tfm │ │ │ │ ├── 9nb00060.tfm │ │ │ │ ├── 9nb00061.tfm │ │ │ │ ├── 9nb00062.tfm │ │ │ │ ├── 9nb00063.tfm │ │ │ │ ├── 9nb00064.tfm │ │ │ │ ├── 9nb00065.tfm │ │ │ │ ├── 9nb00066.tfm │ │ │ │ ├── 9nb00067.tfm │ │ │ │ ├── 9nb00068.tfm │ │ │ │ ├── 9nb00069.tfm │ │ │ │ ├── 9nb00070.tfm │ │ │ │ ├── 9nb00071.tfm │ │ │ │ ├── 9nb00072.tfm │ │ │ │ ├── 9nb00073.tfm │ │ │ │ ├── 9nb00074.tfm │ │ │ │ ├── 9nb00075.tfm │ │ │ │ ├── 9nb00076.tfm │ │ │ │ ├── 9nb00077.tfm │ │ │ │ ├── 9nb00078.tfm │ │ │ │ ├── 9nb00079.tfm │ │ │ │ ├── 9nb00080.tfm │ │ │ │ ├── 9nb00081.tfm │ │ │ │ ├── 9nb00082.tfm │ │ │ │ ├── 9nb00083.tfm │ │ │ │ ├── 9nb00084.tfm │ │ │ │ ├── 9nb00085.tfm │ │ │ │ ├── 9nb00086.tfm │ │ │ │ ├── 9nb00087.tfm │ │ │ │ ├── 9nb00088.tfm │ │ │ │ ├── 9nb00089.tfm │ │ │ │ ├── 9nb00090.tfm │ │ │ │ ├── 9nb00091.tfm │ │ │ │ ├── 9nb00092.tfm │ │ │ │ ├── 9nb00093.tfm │ │ │ │ ├── 9nb00094.tfm │ │ │ │ ├── 9nb00095.tfm │ │ │ │ ├── 9nb28703.tfm │ │ │ │ ├── README.lj4p │ │ │ │ ├── README.lj4x │ │ │ │ ├── arlb000s.tfm │ │ │ │ ├── arli000s.tfm │ │ │ │ ├── arlj000s.tfm │ │ │ │ ├── arlr000s.tfm │ │ │ │ ├── tmnb000s.tfm │ │ │ │ ├── tmni000s.tfm │ │ │ │ ├── tmnj000s.tfm │ │ │ │ └── tmnr000s.tfm │ │ │ │ ├── special.awk │ │ │ │ ├── special.map │ │ │ │ ├── symbol.map │ │ │ │ ├── text.map │ │ │ │ └── wingdings.map │ │ ├── devps │ │ │ ├── AB │ │ │ ├── ABI │ │ │ ├── AI │ │ │ ├── AR │ │ │ ├── BMB │ │ │ ├── BMBI │ │ │ ├── BMI │ │ │ ├── BMR │ │ │ ├── CB │ │ │ ├── CBI │ │ │ ├── CI │ │ │ ├── CR │ │ │ ├── DESC │ │ │ ├── DESC.in │ │ │ ├── EURO │ │ │ ├── HB │ │ │ ├── HBI │ │ │ ├── HI │ │ │ ├── HNB │ │ │ ├── HNBI │ │ │ ├── HNI │ │ │ ├── HNR │ │ │ ├── HR │ │ │ ├── Makefile.sub │ │ │ ├── NB │ │ │ ├── NBI │ │ │ ├── NI │ │ │ ├── NR │ │ │ ├── PB │ │ │ ├── PBI │ │ │ ├── PI │ │ │ ├── PR │ │ │ ├── S │ │ │ ├── SS │ │ │ ├── TB │ │ │ ├── TBI │ │ │ ├── TI │ │ │ ├── TR │ │ │ ├── ZCMI │ │ │ ├── ZD │ │ │ ├── ZDR │ │ │ ├── afm │ │ │ │ ├── AvantGarde-Book.afm │ │ │ │ ├── AvantGarde-BookOblique.afm │ │ │ │ ├── AvantGarde-Demi.afm │ │ │ │ ├── AvantGarde-DemiOblique.afm │ │ │ │ ├── Bookman-Demi.afm │ │ │ │ ├── Bookman-DemiItalic.afm │ │ │ │ ├── Bookman-Light.afm │ │ │ │ ├── Bookman-LightItalic.afm │ │ │ │ ├── Courier-Bold.afm │ │ │ │ ├── Courier-BoldOblique.afm │ │ │ │ ├── Courier-Oblique.afm │ │ │ │ ├── Courier.afm │ │ │ │ ├── Helvetica-Bold.afm │ │ │ │ ├── Helvetica-BoldOblique.afm │ │ │ │ ├── Helvetica-Narrow-Bold.afm │ │ │ │ ├── Helvetica-Narrow-BoldOblique.afm │ │ │ │ ├── Helvetica-Narrow-Oblique.afm │ │ │ │ ├── Helvetica-Narrow.afm │ │ │ │ ├── Helvetica-Oblique.afm │ │ │ │ ├── Helvetica.afm │ │ │ │ ├── NewCenturySchlbk-Bold.afm │ │ │ │ ├── NewCenturySchlbk-BoldItalic.afm │ │ │ │ ├── NewCenturySchlbk-Italic.afm │ │ │ │ ├── NewCenturySchlbk-Roman.afm │ │ │ │ ├── Palatino-Bold.afm │ │ │ │ ├── Palatino-BoldItalic.afm │ │ │ │ ├── Palatino-Italic.afm │ │ │ │ ├── Palatino-Roman.afm │ │ │ │ ├── Symbol.afm │ │ │ │ ├── Times-Bold.afm │ │ │ │ ├── Times-BoldItalic.afm │ │ │ │ ├── Times-Italic.afm │ │ │ │ ├── Times-Roman.afm │ │ │ │ ├── ZapfChancery-MediumItalic.afm │ │ │ │ ├── ZapfDingbats.afm │ │ │ │ ├── afm.dat │ │ │ │ └── afm.map │ │ │ ├── download │ │ │ ├── freeeuro.afm │ │ │ ├── freeeuro.pfa │ │ │ ├── generate │ │ │ │ ├── Makefile │ │ │ │ ├── afmname │ │ │ │ ├── dingbats.map │ │ │ │ ├── dingbats.rmap │ │ │ │ ├── freeeuro.sfd │ │ │ │ ├── lgreekmap │ │ │ │ ├── make-zapfdr │ │ │ │ ├── sfdtopfa.pe │ │ │ │ ├── symbol.sed │ │ │ │ ├── symbolchars │ │ │ │ ├── symbolsl.afm │ │ │ │ ├── symbolsl.awk │ │ │ │ ├── textmap │ │ │ │ └── zapfdr.sed │ │ │ ├── old │ │ │ │ ├── CB │ │ │ │ ├── CBI │ │ │ │ ├── CI │ │ │ │ ├── CR │ │ │ │ ├── HB │ │ │ │ ├── HBI │ │ │ │ ├── HI │ │ │ │ ├── HNB │ │ │ │ ├── HNBI │ │ │ │ ├── HNI │ │ │ │ ├── HNR │ │ │ │ ├── HR │ │ │ │ ├── NB │ │ │ │ ├── NBI │ │ │ │ ├── NI │ │ │ │ ├── NR │ │ │ │ ├── PB │ │ │ │ ├── PBI │ │ │ │ ├── PI │ │ │ │ ├── PR │ │ │ │ ├── S │ │ │ │ ├── SS │ │ │ │ ├── TB │ │ │ │ ├── TBI │ │ │ │ ├── TI │ │ │ │ ├── TR │ │ │ │ ├── symbol.afm │ │ │ │ ├── symbolsl.afm │ │ │ │ ├── zapfdr.afm │ │ │ │ └── zapfdr.ps │ │ │ ├── prologue │ │ │ ├── psstrip.sed │ │ │ ├── symbol.afm │ │ │ ├── symbolmap │ │ │ ├── symbolsl.ps │ │ │ ├── text.enc │ │ │ ├── zapfdr.afm │ │ │ └── zapfdr.ps │ │ ├── devutf8 │ │ │ ├── DESC.proto │ │ │ ├── Makefile.sub │ │ │ ├── NOTES │ │ │ ├── R.in │ │ │ └── R.proto │ │ └── make-Rproto │ ├── gendef.sh │ ├── install-sh │ ├── m4 │ │ ├── codeset.m4 │ │ ├── glibc21.m4 │ │ ├── groff.m4 │ │ ├── iconv.m4 │ │ ├── lib-ld.m4 │ │ ├── lib-link.m4 │ │ └── lib-prefix.m4 │ ├── man │ │ ├── Makefile.sub │ │ ├── ditroff.man │ │ ├── groff.man │ │ ├── groff_char.man │ │ ├── groff_diff.man │ │ ├── groff_font.man │ │ ├── groff_out.man │ │ ├── groff_tmac.man │ │ └── roff.man │ ├── mdate.sh │ ├── mkinstalldirs │ ├── src │ │ ├── devices │ │ │ ├── grodvi │ │ │ │ ├── dvi.cpp │ │ │ │ └── grodvi.man │ │ │ ├── grohtml │ │ │ │ ├── html-table.cpp │ │ │ │ ├── html-table.h │ │ │ │ ├── html-text.cpp │ │ │ │ ├── html-text.h │ │ │ │ ├── html.h │ │ │ │ ├── output.cpp │ │ │ │ └── post-html.cpp │ │ │ ├── grolbp │ │ │ │ ├── charset.h │ │ │ │ ├── grolbp.man │ │ │ │ ├── lbp.cpp │ │ │ │ └── lbp.h │ │ │ ├── grolj4 │ │ │ │ ├── grolj4.man │ │ │ │ ├── lj4.cpp │ │ │ │ └── lj4_font.man │ │ │ ├── grops │ │ │ │ ├── grops.man │ │ │ │ ├── ps.cpp │ │ │ │ ├── ps.h │ │ │ │ └── psrm.cpp │ │ │ └── grotty │ │ │ │ └── tty.cpp │ │ ├── include │ │ │ ├── DviChar.h │ │ │ ├── XFontName.h │ │ │ ├── assert.h │ │ │ ├── cmap.h │ │ │ ├── color.h │ │ │ ├── config.h │ │ │ ├── cset.h │ │ │ ├── defs.h │ │ │ ├── device.h │ │ │ ├── driver.h │ │ │ ├── errarg.h │ │ │ ├── error.h │ │ │ ├── font.h │ │ │ ├── geometry.h │ │ │ ├── getopt.h │ │ │ ├── getopt_int.h │ │ │ ├── gettext.h │ │ │ ├── html-strings.h │ │ │ ├── htmlhint.h │ │ │ ├── index.h │ │ │ ├── itable.h │ │ │ ├── lib.h │ │ │ ├── localcharset.h │ │ │ ├── macropath.h │ │ │ ├── nonposix.h │ │ │ ├── paper.h │ │ │ ├── posix.h │ │ │ ├── printer.h │ │ │ ├── ptable.h │ │ │ ├── refid.h │ │ │ ├── relocate.h │ │ │ ├── search.h │ │ │ ├── searchpath.h │ │ │ ├── stringclass.h │ │ │ ├── symbol.h │ │ │ └── unicode.h │ │ ├── libs │ │ │ ├── libbib │ │ │ │ ├── common.cpp │ │ │ │ ├── index.cpp │ │ │ │ ├── linear.cpp │ │ │ │ ├── map.c │ │ │ │ └── search.cpp │ │ │ ├── libdriver │ │ │ │ ├── input.cpp │ │ │ │ └── printer.cpp │ │ │ ├── libgroff │ │ │ │ ├── assert.cpp │ │ │ │ ├── change_lf.cpp │ │ │ │ ├── cmap.cpp │ │ │ │ ├── color.cpp │ │ │ │ ├── cset.cpp │ │ │ │ ├── device.cpp │ │ │ │ ├── errarg.cpp │ │ │ │ ├── error.cpp │ │ │ │ ├── fatal.cpp │ │ │ │ ├── filename.cpp │ │ │ │ ├── fmod.c │ │ │ │ ├── font.cpp │ │ │ │ ├── fontfile.cpp │ │ │ │ ├── geometry.cpp │ │ │ │ ├── getcwd.c │ │ │ │ ├── getopt.c │ │ │ │ ├── getopt1.c │ │ │ │ ├── glyphuni.cpp │ │ │ │ ├── htmlhint.cpp │ │ │ │ ├── hypot.cpp │ │ │ │ ├── iftoa.c │ │ │ │ ├── invalid.cpp │ │ │ │ ├── itoa.c │ │ │ │ ├── lf.cpp │ │ │ │ ├── lineno.cpp │ │ │ │ ├── localcharset.c │ │ │ │ ├── macropath.cpp │ │ │ │ ├── matherr.c │ │ │ │ ├── maxfilename.cpp │ │ │ │ ├── maxpathname.cpp │ │ │ │ ├── mksdir.cpp │ │ │ │ ├── mkstemp.cpp │ │ │ │ ├── nametoindex.cpp │ │ │ │ ├── new.cpp │ │ │ │ ├── paper.cpp │ │ │ │ ├── prime.cpp │ │ │ │ ├── progname.c │ │ │ │ ├── ptable.cpp │ │ │ │ ├── putenv.c │ │ │ │ ├── quotearg.c │ │ │ │ ├── relocatable.h │ │ │ │ ├── relocate.cpp │ │ │ │ ├── relocate.cpp.orig │ │ │ │ ├── searchpath.cpp │ │ │ │ ├── spawnvp.c │ │ │ │ ├── strcasecmp.c │ │ │ │ ├── strerror.c │ │ │ │ ├── string.cpp │ │ │ │ ├── strncasecmp.c │ │ │ │ ├── strsave.cpp │ │ │ │ ├── strtol.c │ │ │ │ ├── symbol.cpp │ │ │ │ ├── tmpfile.cpp │ │ │ │ ├── tmpfile.cpp.orig │ │ │ │ ├── tmpname.cpp │ │ │ │ ├── unicode.cpp │ │ │ │ ├── uniglyph.cpp │ │ │ │ ├── uniuni.cpp │ │ │ │ └── version.cpp │ │ │ └── libxutil │ │ │ │ ├── DviChar.c │ │ │ │ ├── XFontName.c │ │ │ │ └── xmalloc.c │ │ ├── preproc │ │ │ ├── eqn │ │ │ │ ├── box.cpp │ │ │ │ ├── box.h │ │ │ │ ├── delim.cpp │ │ │ │ ├── eqn.h │ │ │ │ ├── eqn.man │ │ │ │ ├── eqn_tab.y │ │ │ │ ├── lex.cpp │ │ │ │ ├── limit.cpp │ │ │ │ ├── list.cpp │ │ │ │ ├── main.cpp │ │ │ │ ├── mark.cpp │ │ │ │ ├── other.cpp │ │ │ │ ├── over.cpp │ │ │ │ ├── pbox.h │ │ │ │ ├── pile.cpp │ │ │ │ ├── script.cpp │ │ │ │ ├── special.cpp │ │ │ │ ├── sqrt.cpp │ │ │ │ └── text.cpp │ │ │ ├── grn │ │ │ │ ├── gprint.h │ │ │ │ ├── grn.man │ │ │ │ ├── hdb.cpp │ │ │ │ ├── hgraph.cpp │ │ │ │ ├── hpoint.cpp │ │ │ │ └── main.cpp │ │ │ ├── html │ │ │ │ ├── pre-html.cpp │ │ │ │ ├── pre-html.h │ │ │ │ ├── pushback.cpp │ │ │ │ └── pushback.h │ │ │ ├── pic │ │ │ │ ├── common.cpp │ │ │ │ ├── common.h │ │ │ │ ├── lex.cpp │ │ │ │ ├── main.cpp │ │ │ │ ├── object.cpp │ │ │ │ ├── object.h │ │ │ │ ├── output.h │ │ │ │ ├── pic.h │ │ │ │ ├── pic_tab.y │ │ │ │ ├── position.h │ │ │ │ ├── tex.cpp │ │ │ │ ├── text.h │ │ │ │ └── troff.cpp │ │ │ ├── preconv │ │ │ │ ├── preconv.cpp │ │ │ │ └── preconv.man │ │ │ ├── refer │ │ │ │ ├── command.cpp │ │ │ │ ├── command.h │ │ │ │ ├── label.y │ │ │ │ ├── ref.cpp │ │ │ │ ├── ref.h │ │ │ │ ├── refer.cpp │ │ │ │ ├── refer.h │ │ │ │ ├── refer.man │ │ │ │ ├── reftok.h │ │ │ │ └── token.cpp │ │ │ ├── soelim │ │ │ │ └── soelim.cpp │ │ │ └── tbl │ │ │ │ ├── main.cpp │ │ │ │ ├── table.cpp │ │ │ │ └── table.h │ │ ├── roff │ │ │ ├── groff │ │ │ │ ├── groff.cpp │ │ │ │ ├── groff.man │ │ │ │ ├── pipeline.c │ │ │ │ └── pipeline.h │ │ │ └── troff │ │ │ │ ├── charinfo.h │ │ │ │ ├── column.cpp │ │ │ │ ├── dictionary.cpp │ │ │ │ ├── dictionary.h │ │ │ │ ├── div.cpp │ │ │ │ ├── div.h │ │ │ │ ├── env.cpp │ │ │ │ ├── env.h │ │ │ │ ├── hvunits.h │ │ │ │ ├── input.cpp │ │ │ │ ├── input.h │ │ │ │ ├── majorminor.cpp │ │ │ │ ├── mtsm.cpp │ │ │ │ ├── mtsm.h │ │ │ │ ├── node.cpp │ │ │ │ ├── node.h │ │ │ │ ├── number.cpp │ │ │ │ ├── reg.cpp │ │ │ │ ├── reg.h │ │ │ │ ├── request.h │ │ │ │ ├── token.h │ │ │ │ └── troff.h │ │ └── utils │ │ │ ├── addftinfo │ │ │ ├── addftinfo.cpp │ │ │ ├── addftinfo.man │ │ │ ├── guess.cpp │ │ │ └── guess.h │ │ │ ├── afmtodit │ │ │ └── afmtodit.pl │ │ │ ├── hpftodit │ │ │ ├── hpftodit.cpp │ │ │ ├── hpftodit.man │ │ │ └── hpuni.cpp │ │ │ ├── indxbib │ │ │ ├── eign │ │ │ ├── indxbib.cpp │ │ │ ├── indxbib.man │ │ │ └── signal.c │ │ │ ├── lkbib │ │ │ ├── lkbib.cpp │ │ │ └── lkbib.man │ │ │ ├── lookbib │ │ │ ├── lookbib.cpp │ │ │ └── lookbib.man │ │ │ ├── pfbtops │ │ │ ├── pfbtops.c │ │ │ └── pfbtops.man │ │ │ ├── tfmtodit │ │ │ ├── tfmtodit.cpp │ │ │ └── tfmtodit.man │ │ │ └── xtotroff │ │ │ ├── xtotroff.c │ │ │ └── xtotroff.man │ ├── stamp-h │ ├── stamp-h.in │ ├── test-groff │ ├── test-groff.in │ └── tmac │ │ ├── 62bit.tmac │ │ ├── LOCALIZATION │ │ ├── Makefile.sub │ │ ├── TESTING-HINTS │ │ ├── TODO │ │ ├── X.tmac │ │ ├── Xps.tmac │ │ ├── a4.tmac │ │ ├── an-ext.tmac │ │ ├── an-old.tmac │ │ ├── an.tmac │ │ ├── andoc.tmac │ │ ├── composite.tmac │ │ ├── cp1047.tmac │ │ ├── de.tmac │ │ ├── den.tmac │ │ ├── devtag.tmac │ │ ├── doc-common │ │ ├── doc-ditroff │ │ ├── doc-nroff │ │ ├── doc-old.tmac │ │ ├── doc-syms │ │ ├── doc.tmac │ │ ├── dvi.tmac │ │ ├── e.tmac │ │ ├── ec.tmac │ │ ├── eqnrc │ │ ├── europs.tmac │ │ ├── fixmacros.sed │ │ ├── fr.tmac │ │ ├── groff_man.man │ │ ├── groff_mdoc.man │ │ ├── groff_me.man │ │ ├── groff_ms.man │ │ ├── groff_trace.man │ │ ├── groff_www.man │ │ ├── html-end.tmac │ │ ├── html.tmac │ │ ├── hyphen.den │ │ ├── hyphen.det │ │ ├── hyphen.fr │ │ ├── hyphen.sv │ │ ├── hyphen.us │ │ ├── hyphenex.det │ │ ├── hyphenex.pl │ │ ├── hyphenex.us │ │ ├── latin1.tmac │ │ ├── latin2.tmac │ │ ├── latin5.tmac │ │ ├── latin9.tmac │ │ ├── lbp.tmac │ │ ├── lj4.tmac │ │ ├── man.local │ │ ├── man.tmac │ │ ├── man.ultrix │ │ ├── mandoc.tmac │ │ ├── mdoc.local │ │ ├── mdoc.tmac │ │ ├── me.tmac │ │ ├── mm │ │ ├── 0.MT │ │ ├── 4.MT │ │ ├── 5.MT │ │ ├── locale │ │ ├── ms.cov │ │ ├── se_locale │ │ └── se_ms.cov │ │ ├── ms.tmac │ │ ├── mwww.tmac │ │ ├── papersize.tmac │ │ ├── pic.tmac │ │ ├── ps.tmac │ │ ├── psatk.tmac │ │ ├── psfig.tmac │ │ ├── psold.tmac │ │ ├── pspic.tmac │ │ ├── s.tmac │ │ ├── safer.tmac │ │ ├── strip.sed │ │ ├── sv.tmac │ │ ├── trace.tmac │ │ ├── trans.tmac │ │ ├── troffrc │ │ ├── troffrc-end │ │ ├── tty-char.tmac │ │ ├── tty.tmac │ │ ├── unicode.tmac │ │ └── www.tmac ├── gzip │ ├── Nmakefile │ ├── README │ ├── bits.c │ ├── crypt.c │ ├── crypt.h │ ├── deflate.c │ ├── getopt.c │ ├── gzip.c │ ├── gzip.h │ ├── inflate.c │ ├── lzw.c │ ├── lzw.h │ ├── revision.h │ ├── tailor.h │ ├── trees.c │ ├── unlzh.c │ ├── unlzw.c │ ├── unpack.c │ ├── unzip.c │ ├── util.c │ └── zip.c ├── i2nmake │ ├── Makefile │ └── i2nmake.sh ├── inetutils │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.in │ ├── NEWS │ ├── Nmakefile │ ├── README │ ├── THANKS │ ├── TODO │ ├── config.guess │ ├── config.make.in │ ├── config.sub │ ├── configure │ ├── configure.in │ ├── ftp │ │ ├── Nmakefile │ │ ├── cmds.c │ │ ├── cmdtab.c │ │ ├── domacro.c │ │ ├── extern.h │ │ ├── ftp.1 │ │ ├── ftp.c │ │ ├── ftp_var.h │ │ ├── main.c │ │ └── ruserpass.c │ ├── ftpd │ │ ├── Makefile.in │ │ ├── Nmakefile │ │ ├── extern.h │ │ ├── ftpcmd.y │ │ ├── ftpd.8 │ │ ├── ftpd.c │ │ └── popen.c │ ├── glob │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Repository │ │ │ └── Root │ │ ├── ChangeLog │ │ ├── Makefile.ami │ │ ├── Makefile.in │ │ ├── Nmakefile │ │ ├── SCOPTIONS │ │ ├── SMakefile │ │ ├── configure │ │ ├── configure.bat │ │ ├── configure.in │ │ ├── fnmatch.c │ │ ├── fnmatch.h │ │ ├── glob.c │ │ └── glob.h │ ├── inetd │ │ ├── Makefile.in │ │ ├── Nmakefile │ │ ├── inetd.8 │ │ └── inetd.c │ ├── inetutils.mk │ ├── install │ ├── libinetutils.h │ ├── libinetutils │ │ ├── Nmakefile │ │ ├── __progname.c │ │ ├── alloca.c │ │ ├── argcv.c │ │ ├── argcv.h │ │ ├── cleansess.c │ │ ├── config.iffe │ │ ├── confpaths.h │ │ ├── crypt.h │ │ ├── daemon.c │ │ ├── forkpty.c │ │ ├── getopt.c │ │ ├── getusershell.c │ │ ├── herror.c │ │ ├── hstrerror.c │ │ ├── iruserok.c │ │ ├── localhost.c │ │ ├── login.c │ │ ├── login_tty.c │ │ ├── logout.c │ │ ├── logwtmp.c │ │ ├── logwtmpko.c │ │ ├── memmove.c │ │ ├── memset.c │ │ ├── openpty.c │ │ ├── revoke.c │ │ ├── setenv.c │ │ ├── setsig.c │ │ ├── snprintf.c │ │ ├── strdup.c │ │ ├── strerror.c │ │ ├── stub_tgetent.c │ │ ├── syslog-int.h │ │ ├── syslog.c │ │ ├── talkd.h │ │ ├── tftp.h │ │ ├── ttymsg.c │ │ ├── version.c │ │ ├── version.h │ │ ├── xmalloc.c │ │ └── xstrdup.c │ ├── libtelnet │ │ ├── Nmakefile │ │ ├── genget.c │ │ └── getent.c │ ├── rcp │ │ ├── Nmakefile │ │ ├── extern.h │ │ ├── rcp.1 │ │ ├── rcp.c │ │ └── util.c │ ├── rexecd │ │ ├── Makefile.in │ │ ├── Nmakefile │ │ ├── rexecd.8 │ │ └── rexecd.c │ ├── rlogin │ │ ├── Makefile.in │ │ ├── Nmakefile │ │ ├── krb.h │ │ ├── rlogin.1 │ │ └── rlogin.c │ ├── rlogind │ │ ├── Nmakefile │ │ ├── rlogind.8 │ │ └── rlogind.c │ ├── rsh │ │ ├── Makefile.in │ │ ├── Nmakefile │ │ ├── rsh.1 │ │ └── rsh.c │ ├── rshd │ │ ├── Makefile.in │ │ ├── Nmakefile │ │ ├── rshd.8 │ │ └── rshd.c │ ├── syslog │ │ ├── Makefile.in │ │ ├── Nmakefile │ │ ├── syslog.1 │ │ └── syslog.c │ ├── syslogd │ │ ├── Nmakefile │ │ ├── syslog.conf.5 │ │ ├── syslogd.8 │ │ └── syslogd.c │ ├── talk │ │ ├── Makefile.in │ │ ├── Nmakefile │ │ ├── ctl.c │ │ ├── ctl_transact.c │ │ ├── display.c │ │ ├── get_addrs.c │ │ ├── get_names.c │ │ ├── init_disp.c │ │ ├── invite.c │ │ ├── io.c │ │ ├── look_up.c │ │ ├── msgs.c │ │ ├── talk.1 │ │ ├── talk.c │ │ ├── talk.h │ │ └── talk_ctl.h │ ├── talkd │ │ ├── Makefile.in │ │ ├── Nmakefile │ │ ├── announce.c │ │ ├── print.c │ │ ├── process.c │ │ ├── table.c │ │ ├── talkd.8 │ │ └── talkd.c │ ├── telnet │ │ ├── Makefile.in │ │ ├── Nmakefile │ │ ├── authenc.c │ │ ├── commands.c │ │ ├── defines.h │ │ ├── externs.h │ │ ├── fdset.h │ │ ├── general.h │ │ ├── main.c │ │ ├── network.c │ │ ├── ring.c │ │ ├── ring.h │ │ ├── sys_bsd.c │ │ ├── telnet.1 │ │ ├── telnet.c │ │ ├── terminal.c │ │ ├── tn3270.c │ │ ├── types.h │ │ └── utilities.c │ ├── telnetd │ │ ├── Makefile.in │ │ ├── Nmakefile │ │ ├── authenc.c │ │ ├── defs.h │ │ ├── ext.h │ │ ├── global.c │ │ ├── slc.c │ │ ├── state.c │ │ ├── sys_term.c │ │ ├── telnetd.8 │ │ ├── telnetd.c │ │ ├── telnetd.h │ │ ├── termstat.c │ │ └── utility.c │ ├── tftp │ │ ├── Makefile.in │ │ ├── Nmakefile │ │ ├── extern.h │ │ ├── main.c │ │ ├── tftp.1 │ │ ├── tftp.c │ │ ├── tftpsubs.c │ │ └── tftpsubs.h │ └── tftpd │ │ ├── Makefile.in │ │ ├── Nmakefile │ │ ├── tftpd.8 │ │ └── tftpd.c ├── less │ ├── INSTALL │ ├── Makefile │ ├── Makefile.aut │ ├── Makefile.dsb │ ├── Makefile.dsg │ ├── Makefile.dsm │ ├── Makefile.in │ ├── Makefile.o2e │ ├── Makefile.o9c │ ├── Makefile.o9u │ ├── Makefile.wnb │ ├── Makefile.wnm │ ├── NEWS │ ├── Nmakefile │ ├── README │ ├── acconfig.h │ ├── brac.c │ ├── ch.c │ ├── charset.c │ ├── cmd.h │ ├── cmdbuf.c │ ├── command.c │ ├── configure │ ├── configure.in │ ├── decode.c │ ├── defines.ds │ ├── defines.h.in │ ├── defines.h.top │ ├── defines.o2 │ ├── defines.o9 │ ├── defines.wn │ ├── edit.c │ ├── filename.c │ ├── forwback.c │ ├── funcs.h │ ├── help.c │ ├── ifile.c │ ├── input.c │ ├── install.sh │ ├── jump.c │ ├── less.h │ ├── less.hlp │ ├── less.nro │ ├── lessecho.c │ ├── lesskey.c │ ├── lesskey.h │ ├── lesskey.nro │ ├── lglob.h │ ├── line.c │ ├── linenum.c │ ├── lsystem.c │ ├── main.c │ ├── mark.c │ ├── mkfuncs.awk │ ├── mkhelp.c │ ├── mkinstalldirs │ ├── optfunc.c │ ├── option.c │ ├── option.h │ ├── opttbl.c │ ├── os.c │ ├── output.c │ ├── position.c │ ├── position.h │ ├── prompt.c │ ├── regexp.c │ ├── regexp.h │ ├── screen.c │ ├── search.c │ ├── signal.c │ ├── tags.c │ ├── ttyin.c │ └── version.c ├── lesstif │ ├── AUTHORS │ ├── BUG-REPORTING │ ├── COPYING │ ├── CREDITS │ ├── ChangeLog │ ├── FAQ │ ├── INSTALL.txt │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── Nmakefile │ ├── README │ ├── ReleaseNotes.html │ ├── ReleaseNotes.txt │ ├── ac_debug.m4 │ ├── ac_have_libxp.m4 │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── autopackage │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.orig │ │ ├── default.apspec │ │ └── default.apspec.in │ ├── clients │ │ ├── Motif-2.1 │ │ │ ├── Nmakefile │ │ │ ├── mwm │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Mwm.ad │ │ │ │ ├── Nmakefile │ │ │ │ ├── README │ │ │ │ ├── alt.map │ │ │ │ ├── colormaps.c │ │ │ │ ├── cursors.c │ │ │ │ ├── decorate.c │ │ │ │ ├── defaults.c │ │ │ │ ├── desktop.c │ │ │ │ ├── events.c │ │ │ │ ├── functions.c │ │ │ │ ├── gethostname.c │ │ │ │ ├── icons.c │ │ │ │ ├── menus.c │ │ │ │ ├── misc.c │ │ │ │ ├── move.c │ │ │ │ ├── mwm.c │ │ │ │ ├── mwm.h │ │ │ │ ├── mwmlex.l │ │ │ │ ├── mwmparse.y │ │ │ │ ├── mwmstrings.h │ │ │ │ ├── pager.c │ │ │ │ ├── pan.c │ │ │ │ ├── props.c │ │ │ │ ├── resize.c │ │ │ │ ├── resources.c │ │ │ │ ├── screens.c │ │ │ │ ├── system.mwmrc │ │ │ │ └── windows.c │ │ │ ├── uil │ │ │ │ ├── Attribute.c │ │ │ │ ├── Attribute.h │ │ │ │ ├── Callback.c │ │ │ │ ├── Callback.h │ │ │ │ ├── Expression.c │ │ │ │ ├── Expression.h │ │ │ │ ├── ExpressionList.c │ │ │ │ ├── ExpressionList.h │ │ │ │ ├── FakeWidget.c │ │ │ │ ├── FakeWidget.h │ │ │ │ ├── Include.c │ │ │ │ ├── Include.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── MrmTypes.c │ │ │ │ ├── MrmTypes.h │ │ │ │ ├── Nmakefile │ │ │ │ ├── glue.c │ │ │ │ ├── glue.h │ │ │ │ ├── lex.l │ │ │ │ ├── main.c │ │ │ │ ├── main.h │ │ │ │ ├── newuil.c │ │ │ │ └── yacc.y │ │ │ └── xmbind │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Nmakefile │ │ │ │ └── xmbind.c │ │ └── Nmakefile │ ├── compile │ ├── configure │ ├── configure.in │ ├── doc │ │ ├── Nmakefile │ │ ├── lessdox │ │ │ ├── clients │ │ │ │ ├── VirtualBindings.5 │ │ │ │ ├── lesstif.1 │ │ │ │ ├── ltversion.1 │ │ │ │ ├── mwm.1 │ │ │ │ ├── mwmrc.5 │ │ │ │ ├── uil.1 │ │ │ │ └── xmbind.1 │ │ │ └── widgets │ │ │ │ ├── ApplicationShell.3 │ │ │ │ ├── Composite.3 │ │ │ │ ├── Constraint.3 │ │ │ │ ├── Core.3 │ │ │ │ ├── LessTifInternals.3 │ │ │ │ ├── Object.3 │ │ │ │ ├── OverrideShell.3 │ │ │ │ ├── Rect.3 │ │ │ │ ├── Shell.3 │ │ │ │ ├── TopLevelShell.3 │ │ │ │ ├── TransientShell.3 │ │ │ │ ├── UnNamedObj.3 │ │ │ │ ├── VendorShell.3 │ │ │ │ ├── WmShell.3 │ │ │ │ ├── XmArrowButton.3 │ │ │ │ ├── XmArrowButtonGadget.3 │ │ │ │ ├── XmBulletinBoard.3 │ │ │ │ ├── XmCascadeButton.3 │ │ │ │ ├── XmCascadeButtonGadget.3 │ │ │ │ ├── XmClipboard.3 │ │ │ │ ├── XmComboBox.3 │ │ │ │ ├── XmCommand.3 │ │ │ │ ├── XmDesktop.3 │ │ │ │ ├── XmDialogShell.3 │ │ │ │ ├── XmDialogShellExt.3 │ │ │ │ ├── XmDisplay.3 │ │ │ │ ├── XmDragContext.3 │ │ │ │ ├── XmDragIcon.3 │ │ │ │ ├── XmDragOverShell.3 │ │ │ │ ├── XmDrawingArea.3 │ │ │ │ ├── XmDrawnButton.3 │ │ │ │ ├── XmDropSiteManager.3 │ │ │ │ ├── XmDropTransfer.3 │ │ │ │ ├── XmFileSelectionBox.3 │ │ │ │ ├── XmForm.3 │ │ │ │ ├── XmFrame.3 │ │ │ │ ├── XmGadget.3 │ │ │ │ ├── XmGrabShell.3 │ │ │ │ ├── XmIconGadget.3 │ │ │ │ ├── XmLabel.3 │ │ │ │ ├── XmLabelGadget.3 │ │ │ │ ├── XmList.3 │ │ │ │ ├── XmMainWindow.3 │ │ │ │ ├── XmManager.3 │ │ │ │ ├── XmMenuShell.3 │ │ │ │ ├── XmMessageBox.3 │ │ │ │ ├── XmNotebook.3 │ │ │ │ ├── XmPanedWindow.3 │ │ │ │ ├── XmPrimitive.3 │ │ │ │ ├── XmProtocol.3 │ │ │ │ ├── XmPushButton.3 │ │ │ │ ├── XmPushButtonGadget.3 │ │ │ │ ├── XmRowColumn.3 │ │ │ │ ├── XmSash.3 │ │ │ │ ├── XmScale.3 │ │ │ │ ├── XmScreen.3 │ │ │ │ ├── XmScrollBar.3 │ │ │ │ ├── XmScrolledWindow.3 │ │ │ │ ├── XmSelectionBox.3 │ │ │ │ ├── XmSeparator.3 │ │ │ │ ├── XmSeparatorGadget.3 │ │ │ │ ├── XmSpinBox.3 │ │ │ │ ├── XmString.3 │ │ │ │ ├── XmTearOffButton.3 │ │ │ │ ├── XmText.3 │ │ │ │ ├── XmTextField.3 │ │ │ │ ├── XmToggleButton.3 │ │ │ │ ├── XmToggleButtonGadget.3 │ │ │ │ ├── XmVendorShell.3 │ │ │ │ └── XmWorld.3 │ │ └── www.lesstif.org │ │ │ ├── Advocacy.html │ │ │ ├── All.html │ │ │ ├── BUG-HUNTING.html │ │ │ ├── COPYING.LIB.html │ │ │ ├── Clipboard.txt │ │ │ ├── DragAndDrop.txt │ │ │ ├── FAQ.html │ │ │ ├── Form.txt │ │ │ ├── GeoUtils.txt │ │ │ ├── Geometry.html │ │ │ ├── INSTALL.html │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── PROGRAMMING_TIPS.html │ │ │ ├── ReleaseNotes.html │ │ │ ├── SyntheticResources.txt │ │ │ ├── UIL.txt │ │ │ ├── XmStrings.txt │ │ │ ├── XpREADME.html │ │ │ ├── XprtConfig.html │ │ │ ├── about.html │ │ │ ├── apps.html │ │ │ ├── bugs.html │ │ │ ├── bugs_frame.html │ │ │ ├── cdrom.html │ │ │ ├── contents.html │ │ │ ├── core.html │ │ │ ├── cvs.html │ │ │ ├── doc_frame.html │ │ │ ├── download.html │ │ │ ├── feedback.html │ │ │ ├── frames.html │ │ │ ├── future.html │ │ │ ├── get_frame.html │ │ │ ├── help.html │ │ │ ├── html │ │ │ ├── ApplicationShell.html │ │ │ ├── Composite.html │ │ │ ├── Constraint.html │ │ │ ├── Core.html │ │ │ ├── LessTifInternals.html │ │ │ ├── Object.html │ │ │ ├── OverrideShell.html │ │ │ ├── Rect.html │ │ │ ├── Shell.html │ │ │ ├── TopLevelShell.html │ │ │ ├── TransientShell.html │ │ │ ├── UnNamedObj.html │ │ │ ├── VendorShell.html │ │ │ ├── VirtualBindings.html │ │ │ ├── WmShell.html │ │ │ ├── XmArrowButton.html │ │ │ ├── XmArrowButtonGadget.html │ │ │ ├── XmBulletinBoard.html │ │ │ ├── XmCascadeButton.html │ │ │ ├── XmCascadeButtonGadget.html │ │ │ ├── XmClipboard.html │ │ │ ├── XmComboBox.html │ │ │ ├── XmCommand.html │ │ │ ├── XmDesktop.html │ │ │ ├── XmDialogShell.html │ │ │ ├── XmDialogShellExt.html │ │ │ ├── XmDisplay.html │ │ │ ├── XmDragContext.html │ │ │ ├── XmDragIcon.html │ │ │ ├── XmDragOverShell.html │ │ │ ├── XmDrawingArea.html │ │ │ ├── XmDrawnButton.html │ │ │ ├── XmDropSiteManager.html │ │ │ ├── XmDropTransfer.html │ │ │ ├── XmFileSelectionBox.html │ │ │ ├── XmForm.html │ │ │ ├── XmFrame.html │ │ │ ├── XmGadget.html │ │ │ ├── XmGrabShell.html │ │ │ ├── XmIconGadget.html │ │ │ ├── XmLabel.html │ │ │ ├── XmLabelGadget.html │ │ │ ├── XmList.html │ │ │ ├── XmMainWindow.html │ │ │ ├── XmManager.html │ │ │ ├── XmMenuShell.html │ │ │ ├── XmMessageBox.html │ │ │ ├── XmNotebook.html │ │ │ ├── XmPanedWindow.html │ │ │ ├── XmPrimitive.html │ │ │ ├── XmProtocol.html │ │ │ ├── XmPushButton.html │ │ │ ├── XmPushButtonGadget.html │ │ │ ├── XmRowColumn.html │ │ │ ├── XmSash.html │ │ │ ├── XmScale.html │ │ │ ├── XmScreen.html │ │ │ ├── XmScrollBar.html │ │ │ ├── XmScrolledWindow.html │ │ │ ├── XmSelectionBox.html │ │ │ ├── XmSeparator.html │ │ │ ├── XmSeparatorGadget.html │ │ │ ├── XmSpinBox.html │ │ │ ├── XmString.html │ │ │ ├── XmTearOffButton.html │ │ │ ├── XmText.html │ │ │ ├── XmTextField.html │ │ │ ├── XmToggleButton.html │ │ │ ├── XmToggleButtonGadget.html │ │ │ ├── XmVendorShell.html │ │ │ ├── XmWorld.html │ │ │ ├── lesstif.html │ │ │ ├── mwm.html │ │ │ ├── mwmrc.html │ │ │ ├── uil.html │ │ │ └── xmbind.html │ │ │ ├── images │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── hungry.png │ │ │ ├── lesstif-realsmall.png │ │ │ ├── lesstif-small.png │ │ │ ├── lesstif.jpg │ │ │ ├── lesstif.png │ │ │ ├── ltsunlogo.jpg │ │ │ ├── ltsunlogo.png │ │ │ ├── vh32.jpg │ │ │ ├── vh32.png │ │ │ ├── vh40.jpg │ │ │ └── vh40.png │ │ │ ├── index.html │ │ │ ├── known.html │ │ │ ├── links.html │ │ │ ├── lists.html │ │ │ ├── mirrors.html │ │ │ ├── misc_frame.html │ │ │ ├── news.html │ │ │ ├── news_frame.html │ │ │ ├── platforms.html │ │ │ ├── printing.html │ │ │ ├── related_frame.html │ │ │ ├── release-policy.html │ │ │ ├── test_policy.html │ │ │ ├── test_summary.html │ │ │ ├── testers.html │ │ │ ├── thread.html │ │ │ ├── titlebar.html │ │ │ ├── versions.html │ │ │ └── web_button.html │ ├── include │ │ ├── LTconfig.h │ │ ├── LTconfig.h.in │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.orig │ │ ├── Motif-2.1 │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Mrm │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── MrmAppl.h │ │ │ │ ├── MrmDecls.h │ │ │ │ ├── MrmPrivate.h │ │ │ │ └── MrmPublic.h │ │ │ ├── Xm │ │ │ │ ├── AccTextT.h │ │ │ │ ├── ActivatableT.h │ │ │ │ ├── ArrowB.h │ │ │ │ ├── ArrowBG.h │ │ │ │ ├── ArrowBGP.h │ │ │ │ ├── ArrowBP.h │ │ │ │ ├── AtomMgr.h │ │ │ │ ├── BaseClassP.h │ │ │ │ ├── BulletinB.h │ │ │ │ ├── BulletinBP.h │ │ │ │ ├── CacheP.h │ │ │ │ ├── CareVisualT.h │ │ │ │ ├── CascadeB.h │ │ │ │ ├── CascadeBG.h │ │ │ │ ├── CascadeBGP.h │ │ │ │ ├── CascadeBP.h │ │ │ │ ├── ColorObjP.h │ │ │ │ ├── ComboBox.h │ │ │ │ ├── ComboBoxP.h │ │ │ │ ├── Command.h │ │ │ │ ├── CommandP.h │ │ │ │ ├── ContItemT.h │ │ │ │ ├── Container.h │ │ │ │ ├── ContainerP.h │ │ │ │ ├── ContainerT.h │ │ │ │ ├── CutPaste.h │ │ │ │ ├── CutPasteP.h │ │ │ │ ├── DesktopP.h │ │ │ │ ├── DialogS.h │ │ │ │ ├── DialogSEP.h │ │ │ │ ├── DialogSP.h │ │ │ │ ├── DialogSavvyT.h │ │ │ │ ├── Display.h │ │ │ │ ├── DisplayP.h │ │ │ │ ├── DragC.h │ │ │ │ ├── DragCP.h │ │ │ │ ├── DragDrop.h │ │ │ │ ├── DragIcon.h │ │ │ │ ├── DragIconP.h │ │ │ │ ├── DragOverS.h │ │ │ │ ├── DragOverSP.h │ │ │ │ ├── DrawP.h │ │ │ │ ├── DrawingA.h │ │ │ │ ├── DrawingAP.h │ │ │ │ ├── DrawnB.h │ │ │ │ ├── DrawnBP.h │ │ │ │ ├── DropSMgr.h │ │ │ │ ├── DropSMgrP.h │ │ │ │ ├── DropTrans.h │ │ │ │ ├── DropTransP.h │ │ │ │ ├── ExtObjectP.h │ │ │ │ ├── FileSB.h │ │ │ │ ├── FileSBP.h │ │ │ │ ├── Form.h │ │ │ │ ├── FormP.h │ │ │ │ ├── Frame.h │ │ │ │ ├── FrameP.h │ │ │ │ ├── Gadget.h │ │ │ │ ├── GadgetP.h │ │ │ │ ├── GrabShell.h │ │ │ │ ├── GrabShellP.h │ │ │ │ ├── IconG.h │ │ │ │ ├── IconGP.h │ │ │ │ ├── IconH.h │ │ │ │ ├── JoinSideT.h │ │ │ │ ├── Label.h │ │ │ │ ├── LabelG.h │ │ │ │ ├── LabelGP.h │ │ │ │ ├── LabelP.h │ │ │ │ ├── LayoutT.h │ │ │ │ ├── List.h │ │ │ │ ├── ListP.h │ │ │ │ ├── MainW.h │ │ │ │ ├── MainWP.h │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Manager.h │ │ │ │ ├── ManagerP.h │ │ │ │ ├── MenuShell.h │ │ │ │ ├── MenuShellP.h │ │ │ │ ├── MenuT.h │ │ │ │ ├── MenuUtilP.h │ │ │ │ ├── MessageB.h │ │ │ │ ├── MessageBP.h │ │ │ │ ├── MwmUtil.h │ │ │ │ ├── NavigatorT.h │ │ │ │ ├── Notebook.h │ │ │ │ ├── NotebookP.h │ │ │ │ ├── PanedW.h │ │ │ │ ├── PanedWP.h │ │ │ │ ├── Primitive.h │ │ │ │ ├── PrimitiveP.h │ │ │ │ ├── Print.h │ │ │ │ ├── PrintSP.h │ │ │ │ ├── Protocols.h │ │ │ │ ├── ProtocolsP.h │ │ │ │ ├── PushB.h │ │ │ │ ├── PushBG.h │ │ │ │ ├── PushBGP.h │ │ │ │ ├── PushBP.h │ │ │ │ ├── RCUtilsP.h │ │ │ │ ├── RepType.h │ │ │ │ ├── RowColumn.h │ │ │ │ ├── RowColumnP.h │ │ │ │ ├── SSpinB.h │ │ │ │ ├── SSpinBP.h │ │ │ │ ├── SashP.h │ │ │ │ ├── Scale.h │ │ │ │ ├── ScaleP.h │ │ │ │ ├── Screen.h │ │ │ │ ├── ScreenP.h │ │ │ │ ├── ScrollBar.h │ │ │ │ ├── ScrollBarP.h │ │ │ │ ├── ScrollFrameT.h │ │ │ │ ├── ScrolledW.h │ │ │ │ ├── ScrolledWP.h │ │ │ │ ├── SelectioB.h │ │ │ │ ├── SelectioBP.h │ │ │ │ ├── SeparatoG.h │ │ │ │ ├── SeparatoGP.h │ │ │ │ ├── Separator.h │ │ │ │ ├── SeparatorP.h │ │ │ │ ├── ShellEP.h │ │ │ │ ├── SpecRenderT.h │ │ │ │ ├── SpinB.h │ │ │ │ ├── SpinBP.h │ │ │ │ ├── TakesDefT.h │ │ │ │ ├── TearOffBP.h │ │ │ │ ├── TearOffP.h │ │ │ │ ├── Text.h │ │ │ │ ├── TextF.h │ │ │ │ ├── TextFP.h │ │ │ │ ├── TextFSelP.h │ │ │ │ ├── TextInP.h │ │ │ │ ├── TextOutP.h │ │ │ │ ├── TextP.h │ │ │ │ ├── TextSelP.h │ │ │ │ ├── TextStrSoP.h │ │ │ │ ├── ToggleB.h │ │ │ │ ├── ToggleBG.h │ │ │ │ ├── ToggleBGP.h │ │ │ │ ├── ToggleBP.h │ │ │ │ ├── TraitP.h │ │ │ │ ├── Transfer.h │ │ │ │ ├── TransferP.h │ │ │ │ ├── TransferT.h │ │ │ │ ├── TransltnsP.h │ │ │ │ ├── TxtPropCv.h │ │ │ │ ├── VaSimpleP.h │ │ │ │ ├── VendorS.h │ │ │ │ ├── VendorSEP.h │ │ │ │ ├── VendorSP.h │ │ │ │ ├── VirtKeys.h │ │ │ │ ├── VirtKeysP.h │ │ │ │ ├── WorldP.h │ │ │ │ ├── Xm.h │ │ │ │ ├── Xm.h.in │ │ │ │ ├── Xm.h.tmp │ │ │ │ ├── XmAll.h │ │ │ │ ├── XmIm.h │ │ │ │ ├── XmP.h │ │ │ │ ├── XmStrDefs.h │ │ │ │ ├── XmosP.h │ │ │ │ └── XpmP.h │ │ │ ├── XmI │ │ │ │ ├── AtomMgrI.h │ │ │ │ ├── CutPasteI.h │ │ │ │ ├── DebugUtil.h │ │ │ │ ├── DirectionI.h │ │ │ │ ├── DragDropI.h │ │ │ │ ├── HashI.h │ │ │ │ ├── ImageCacheI.h │ │ │ │ ├── LTV5EditresP.h │ │ │ │ ├── LTV6EditresP.h │ │ │ │ ├── LTglob.h │ │ │ │ ├── LTmisc.h │ │ │ │ ├── MacrosI.h │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── ManagerI.h │ │ │ │ ├── MessagesI.h │ │ │ │ ├── PixConvI.h │ │ │ │ ├── PopupUtil.h │ │ │ │ ├── TransltnsI.h │ │ │ │ ├── TraversalI.h │ │ │ │ ├── UilI.h │ │ │ │ ├── XmI.h │ │ │ │ ├── XpmI.h │ │ │ │ └── xdnd.h │ │ │ └── uil │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Uil.h │ │ │ │ ├── UilDBDef.h │ │ │ │ ├── UilDef.h │ │ │ │ ├── UilSymDef.h │ │ │ │ ├── UilSymGl.h │ │ │ │ └── XmAppl.uil │ │ └── stamp-h1 │ ├── install-sh │ ├── lesstif.mk │ ├── lib │ │ ├── Dt │ │ │ ├── DtPrintSetupBox.c │ │ │ ├── DtPrintSetupBoxP.h │ │ │ ├── DtPrintSetupData.c │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Nmakefile │ │ │ └── Print.h │ │ ├── Mrm-2.1 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Mrm.c │ │ │ ├── Mrm.h │ │ │ ├── Nmakefile │ │ │ ├── lookup.c │ │ │ ├── lookup.h │ │ │ ├── misc.c │ │ │ ├── misc.h │ │ │ └── uil.h │ │ ├── Nmakefile │ │ ├── Uil-2.1 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Nmakefile │ │ │ ├── Uil.c │ │ │ ├── UilData.c │ │ │ ├── uillex.c │ │ │ ├── uilparse.c │ │ │ └── uilsym.c │ │ ├── Xm-2.1 │ │ │ ├── ArrowB.c │ │ │ ├── ArrowBG.c │ │ │ ├── AtomMgr.c │ │ │ ├── BaseClass.c │ │ │ ├── BulletinBoard.c │ │ │ ├── Cache.c │ │ │ ├── CascadeB.c │ │ │ ├── CascadeBG.c │ │ │ ├── ComboBox.c │ │ │ ├── Command.c │ │ │ ├── Container.c │ │ │ ├── CutPaste.c │ │ │ ├── DebugUtil.c │ │ │ ├── Desktop.c │ │ │ ├── Dest.c │ │ │ ├── DialogS.c │ │ │ ├── Direction.c │ │ │ ├── Display.c │ │ │ ├── DragBS.c │ │ │ ├── DragC.c │ │ │ ├── DragIcon.c │ │ │ ├── DragOverS.c │ │ │ ├── DragUnder.c │ │ │ ├── Draw.c │ │ │ ├── DrawingArea.c │ │ │ ├── DrawnB.c │ │ │ ├── DropSMgr.c │ │ │ ├── DropSMgrI.c │ │ │ ├── DropTrans.c │ │ │ ├── ExtObject.c │ │ │ ├── FileSB.c │ │ │ ├── FontList.c │ │ │ ├── Form.c │ │ │ ├── Frame.c │ │ │ ├── Gadget.c │ │ │ ├── GadgetUtil.c │ │ │ ├── GeoUtils.c │ │ │ ├── GrabShell.c │ │ │ ├── Hash.c │ │ │ ├── IconG.c │ │ │ ├── ImageCache.c │ │ │ ├── LTCvt.c │ │ │ ├── LTV6Editres.c │ │ │ ├── LTglob.c │ │ │ ├── Label.c │ │ │ ├── LabelG.c │ │ │ ├── List.c │ │ │ ├── MainW.c │ │ │ ├── Makefile.in │ │ │ ├── Manager.c │ │ │ ├── MapEvent.c │ │ │ ├── MenuShell.c │ │ │ ├── MenuUtil.c │ │ │ ├── MessageB.c │ │ │ ├── Messages.c │ │ │ ├── Mwm.c │ │ │ ├── Nmakefile │ │ │ ├── Notebook.c │ │ │ ├── Obsolete.c │ │ │ ├── PanedW.c │ │ │ ├── PixConv.c │ │ │ ├── PopupUtil.c │ │ │ ├── Primitive.c │ │ │ ├── Print.c │ │ │ ├── PrintShell.c │ │ │ ├── Protocols.c │ │ │ ├── PushB.c │ │ │ ├── PushBG.c │ │ │ ├── RCUtils.c │ │ │ ├── ReadImage.c │ │ │ ├── Region.c │ │ │ ├── RenderTable.c │ │ │ ├── RepType.c │ │ │ ├── ResConvert.c │ │ │ ├── ResInd.c │ │ │ ├── RowColumn.c │ │ │ ├── SSpinB.c │ │ │ ├── Sash.c │ │ │ ├── Scale.c │ │ │ ├── Screen.c │ │ │ ├── ScrollBar.c │ │ │ ├── ScrolledW.c │ │ │ ├── Selection.c │ │ │ ├── SelectionBox.c │ │ │ ├── SeparatoG.c │ │ │ ├── Separator.c │ │ │ ├── Shadow.c │ │ │ ├── ShellExt.c │ │ │ ├── Simple.c │ │ │ ├── SpinBox.c │ │ │ ├── TearOff.c │ │ │ ├── TearOffB.c │ │ │ ├── Text.c │ │ │ ├── TextF.c │ │ │ ├── TextIn.c │ │ │ ├── TextOut.c │ │ │ ├── TextStrSo.c │ │ │ ├── ToggleB.c │ │ │ ├── ToggleBG.c │ │ │ ├── TrackLoc.c │ │ │ ├── Trait.c │ │ │ ├── Transfer.c │ │ │ ├── TranslNew.c │ │ │ ├── Transltns.c │ │ │ ├── TravAct.c │ │ │ ├── Traversal.c │ │ │ ├── UniqueEvent.c │ │ │ ├── VaSimple.c │ │ │ ├── Vendor.c │ │ │ ├── VirtKeys.c │ │ │ ├── Visual.c │ │ │ ├── World.c │ │ │ ├── XmIm.c │ │ │ ├── XmStrDefs.c │ │ │ ├── XmString.c │ │ │ ├── XmTabList.c │ │ │ ├── Xme.c │ │ │ ├── Xmos.c │ │ │ ├── XpmAttrib.c │ │ │ ├── XpmCrBufFrI.c │ │ │ ├── XpmCrBufFrP.c │ │ │ ├── XpmCrDatFrI.c │ │ │ ├── XpmCrDatFrP.c │ │ │ ├── XpmCrIFrBuf.c │ │ │ ├── XpmCrIFrDat.c │ │ │ ├── XpmCrIFrP.c │ │ │ ├── XpmCrPFrBuf.c │ │ │ ├── XpmCrPFrDat.c │ │ │ ├── XpmCrPFrI.c │ │ │ ├── XpmImage.c │ │ │ ├── XpmInfo.c │ │ │ ├── XpmRdFToBuf.c │ │ │ ├── XpmRdFToDat.c │ │ │ ├── XpmRdFToI.c │ │ │ ├── XpmRdFToP.c │ │ │ ├── XpmWrFFrBuf.c │ │ │ ├── XpmWrFFrDat.c │ │ │ ├── XpmWrFFrI.c │ │ │ ├── XpmWrFFrP.c │ │ │ ├── Xpmcreate.c │ │ │ ├── Xpmdata.c │ │ │ ├── Xpmhashtab.c │ │ │ ├── Xpmmisc.c │ │ │ ├── Xpmparse.c │ │ │ ├── Xpmrgb.c │ │ │ ├── Xpms_popen.c │ │ │ ├── Xpmscan.c │ │ │ ├── misc.c │ │ │ └── xdnd.c │ │ └── config │ │ │ ├── LessTif.rules │ │ │ ├── LessTif.tmpl │ │ │ └── Nmakefile │ ├── libtool │ ├── ltmain.sh │ ├── missing │ └── scripts │ │ ├── FreeBSD │ │ ├── COMMENT │ │ ├── DESCR │ │ ├── Makefile │ │ ├── Makefile.am │ │ └── Makefile.in │ │ ├── LTsysinfo │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.orig │ │ ├── OS2 │ │ ├── DtPrint_emx.def.dist │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Mrm_12_emx.def.dist │ │ ├── Mrm_20_emx.def.dist │ │ ├── Mrm_21_emx.def.dist │ │ ├── Uil_12_emx.def.dist │ │ ├── Uil_20_emx.def.dist │ │ ├── Uil_21_emx.def.dist │ │ ├── Xm_12_emx.def.dist │ │ ├── Xm_20_emx.def.dist │ │ ├── Xm_21_emx.def.dist │ │ ├── ble.cmd │ │ └── ltv2.cmd │ │ ├── README │ │ ├── RedHat │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── lesstif.spec │ │ └── lesstif.spec.in │ │ ├── Slackware │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── disklesstif1 │ │ ├── disklesstif1.in │ │ ├── doinst.sh │ │ ├── doinst.sh.in │ │ ├── install.end │ │ ├── maketag │ │ └── tagfile │ │ ├── VERSIONS │ │ └── man2html.c.01 │ │ ├── autoconf │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── ac_find_motif.m4 │ │ ├── cvs2patch.c │ │ ├── man2html.c │ │ ├── mkinline.c │ │ ├── motif-config │ │ ├── motif-config.in │ │ ├── typedefs.c │ │ └── typedefs.l ├── lex │ ├── Makefile │ ├── header.c │ ├── ldefs.h │ ├── lmain.c │ ├── mkfile │ ├── ncform │ ├── once.h │ ├── parser.y │ ├── sub1.c │ └── sub2.c ├── lp │ ├── Makefile │ ├── cancel.c │ ├── enum_printers.c │ ├── gen_options.sh │ ├── get_default_printer.c │ ├── lp.c │ ├── lp.h │ ├── lpstat.c │ ├── options.tab │ └── slashback.c ├── m4 │ ├── Makefile │ ├── RELEASE │ ├── m4.c │ ├── m4.h │ ├── m4.test1 │ ├── m4.test2 │ ├── m4.test3 │ ├── m4.test4 │ ├── m4.test5 │ ├── m4.test6 │ ├── m4ext.c │ ├── m4macs.c │ └── m4y.y ├── mini_httpd │ ├── Makefile │ ├── Nmakefile │ ├── README │ ├── htpasswd.1 │ ├── htpasswd.c │ ├── index.html │ ├── match.c │ ├── match.h │ ├── mime_encodings.txt │ ├── mime_types.txt │ ├── mini_httpd.8 │ ├── mini_httpd.c │ ├── mini_httpd.cnf │ ├── port.h │ ├── scripts │ │ ├── 500.mini_httpd-rotate │ │ ├── mini_httpd.sh │ │ ├── mini_httpd_wrapper │ │ └── start │ ├── tdate_parse.c │ ├── tdate_parse.h │ └── version.h ├── more │ ├── Nmakefile │ ├── ch.c │ ├── command.c │ ├── decode.c │ ├── extern.h │ ├── help.c │ ├── input.c │ ├── less.h │ ├── line.c │ ├── linenum.c │ ├── main.c │ ├── more.1 │ ├── more.help │ ├── option.c │ ├── os.c │ ├── output.c │ ├── pathnames.h │ ├── position.c │ ├── prim.c │ ├── screen.c │ ├── signal.c │ └── ttyin.c ├── nvi │ ├── FAQ │ ├── LAYOUT │ ├── LICENSE │ ├── Nmakefile │ ├── README │ ├── build │ │ ├── ExtUtils │ │ │ └── Embed.pm │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ ├── README.LynxOS │ │ ├── acconfig.h │ │ ├── aclocal.m4 │ │ ├── config.cache │ │ ├── config.guess │ │ ├── config.guess.orig │ │ ├── config.h │ │ ├── config.h.in │ │ ├── config.log │ │ ├── config.status │ │ ├── config.sub │ │ ├── config.sub.orig │ │ ├── configure │ │ ├── configure.in │ │ ├── distrib │ │ ├── dummy.o │ │ ├── install-sh │ │ ├── pathnames.h │ │ ├── pathnames.h.in │ │ ├── port.h │ │ ├── port.h.in │ │ ├── recover │ │ ├── recover.in │ │ ├── spell.ok │ │ └── tags │ ├── catalog │ │ ├── Makefile │ │ ├── README │ │ ├── dump.c │ │ ├── dutch │ │ ├── dutch.base │ │ ├── dutch.check │ │ ├── dutch.owner │ │ ├── english │ │ ├── english.base │ │ ├── english.check │ │ ├── english.owner │ │ ├── french │ │ ├── french.base │ │ ├── french.check │ │ ├── german │ │ ├── german.base │ │ ├── german.check │ │ ├── german.owner │ │ ├── ru_SU.KOI8-R │ │ ├── ru_SU.KOI8-R.base │ │ ├── ru_SU.KOI8-R.check │ │ ├── ru_SU.KOI8-R.owner │ │ ├── spanish │ │ ├── spanish.base │ │ ├── spanish.check │ │ ├── spell.ok │ │ ├── swedish │ │ ├── swedish.base │ │ ├── swedish.check │ │ └── swedish.owner │ ├── cl │ │ ├── README.signal │ │ ├── cl.h │ │ ├── cl_bsd.c │ │ ├── cl_funcs.c │ │ ├── cl_main.c │ │ ├── cl_read.c │ │ ├── cl_screen.c │ │ └── cl_term.c │ ├── clib │ │ ├── bsearch.c │ │ ├── env.c │ │ ├── gethostname.c │ │ ├── getopt.c │ │ ├── memchr.c │ │ ├── memmove.c │ │ ├── memset.c │ │ ├── mkstemp.c │ │ ├── mmap.c │ │ ├── snprintf.c │ │ ├── strdup.c │ │ ├── strerror.c │ │ ├── strpbrk.c │ │ ├── strsep.c │ │ ├── strtol.c │ │ ├── strtoul.c │ │ ├── tags │ │ └── vsnprintf.c │ ├── common │ │ ├── api.c │ │ ├── args.h │ │ ├── common.h │ │ ├── cut.c │ │ ├── cut.h │ │ ├── delete.c │ │ ├── exf.c │ │ ├── exf.h │ │ ├── gs.h │ │ ├── key.c │ │ ├── key.h │ │ ├── line.c │ │ ├── log.c │ │ ├── log.h │ │ ├── main.c │ │ ├── mark.c │ │ ├── mark.h │ │ ├── mem.h │ │ ├── msg.c │ │ ├── msg.h │ │ ├── options.awk │ │ ├── options.c │ │ ├── options.h │ │ ├── options_f.c │ │ ├── put.c │ │ ├── recover.c │ │ ├── screen.c │ │ ├── screen.h │ │ ├── search.c │ │ ├── seq.c │ │ ├── seq.h │ │ ├── util.c │ │ └── util.h │ ├── curses │ │ ├── addbytes.c │ │ ├── addch.c │ │ ├── box.c │ │ ├── clear.c │ │ ├── clrtobot.c │ │ ├── clrtoeol.c │ │ ├── cr_put.c │ │ ├── ctrace.c │ │ ├── cur_hash.c │ │ ├── curses.c │ │ ├── curses.h │ │ ├── delch.c │ │ ├── deleteln.c │ │ ├── delwin.c │ │ ├── erase.c │ │ ├── fullname.c │ │ ├── getch.c │ │ ├── getstr.c │ │ ├── id_subwins.c │ │ ├── idlok.c │ │ ├── initscr.c │ │ ├── insch.c │ │ ├── insertln.c │ │ ├── longname.c │ │ ├── move.c │ │ ├── mvwin.c │ │ ├── newwin.c │ │ ├── overlay.c │ │ ├── overwrite.c │ │ ├── putchar.c │ │ ├── refresh.c │ │ ├── scroll.c │ │ ├── setterm.c │ │ ├── standout.c │ │ ├── toucholap.c │ │ ├── touchwin.c │ │ ├── tscroll.c │ │ ├── tstp.c │ │ ├── tty.c │ │ ├── unctrl.c │ │ └── waddnstr.c │ ├── db │ │ ├── README │ │ ├── btree │ │ │ ├── bt_close.c │ │ │ ├── bt_conv.c │ │ │ ├── bt_debug.c │ │ │ ├── bt_delete.c │ │ │ ├── bt_get.c │ │ │ ├── bt_open.c │ │ │ ├── bt_overflow.c │ │ │ ├── bt_page.c │ │ │ ├── bt_put.c │ │ │ ├── bt_search.c │ │ │ ├── bt_seq.c │ │ │ ├── bt_split.c │ │ │ ├── bt_utils.c │ │ │ ├── btree.h │ │ │ └── extern.h │ │ ├── db │ │ │ └── db.c │ │ ├── include │ │ │ ├── db.h │ │ │ └── mpool.h │ │ ├── mpool │ │ │ └── mpool.c │ │ └── recno │ │ │ ├── extern.h │ │ │ ├── rec_close.c │ │ │ ├── rec_delete.c │ │ │ ├── rec_get.c │ │ │ ├── rec_open.c │ │ │ ├── rec_put.c │ │ │ ├── rec_search.c │ │ │ ├── rec_seq.c │ │ │ ├── rec_utils.c │ │ │ └── recno.h │ ├── docs │ │ ├── TODO │ │ ├── USD.doc │ │ │ ├── edit │ │ │ │ ├── Makefile │ │ │ │ ├── edit.vindex │ │ │ │ ├── edittut.ms │ │ │ │ └── edittut.pdf │ │ │ ├── exref │ │ │ │ ├── Makefile │ │ │ │ ├── ex.rm │ │ │ │ ├── ex.summary │ │ │ │ ├── exref.pdf │ │ │ │ └── summary.pdf │ │ │ ├── vi.man │ │ │ │ ├── Makefile │ │ │ │ ├── spell.ok │ │ │ │ ├── vi.0 │ │ │ │ ├── vi.0.pdf │ │ │ │ └── vi.1 │ │ │ ├── vi.ref │ │ │ │ ├── Makefile │ │ │ │ ├── ex.cmd.roff │ │ │ │ ├── index.so │ │ │ │ ├── merge.awk │ │ │ │ ├── ref.so │ │ │ │ ├── set.opt.roff │ │ │ │ ├── spell.ok │ │ │ │ ├── vi.cmd.roff │ │ │ │ ├── vi.ref │ │ │ │ ├── vi.ref.pdf │ │ │ │ └── vi.ref.txt │ │ │ └── vitut │ │ │ │ ├── Makefile │ │ │ │ ├── summary.pdf │ │ │ │ ├── vi.apwh.ms │ │ │ │ ├── vi.chars │ │ │ │ ├── vi.in │ │ │ │ ├── vi.summary │ │ │ │ ├── viapwh.pdf │ │ │ │ └── vitut.pdf │ │ ├── changelog │ │ ├── ev │ │ ├── features │ │ ├── help │ │ ├── internals │ │ │ ├── autowrite │ │ │ ├── context │ │ │ ├── cscope.NOTES │ │ │ ├── gdb.script │ │ │ ├── input │ │ │ ├── openmode │ │ │ ├── quoting │ │ │ └── structures │ │ ├── interp │ │ │ ├── interp │ │ │ └── spell.ok │ │ ├── spell.ok │ │ └── tutorial │ │ │ ├── vi.advanced │ │ │ ├── vi.beginner │ │ │ └── vi.tut.csh │ ├── ex │ │ ├── ex.awk │ │ ├── ex.c │ │ ├── ex.h │ │ ├── ex_abbrev.c │ │ ├── ex_append.c │ │ ├── ex_args.c │ │ ├── ex_argv.c │ │ ├── ex_at.c │ │ ├── ex_bang.c │ │ ├── ex_cd.c │ │ ├── ex_cmd.c │ │ ├── ex_cscope.c │ │ ├── ex_delete.c │ │ ├── ex_display.c │ │ ├── ex_edit.c │ │ ├── ex_equal.c │ │ ├── ex_file.c │ │ ├── ex_filter.c │ │ ├── ex_global.c │ │ ├── ex_init.c │ │ ├── ex_join.c │ │ ├── ex_map.c │ │ ├── ex_mark.c │ │ ├── ex_mkexrc.c │ │ ├── ex_move.c │ │ ├── ex_open.c │ │ ├── ex_perl.c │ │ ├── ex_preserve.c │ │ ├── ex_print.c │ │ ├── ex_put.c │ │ ├── ex_quit.c │ │ ├── ex_read.c │ │ ├── ex_screen.c │ │ ├── ex_script.c │ │ ├── ex_set.c │ │ ├── ex_shell.c │ │ ├── ex_shift.c │ │ ├── ex_source.c │ │ ├── ex_stop.c │ │ ├── ex_subst.c │ │ ├── ex_tag.c │ │ ├── ex_tcl.c │ │ ├── ex_txt.c │ │ ├── ex_undo.c │ │ ├── ex_usage.c │ │ ├── ex_util.c │ │ ├── ex_version.c │ │ ├── ex_visual.c │ │ ├── ex_write.c │ │ ├── ex_yank.c │ │ ├── ex_z.c │ │ ├── script.h │ │ ├── tag.h │ │ └── version.h │ ├── include │ │ ├── bitstring.h │ │ ├── cl_extern.h │ │ ├── com_extern.h │ │ ├── ex_def.h │ │ ├── ex_extern.h │ │ ├── ip_extern.h │ │ ├── options_def.h │ │ ├── perl_extern.h │ │ ├── tcl_extern.h │ │ ├── tk_extern.h │ │ └── vi_extern.h │ ├── ip │ │ ├── IP_INSTRUCTIONS │ │ ├── ip.h │ │ ├── ip_funcs.c │ │ ├── ip_main.c │ │ ├── ip_read.c │ │ ├── ip_screen.c │ │ ├── ip_term.c │ │ └── tags │ ├── ip_cl │ │ └── Makefile │ ├── perl_api │ │ ├── VI.pod │ │ ├── nviperl.pod │ │ ├── perl.xs │ │ ├── perlsfio.c │ │ ├── tags │ │ └── typemap │ ├── perl_scripts │ │ ├── forall.pl │ │ ├── make.pl │ │ ├── tk.pl │ │ └── wc.pl │ ├── regex │ │ ├── COPYRIGHT │ │ ├── WHATSNEW │ │ ├── cclass.h │ │ ├── cname.h │ │ ├── engine.c │ │ ├── re_format.7 │ │ ├── regcomp.c │ │ ├── regerror.c │ │ ├── regex.3 │ │ ├── regex.h │ │ ├── regex2.h │ │ ├── regexec.c │ │ ├── regfree.c │ │ └── utils.h │ ├── tcl_api │ │ ├── tags │ │ └── tcl.c │ ├── tcl_scripts │ │ ├── errors.tcl │ │ ├── gnats.tcl │ │ ├── mailprocs.tcl │ │ └── wc.tcl │ ├── tk │ │ ├── init.tcl │ │ ├── tk_funcs.c │ │ ├── tk_main.c │ │ ├── tk_read.c │ │ ├── tk_screen.c │ │ ├── tk_term.c │ │ ├── tk_util.c │ │ └── tki.h │ └── vi │ │ ├── getc.c │ │ ├── v_at.c │ │ ├── v_ch.c │ │ ├── v_cmd.c │ │ ├── v_delete.c │ │ ├── v_ex.c │ │ ├── v_increment.c │ │ ├── v_init.c │ │ ├── v_itxt.c │ │ ├── v_left.c │ │ ├── v_mark.c │ │ ├── v_match.c │ │ ├── v_paragraph.c │ │ ├── v_put.c │ │ ├── v_redraw.c │ │ ├── v_replace.c │ │ ├── v_right.c │ │ ├── v_screen.c │ │ ├── v_scroll.c │ │ ├── v_search.c │ │ ├── v_section.c │ │ ├── v_sentence.c │ │ ├── v_status.c │ │ ├── v_txt.c │ │ ├── v_ulcase.c │ │ ├── v_undo.c │ │ ├── v_util.c │ │ ├── v_word.c │ │ ├── v_xchar.c │ │ ├── v_yank.c │ │ ├── v_z.c │ │ ├── v_zexit.c │ │ ├── vi.c │ │ ├── vi.h │ │ ├── vs_line.c │ │ ├── vs_msg.c │ │ ├── vs_refresh.c │ │ ├── vs_relative.c │ │ ├── vs_smap.c │ │ └── vs_split.c ├── openssl │ ├── CA.com │ ├── CA.pl │ ├── CA.pl.in │ ├── CA.sh │ ├── Makefile │ ├── Nmakefile │ ├── app_rand.c │ ├── apps.c │ ├── apps.h │ ├── apps.h.orig │ ├── asn1pars.c │ ├── ca-cert.srl │ ├── ca-key.pem │ ├── ca-req.pem │ ├── ca.c │ ├── cert.pem │ ├── ciphers.c │ ├── client.pem │ ├── cms.c │ ├── crl.c │ ├── crl2p7.c │ ├── demoCA │ │ ├── cacert.pem │ │ ├── index.txt │ │ ├── private │ │ │ └── cakey.pem │ │ └── serial │ ├── dgst.c │ ├── dh.c │ ├── dh1024.pem │ ├── dh2048.pem │ ├── dh4096.pem │ ├── dh512.pem │ ├── dhparam.c │ ├── dsa-ca.pem │ ├── dsa-pca.pem │ ├── dsa.c │ ├── dsa1024.pem │ ├── dsa512.pem │ ├── dsap.pem │ ├── dsaparam.c │ ├── ec.c │ ├── ecparam.c │ ├── enc.c │ ├── engine.c │ ├── errstr.c │ ├── gendh.c │ ├── gendsa.c │ ├── genrsa.c │ ├── install.com │ ├── makeapps.com │ ├── md4.c │ ├── nseq.c │ ├── ocsp.c │ ├── oid.cnf │ ├── openssl-vms.cnf │ ├── openssl.c │ ├── openssl.cnf │ ├── passwd.c │ ├── pca-cert.srl │ ├── pca-key.pem │ ├── pca-req.pem │ ├── pkcs12.c │ ├── pkcs7.c │ ├── pkcs8.c │ ├── prime.c │ ├── privkey.pem │ ├── progs.h │ ├── progs.pl │ ├── rand.c │ ├── req.c │ ├── req.pem │ ├── rsa.c │ ├── rsa8192.pem │ ├── rsautl.c │ ├── s1024key.pem │ ├── s1024req.pem │ ├── s512-key.pem │ ├── s512-req.pem │ ├── s_apps.h │ ├── s_cb.c │ ├── s_client.c │ ├── s_server.c │ ├── s_socket.c │ ├── s_socket.c.orig │ ├── s_time.c │ ├── server.pem │ ├── server.srl │ ├── server2.pem │ ├── sess_id.c │ ├── set │ │ ├── set-g-ca.pem │ │ ├── set-m-ca.pem │ │ ├── set_b_ca.pem │ │ ├── set_c_ca.pem │ │ ├── set_d_ct.pem │ │ └── set_root.pem │ ├── smime.c │ ├── speed.c │ ├── spkac.c │ ├── test │ │ ├── CAss.cnf │ │ ├── CAssdh.cnf │ │ ├── CAssdsa.cnf │ │ ├── CAssrsa.cnf │ │ ├── Makefile │ │ ├── Nmakefile │ │ ├── P1ss.cnf │ │ ├── P2ss.cnf │ │ ├── Sssdsa.cnf │ │ ├── Sssrsa.cnf │ │ ├── Uss.cnf │ │ ├── VMSca-response.1 │ │ ├── VMSca-response.2 │ │ ├── bctest │ │ ├── bftest.c │ │ ├── bftest.c.orig │ │ ├── bntest.c │ │ ├── bntest.c.orig │ │ ├── casttest.c │ │ ├── casttest.c.orig │ │ ├── cms-examples.pl │ │ ├── cms-test.pl │ │ ├── destest.c │ │ ├── dhtest.c │ │ ├── dhtest.c.orig │ │ ├── dsatest.c │ │ ├── dsatest.c.orig │ │ ├── dummytest.c │ │ ├── ecdhtest.c │ │ ├── ecdhtest.c.orig │ │ ├── ecdsatest.c │ │ ├── ectest.c │ │ ├── ectest.c.orig │ │ ├── enginetest.c │ │ ├── evp_test.c │ │ ├── evp_test.c.orig │ │ ├── evptests.txt │ │ ├── exptest.c │ │ ├── exptest.c.orig │ │ ├── hmactest.c │ │ ├── hmactest.c.orig │ │ ├── ideatest.c │ │ ├── ideatest.c.orig │ │ ├── igetest.c │ │ ├── maketests.com │ │ ├── md2test.c │ │ ├── md2test.c.orig │ │ ├── md4test.c │ │ ├── md4test.c.orig │ │ ├── md5test.c │ │ ├── md5test.c.orig │ │ ├── mdc2test.c │ │ ├── methtest.c │ │ ├── pkcs7-1.pem │ │ ├── pkcs7.pem │ │ ├── r160test.c │ │ ├── randtest.c │ │ ├── randtest.c.orig │ │ ├── rc2test.c │ │ ├── rc2test.c.orig │ │ ├── rc4test.c │ │ ├── rc4test.c.orig │ │ ├── rc5test.c │ │ ├── rmdtest.c │ │ ├── rmdtest.c.orig │ │ ├── rsa_test.c │ │ ├── rsa_test.c.orig │ │ ├── sha1test.c │ │ ├── sha1test.c.orig │ │ ├── sha256t.c │ │ ├── sha512t.c │ │ ├── shatest.c │ │ ├── shatest.c.orig │ │ ├── smcont.txt │ │ ├── smime-certs │ │ │ ├── smdsa1.pem │ │ │ ├── smdsa2.pem │ │ │ ├── smdsa3.pem │ │ │ ├── smdsap.pem │ │ │ ├── smroot.pem │ │ │ ├── smrsa1.pem │ │ │ ├── smrsa2.pem │ │ │ └── smrsa3.pem │ │ ├── ssltest.c │ │ ├── ssltest.c.orig │ │ ├── tcrl │ │ ├── tcrl.com │ │ ├── tcrl.sh │ │ ├── test.cnf │ │ ├── testca │ │ ├── testca.com │ │ ├── testcrl.pem │ │ ├── testenc │ │ ├── testenc.com │ │ ├── testenc.sh │ │ ├── testgen │ │ ├── testgen.com │ │ ├── testgen.sh │ │ ├── testp7.pem │ │ ├── testreq2.pem │ │ ├── testrsa.pem │ │ ├── tests.com │ │ ├── testsid.pem │ │ ├── testss │ │ ├── testss.com │ │ ├── testss.sh │ │ ├── testssl │ │ ├── testssl.com │ │ ├── testssl.sh │ │ ├── testsslproxy │ │ ├── testsslproxy.sh │ │ ├── testx509.pem │ │ ├── times │ │ ├── tmp.bctest │ │ ├── tpkcs7 │ │ ├── tpkcs7.com │ │ ├── tpkcs7.sh │ │ ├── tpkcs7d │ │ ├── tpkcs7d.com │ │ ├── tpkcs7d.sh │ │ ├── treq │ │ ├── treq.com │ │ ├── treq.sh │ │ ├── trsa │ │ ├── trsa.com │ │ ├── trsa.sh │ │ ├── tsid │ │ ├── tsid.com │ │ ├── tsid.sh │ │ ├── tverify.com │ │ ├── tx509 │ │ ├── tx509.com │ │ ├── tx509.sh │ │ ├── v3-cert1.pem │ │ └── v3-cert2.pem │ ├── testCA.pem │ ├── testca.pem │ ├── testdsa.h │ ├── testrsa.h │ ├── timeouts.h │ ├── verify.c │ ├── version.c │ ├── winrand.c │ └── x509.c ├── patch │ ├── ChangeLog │ ├── Configure │ ├── EXTERN.h │ ├── INTERN.h │ ├── MANIFEST │ ├── Makefile.SH │ ├── Makefile.nt │ ├── Nmakefile │ ├── README │ ├── backupfile.c │ ├── backupfile.h │ ├── common.h │ ├── config.H │ ├── config.h │ ├── config.h.SH │ ├── config.h.nt │ ├── inp.c │ ├── inp.h │ ├── malloc.c │ ├── patch.c │ ├── patch.man │ ├── patchlevel.h │ ├── pch.c │ ├── pch.h │ ├── util.c │ ├── util.h │ ├── version.c │ ├── version.h │ └── winnt.h ├── rcs │ ├── COPYING │ ├── CREDITS │ ├── ChangeLog │ ├── INSTALL │ ├── INSTALL.RCS │ ├── Makefile.in │ ├── NEWS │ ├── Nmakefile │ ├── README │ ├── REFS │ ├── configure │ ├── configure.in │ ├── install-sh │ ├── man │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile.in │ │ ├── ci.1 │ │ ├── co.1 │ │ ├── ident.1 │ │ ├── merge.1 │ │ ├── rcs.1 │ │ ├── rcsclean.1 │ │ ├── rcsdiff.1 │ │ ├── rcsfile.5 │ │ ├── rcsfile.5in │ │ ├── rcsfreeze.1 │ │ ├── rcsintro.1 │ │ ├── rcsmerge.1 │ │ └── rlog.1 │ ├── mkinstalldirs │ ├── rcs.ms │ ├── rcs_func.ms │ └── src │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile.in │ │ ├── TAGS │ │ ├── ci.c │ │ ├── co.c │ │ ├── conf.heg │ │ ├── conf.sh │ │ ├── ident.c │ │ ├── maketime.c │ │ ├── maketime.h │ │ ├── merge.c │ │ ├── merger.c │ │ ├── partime.c │ │ ├── partime.h │ │ ├── rcs.c │ │ ├── rcsbase.h │ │ ├── rcsclean.c │ │ ├── rcsdiff.c │ │ ├── rcsedit.c │ │ ├── rcsfcmp.c │ │ ├── rcsfnms.c │ │ ├── rcsfreeze.sh │ │ ├── rcsgen.c │ │ ├── rcskeep.c │ │ ├── rcskeys.c │ │ ├── rcslex.c │ │ ├── rcsmap.c │ │ ├── rcsmerge.c │ │ ├── rcsrev.c │ │ ├── rcssyn.c │ │ ├── rcstest │ │ ├── rcstime.c │ │ ├── rcsutil.c │ │ ├── rlog.c │ │ └── version.c ├── rpcgen │ ├── Makefile │ ├── Nmakefile │ ├── rpc_clntout.c │ ├── rpc_cout.c │ ├── rpc_hout.c │ ├── rpc_main.c │ ├── rpc_parse.c │ ├── rpc_parse.h │ ├── rpc_sample.c │ ├── rpc_scan.c │ ├── rpc_scan.h │ ├── rpc_svcout.c │ ├── rpc_tblout.c │ ├── rpc_util.c │ ├── rpc_util.h │ └── rpcgen.1 ├── scripts │ ├── Makefile │ ├── RELEASE │ ├── XWin │ ├── Xrun.sh │ ├── adduser.sh │ ├── ar.sh │ ├── at │ ├── cd.sh │ ├── chsh.sh │ ├── clear.sh │ ├── command.sh │ ├── dircmp.sh │ ├── doclist │ ├── env.sh │ ├── exception.sh │ ├── false.sh │ ├── ffind.sh │ ├── group.add │ ├── groups.sh │ ├── inetdconfig.sh │ ├── install.sh │ ├── ld_r.sh │ ├── line.sh │ ├── logstat.sh │ ├── lorder.sh │ ├── man.sh │ ├── mkadmin.sh │ ├── mkdeffile.sh │ ├── mkexec.c │ ├── mkexec.sh │ ├── mkimplib.sh │ ├── mkman.sh │ ├── mkmsvcrtlib.sh │ ├── mksymtab.sh │ ├── msvcrt.tab │ ├── nohup.sh │ ├── passwd.add │ ├── profile │ ├── rc │ ├── restart_uwin.sh │ ├── sshd │ ├── stdinstall.sh │ ├── stop_uwin.sh │ ├── tipofday.sh │ ├── tips │ ├── traceit.sh │ ├── true.sh │ ├── vc.sh │ ├── webbrowser.sh │ └── which.sh ├── ssh │ ├── .cvsignore │ ├── CREDITS │ ├── ChangeLog │ ├── INSTALL │ ├── LICENCE │ ├── Makefile.in │ ├── Nmakefile │ ├── OVERVIEW │ ├── README │ ├── README.dns │ ├── README.platform │ ├── README.privsep │ ├── README.smartcard │ ├── README.tun │ ├── RELEASE │ ├── RFC.nroff │ ├── TODO │ ├── WARNING.RNG │ ├── aclocal.m4 │ ├── acss.c │ ├── acss.h │ ├── atomicio.c │ ├── atomicio.h │ ├── audit-bsm.c │ ├── audit.c │ ├── audit.h │ ├── auth-bsdauth.c │ ├── auth-chall.c │ ├── auth-krb5.c │ ├── auth-options.c │ ├── auth-options.h │ ├── auth-pam.c │ ├── auth-pam.h │ ├── auth-passwd.c │ ├── auth-rh-rsa.c │ ├── auth-rhosts.c │ ├── auth-rsa.c │ ├── auth-shadow.c │ ├── auth-sia.c │ ├── auth-sia.h │ ├── auth-skey.c │ ├── auth.c │ ├── auth.h │ ├── auth1.c │ ├── auth2-chall.c │ ├── auth2-gss.c │ ├── auth2-hostbased.c │ ├── auth2-kbdint.c │ ├── auth2-none.c │ ├── auth2-passwd.c │ ├── auth2-pubkey.c │ ├── auth2.c │ ├── authfd.c │ ├── authfd.h │ ├── authfile.c │ ├── authfile.h │ ├── bufaux.c │ ├── bufaux.h │ ├── buffer.c │ ├── buffer.h │ ├── buildpkg.sh.in │ ├── canohost.c │ ├── canohost.h │ ├── channels.c │ ├── channels.h │ ├── cipher-3des1.c │ ├── cipher-acss.c │ ├── cipher-aes.c │ ├── cipher-bf1.c │ ├── cipher-ctr.c │ ├── cipher.c │ ├── cipher.h │ ├── cleanup.c │ ├── clientloop.c │ ├── clientloop.h │ ├── compat.c │ ├── compat.h │ ├── compress.c │ ├── compress.h │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── contrib │ │ ├── Makefile │ │ ├── README │ │ ├── aix │ │ │ ├── README │ │ │ ├── buildbff.sh │ │ │ ├── inventory.sh │ │ │ └── pam.conf │ │ ├── caldera │ │ │ ├── openssh.spec │ │ │ ├── ssh-host-keygen │ │ │ ├── sshd.init │ │ │ └── sshd.pam │ │ ├── cygwin │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ssh-host-config │ │ │ └── ssh-user-config │ │ ├── findssl.sh │ │ ├── gnome-ssh-askpass1.c │ │ ├── gnome-ssh-askpass2.c │ │ ├── hpux │ │ │ ├── README │ │ │ ├── egd │ │ │ ├── egd.rc │ │ │ ├── sshd │ │ │ └── sshd.rc │ │ ├── redhat │ │ │ ├── gnome-ssh-askpass.csh │ │ │ ├── gnome-ssh-askpass.sh │ │ │ ├── openssh.spec │ │ │ ├── sshd.init │ │ │ ├── sshd.init.old │ │ │ ├── sshd.pam │ │ │ └── sshd.pam.old │ │ ├── solaris │ │ │ └── README │ │ ├── ssh-copy-id.1 │ │ ├── ssh-copy-id.sh │ │ ├── sshd.pam.freebsd │ │ ├── sshd.pam.generic │ │ └── suse │ │ │ ├── openssh.spec │ │ │ ├── rc.config.sshd │ │ │ ├── rc.sshd │ │ │ └── sysconfig.ssh │ ├── crc32.c │ ├── crc32.h │ ├── deattack.c │ ├── deattack.h │ ├── defines.h │ ├── dh.c │ ├── dh.h │ ├── dispatch.c │ ├── dispatch.h │ ├── dns.c │ ├── dns.h │ ├── dummy.c │ ├── entropy.c │ ├── entropy.h │ ├── fatal.c │ ├── fixpaths │ ├── fixprogs │ ├── getput.h │ ├── groupaccess.c │ ├── groupaccess.h │ ├── gss-genr.c │ ├── gss-serv-krb5.c │ ├── gss-serv.c │ ├── hostfile.c │ ├── hostfile.h │ ├── includes.h │ ├── install-sh │ ├── kex.c │ ├── kex.h │ ├── kexdh.c │ ├── kexdhc.c │ ├── kexdhs.c │ ├── kexgex.c │ ├── kexgexc.c │ ├── kexgexs.c │ ├── key.c │ ├── key.h │ ├── log.c │ ├── log.h │ ├── loginrec.c │ ├── loginrec.h │ ├── logintest.c │ ├── mac.c │ ├── mac.h │ ├── match.c │ ├── match.h │ ├── md5crypt.c │ ├── md5crypt.h │ ├── mdoc2man.awk │ ├── misc.c │ ├── misc.h │ ├── mkinstalldirs │ ├── moduli.c │ ├── moduli.in │ ├── monitor.c │ ├── monitor.h │ ├── monitor_fdpass.c │ ├── monitor_fdpass.h │ ├── monitor_mm.c │ ├── monitor_mm.h │ ├── monitor_wrap.c │ ├── monitor_wrap.h │ ├── msg.c │ ├── msg.h │ ├── myproposal.h │ ├── nchan.c │ ├── openbsd-compat │ │ ├── .cvsignore │ │ ├── Makefile.in │ │ ├── base64.c │ │ ├── base64.h │ │ ├── basename.c │ │ ├── bindresvport.c │ │ ├── bsd-arc4random.c │ │ ├── bsd-asprintf.c │ │ ├── bsd-closefrom.c │ │ ├── bsd-cray.c │ │ ├── bsd-cray.h │ │ ├── bsd-cygwin_util.c │ │ ├── bsd-cygwin_util.h │ │ ├── bsd-getpeereid.c │ │ ├── bsd-misc.c │ │ ├── bsd-misc.h │ │ ├── bsd-nextstep.c │ │ ├── bsd-nextstep.h │ │ ├── bsd-openpty.c │ │ ├── bsd-snprintf.c │ │ ├── bsd-waitpid.c │ │ ├── bsd-waitpid.h │ │ ├── daemon.c │ │ ├── dirname.c │ │ ├── fake-rfc2553.c │ │ ├── fake-rfc2553.h │ │ ├── getcwd.c │ │ ├── getgrouplist.c │ │ ├── getopt.c │ │ ├── getrrsetbyname.c │ │ ├── getrrsetbyname.h │ │ ├── glob.c │ │ ├── glob.h │ │ ├── inet_aton.c │ │ ├── inet_ntoa.c │ │ ├── inet_ntop.c │ │ ├── mktemp.c │ │ ├── openbsd-compat.h │ │ ├── openssl-compat.c │ │ ├── openssl-compat.h │ │ ├── port-aix.c │ │ ├── port-aix.h │ │ ├── port-irix.c │ │ ├── port-irix.h │ │ ├── port-tun.c │ │ ├── port-tun.h │ │ ├── port-uw.c │ │ ├── port-uw.h │ │ ├── readpassphrase.c │ │ ├── readpassphrase.h │ │ ├── realpath.c │ │ ├── rresvport.c │ │ ├── setenv.c │ │ ├── setproctitle.c │ │ ├── sigact.c │ │ ├── sigact.h │ │ ├── strlcat.c │ │ ├── strlcpy.c │ │ ├── strmode.c │ │ ├── strsep.c │ │ ├── strtoll.c │ │ ├── strtonum.c │ │ ├── strtoul.c │ │ ├── sys-queue.h │ │ ├── sys-tree.h │ │ ├── vis.c │ │ ├── vis.h │ │ ├── xcrypt.c │ │ └── xmmap.c │ ├── opensshd.init.in │ ├── packet.c │ ├── packet.h │ ├── pathnames.h │ ├── progressmeter.c │ ├── progressmeter.h │ ├── readconf.c │ ├── readconf.h │ ├── readpass.c │ ├── regress │ │ ├── Makefile │ │ ├── README.regress │ │ ├── agent-getpeereid.sh │ │ ├── agent-ptrace.sh │ │ ├── agent-timeout.sh │ │ ├── agent.sh │ │ ├── banner.sh │ │ ├── broken-pipe.sh │ │ ├── brokenkeys.sh │ │ ├── bsd.regress.mk │ │ ├── connect-privsep.sh │ │ ├── connect.sh │ │ ├── dsa_ssh2.prv │ │ ├── dsa_ssh2.pub │ │ ├── dynamic-forward.sh │ │ ├── envpass.sh │ │ ├── exit-status.sh │ │ ├── forwarding.sh │ │ ├── keygen-change.sh │ │ ├── keyscan.sh │ │ ├── login-timeout.sh │ │ ├── multiplex.sh │ │ ├── proto-mismatch.sh │ │ ├── proto-version.sh │ │ ├── proxy-connect.sh │ │ ├── reconfigure.sh │ │ ├── reexec.sh │ │ ├── rekey.sh │ │ ├── rsa_openssh.prv │ │ ├── rsa_openssh.pub │ │ ├── rsa_ssh2.prv │ │ ├── runtests.sh │ │ ├── scp-ssh-wrapper.sh │ │ ├── scp.sh │ │ ├── sftp-badcmds.sh │ │ ├── sftp-batch.sh │ │ ├── sftp-cmds.sh │ │ ├── sftp-glob.sh │ │ ├── sftp.sh │ │ ├── ssh-com-client.sh │ │ ├── ssh-com-keygen.sh │ │ ├── ssh-com-sftp.sh │ │ ├── ssh-com.sh │ │ ├── sshd-log-wrapper.sh │ │ ├── stderr-after-eof.sh │ │ ├── stderr-data.sh │ │ ├── t4.ok │ │ ├── t5.ok │ │ ├── test-exec.sh │ │ ├── transfer.sh │ │ ├── try-ciphers.sh │ │ └── yes-head.sh │ ├── rijndael.c │ ├── rijndael.h │ ├── rsa.c │ ├── rsa.h │ ├── scard-opensc.c │ ├── scard.c │ ├── scard.h │ ├── scard │ │ ├── .cvsignore │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Ssh.bin │ │ ├── Ssh.bin.uu │ │ └── Ssh.java │ ├── scp.0 │ ├── scp.1 │ ├── scp.c │ ├── servconf.c │ ├── servconf.h │ ├── serverloop.c │ ├── serverloop.h │ ├── session.c │ ├── session.h │ ├── sftp-client.c │ ├── sftp-client.h │ ├── sftp-common.c │ ├── sftp-common.h │ ├── sftp-glob.c │ ├── sftp-server.0 │ ├── sftp-server.8 │ ├── sftp-server.c │ ├── sftp.0 │ ├── sftp.1 │ ├── sftp.c │ ├── sftp.h │ ├── ssh-add.0 │ ├── ssh-add.1 │ ├── ssh-add.c │ ├── ssh-agent.0 │ ├── ssh-agent.1 │ ├── ssh-agent.c │ ├── ssh-dss.c │ ├── ssh-gss.h │ ├── ssh-keygen.0 │ ├── ssh-keygen.1 │ ├── ssh-keygen.c │ ├── ssh-keyscan.0 │ ├── ssh-keyscan.1 │ ├── ssh-keyscan.c │ ├── ssh-keysign.0 │ ├── ssh-keysign.8 │ ├── ssh-keysign.c │ ├── ssh-rand-helper.0 │ ├── ssh-rand-helper.8 │ ├── ssh-rand-helper.c │ ├── ssh-rsa.c │ ├── ssh.0 │ ├── ssh.1 │ ├── ssh.c │ ├── ssh.h │ ├── ssh1.h │ ├── ssh2.h │ ├── ssh_config │ ├── ssh_config.0 │ ├── ssh_config.5 │ ├── ssh_prng_cmds.in │ ├── sshconnect.c │ ├── sshconnect.h │ ├── sshconnect1.c │ ├── sshconnect2.c │ ├── sshd.0 │ ├── sshd.8 │ ├── sshd.c │ ├── sshd_config │ ├── sshd_config.0 │ ├── sshd_config.5 │ ├── sshlogin.c │ ├── sshlogin.h │ ├── sshpty.c │ ├── sshpty.h │ ├── sshtty.c │ ├── survey.sh.in │ ├── trace.c │ ├── ttymodes.c │ ├── ttymodes.h │ ├── uidswap.c │ ├── uidswap.h │ ├── uuencode.c │ ├── uuencode.h │ ├── version.h │ ├── xmalloc.c │ └── xmalloc.h ├── tcsh │ ├── FAQ │ ├── Fixes │ ├── Imakefile │ ├── MAKEDIFFS │ ├── MAKESHAR │ ├── Makefile.in │ ├── Makefile.std │ ├── Makefile.vms │ ├── NewThings │ ├── Nmakefile │ ├── Ported │ ├── README │ ├── README.imake │ ├── WishList │ ├── complete.tcsh │ ├── config.guess │ ├── config.iffe │ ├── config │ │ ├── aix │ │ ├── alliant │ │ ├── amdahl │ │ ├── apollo │ │ ├── bsd │ │ ├── bsd4.4 │ │ ├── bsdreno │ │ ├── clipper │ │ ├── coh3 │ │ ├── convex │ │ ├── cray │ │ ├── csos │ │ ├── decosf1 │ │ ├── dgux │ │ ├── dgux5.4 │ │ ├── dnix5.3 │ │ ├── emx │ │ ├── eta10 │ │ ├── ews │ │ ├── fortune │ │ ├── fps500 │ │ ├── hcx │ │ ├── hk68 │ │ ├── hp-3.2 │ │ ├── hp-5.2 │ │ ├── hpbsd2 │ │ ├── hposf1 │ │ ├── hpux7 │ │ ├── hpux8 │ │ ├── iconuxv │ │ ├── intel │ │ ├── isc202 │ │ ├── isc3.0 │ │ ├── isc4.0 │ │ ├── linux │ │ ├── lynx2.1 │ │ ├── mac2 │ │ ├── mach │ │ ├── masscomp │ │ ├── minix │ │ ├── mips │ │ ├── mtXinu │ │ ├── opus │ │ ├── osf1 │ │ ├── parosf1 │ │ ├── pyr │ │ ├── sco+odt │ │ ├── sco32v2 │ │ ├── sequent │ │ ├── sgi │ │ ├── sol2 │ │ ├── sol22 │ │ ├── sol23 │ │ ├── sol24 │ │ ├── stellar │ │ ├── sunos35 │ │ ├── sunos40 │ │ ├── sunos41 │ │ ├── sunos413 │ │ ├── supermax │ │ ├── sxa │ │ ├── sysV68 │ │ ├── sysV88 │ │ ├── sysv │ │ ├── sysv2 │ │ ├── sysv3 │ │ ├── sysv4 │ │ ├── tc2000 │ │ ├── tekXD88 │ │ ├── ultrix │ │ ├── unixpc │ │ ├── vms │ │ └── xenix │ ├── config_f.h │ ├── configure │ ├── configure.in │ ├── ed.chared.c │ ├── ed.decls.h │ ├── ed.defns.c │ ├── ed.h │ ├── ed.init.c │ ├── ed.inputl.c │ ├── ed.refresh.c │ ├── ed.screen.c │ ├── ed.term.c │ ├── ed.term.h │ ├── ed.xmap.c │ ├── eight-bit.me │ ├── gethost.c │ ├── glob.3 │ ├── glob.c │ ├── glob.h │ ├── host.defs │ ├── imake.config │ ├── ma.setp.c │ ├── mi.termios.c │ ├── mi.varargs.h │ ├── mi.wait.h │ ├── nls │ │ ├── C │ │ │ ├── set1 │ │ │ ├── set10 │ │ │ ├── set11 │ │ │ ├── set12 │ │ │ ├── set13 │ │ │ ├── set14 │ │ │ ├── set15 │ │ │ ├── set16 │ │ │ ├── set17 │ │ │ ├── set18 │ │ │ ├── set19 │ │ │ ├── set2 │ │ │ ├── set20 │ │ │ ├── set21 │ │ │ ├── set22 │ │ │ ├── set23 │ │ │ ├── set24 │ │ │ ├── set25 │ │ │ ├── set26 │ │ │ ├── set27 │ │ │ ├── set29 │ │ │ ├── set3 │ │ │ ├── set30 │ │ │ ├── set31 │ │ │ ├── set4 │ │ │ ├── set5 │ │ │ ├── set6 │ │ │ ├── set7 │ │ │ ├── set8 │ │ │ └── set9 │ │ ├── Makefile │ │ ├── french │ │ │ ├── set1 │ │ │ ├── set10 │ │ │ ├── set11 │ │ │ ├── set12 │ │ │ ├── set13 │ │ │ ├── set14 │ │ │ ├── set15 │ │ │ ├── set16 │ │ │ ├── set17 │ │ │ ├── set18 │ │ │ ├── set19 │ │ │ ├── set2 │ │ │ ├── set20 │ │ │ ├── set21 │ │ │ ├── set22 │ │ │ ├── set23 │ │ │ ├── set24 │ │ │ ├── set25 │ │ │ ├── set26 │ │ │ ├── set27 │ │ │ ├── set29 │ │ │ ├── set3 │ │ │ ├── set30 │ │ │ ├── set31 │ │ │ ├── set4 │ │ │ ├── set5 │ │ │ ├── set6 │ │ │ ├── set7 │ │ │ ├── set8 │ │ │ └── set9 │ │ ├── german │ │ │ ├── set1 │ │ │ ├── set10 │ │ │ ├── set11 │ │ │ ├── set12 │ │ │ ├── set13 │ │ │ ├── set14 │ │ │ ├── set15 │ │ │ ├── set16 │ │ │ ├── set17 │ │ │ ├── set18 │ │ │ ├── set19 │ │ │ ├── set2 │ │ │ ├── set20 │ │ │ ├── set21 │ │ │ ├── set22 │ │ │ ├── set23 │ │ │ ├── set24 │ │ │ ├── set25 │ │ │ ├── set26 │ │ │ ├── set27 │ │ │ ├── set29 │ │ │ ├── set3 │ │ │ ├── set30 │ │ │ ├── set31 │ │ │ ├── set4 │ │ │ ├── set5 │ │ │ ├── set6 │ │ │ ├── set7 │ │ │ ├── set8 │ │ │ └── set9 │ │ └── greek │ │ │ ├── set1 │ │ │ ├── set10 │ │ │ ├── set11 │ │ │ ├── set12 │ │ │ ├── set13 │ │ │ ├── set14 │ │ │ ├── set15 │ │ │ ├── set16 │ │ │ ├── set17 │ │ │ ├── set18 │ │ │ ├── set19 │ │ │ ├── set2 │ │ │ ├── set20 │ │ │ ├── set21 │ │ │ ├── set22 │ │ │ ├── set23 │ │ │ ├── set24 │ │ │ ├── set25 │ │ │ ├── set26 │ │ │ ├── set27 │ │ │ ├── set29 │ │ │ ├── set3 │ │ │ ├── set30 │ │ │ ├── set31 │ │ │ ├── set4 │ │ │ ├── set5 │ │ │ ├── set6 │ │ │ ├── set7 │ │ │ ├── set8 │ │ │ └── set9 │ ├── patchlevel.h │ ├── pathnames.h │ ├── sh.c │ ├── sh.char.c │ ├── sh.char.h │ ├── sh.decls.h │ ├── sh.dir.c │ ├── sh.dir.h │ ├── sh.dol.c │ ├── sh.err.c │ ├── sh.exec.c │ ├── sh.exp.c │ ├── sh.file.c │ ├── sh.func.c │ ├── sh.glob.c │ ├── sh.h │ ├── sh.hist.c │ ├── sh.init.c │ ├── sh.lex.c │ ├── sh.misc.c │ ├── sh.parse.c │ ├── sh.print.c │ ├── sh.proc.c │ ├── sh.proc.h │ ├── sh.sem.c │ ├── sh.set.c │ ├── sh.time.c │ ├── sh.types.h │ ├── snames.h │ ├── src.desc │ ├── tc.alloc.c │ ├── tc.bind.c │ ├── tc.const.c │ ├── tc.decls.h │ ├── tc.disc.c │ ├── tc.func.c │ ├── tc.h │ ├── tc.os.c │ ├── tc.os.h │ ├── tc.printf.c │ ├── tc.prompt.c │ ├── tc.sched.c │ ├── tc.sig.c │ ├── tc.sig.h │ ├── tc.str.c │ ├── tc.vers.c │ ├── tc.wait.h │ ├── tc.who.c │ ├── tcsh.man │ ├── tcsh.man2html │ ├── termcap.vms │ ├── tw.comp.c │ ├── tw.decls.h │ ├── tw.h │ ├── tw.help.c │ ├── tw.init.c │ ├── tw.parse.c │ ├── tw.spell.c │ ├── vms.termcap.c │ └── vmsreadme.txt ├── tic │ ├── Makefile │ ├── compiler.h │ ├── curses_inc.h │ ├── curshdr.h │ ├── object.h │ ├── terminfo.src │ ├── tic.1 │ ├── tic_captab.c │ ├── tic_error.c │ ├── tic_hash.c │ ├── tic_main.c │ ├── tic_parse.c │ ├── tic_read.c │ └── tic_scan.c ├── trace │ ├── Makefile │ ├── RELEASE │ ├── lib.tab │ ├── trace.c │ ├── trace.tab │ ├── tracedll.c │ ├── tracehdr.gen │ ├── tracelib.h │ └── tracesym.h ├── wget │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── ChangeLog.README │ ├── DISTFILES │ ├── INSTALL │ ├── MAILING-LIST │ ├── NEWS │ ├── Nmakefile │ ├── README │ ├── autogen.sh │ ├── config.guess │ ├── config.h │ ├── config.rpath │ ├── config.sub │ ├── configure │ ├── configure.bat │ ├── configure.in │ ├── doc │ │ ├── ChangeLog │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── fdl.texi │ │ ├── sample.wgetrc │ │ ├── sample.wgetrc.munged_for_texi_inclusion │ │ ├── texi2pod.pl │ │ ├── texinfo.tex │ │ ├── version.texi │ │ ├── wget.1 │ │ ├── wget.info │ │ ├── wget.pod │ │ └── wget.texi │ ├── install-sh │ ├── m4 │ │ ├── lib-ld.m4 │ │ ├── lib-link.m4 │ │ ├── lib-prefix.m4 │ │ └── wget.m4 │ ├── mkinstalldirs │ ├── msdos │ │ ├── ChangeLog │ │ ├── Makefile.DJ │ │ ├── Makefile.WC │ │ └── config.h │ ├── po │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefile.in.in │ │ ├── POTFILES │ │ ├── POTFILES.in │ │ ├── be.po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── el.po │ │ ├── en_GB.po │ │ ├── eo.po │ │ ├── es.po │ │ ├── et.po │ │ ├── eu.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── ga.po │ │ ├── gl.po │ │ ├── he.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── id.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── nb.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sk.po │ │ ├── sl.po │ │ ├── sr.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── wget.pot │ │ ├── zh_CN.po │ │ └── zh_TW.po │ ├── src │ │ ├── cmpt.c │ │ ├── config-post.h │ │ ├── connect.c │ │ ├── connect.h │ │ ├── convert.c │ │ ├── convert.h │ │ ├── cookies.c │ │ ├── cookies.h │ │ ├── ftp-basic.c │ │ ├── ftp-ls.c │ │ ├── ftp-opie.c │ │ ├── ftp.c │ │ ├── ftp.h │ │ ├── gen-md5.c │ │ ├── gen-md5.h │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── gnu-md5.c │ │ ├── gnu-md5.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── host.c │ │ ├── host.h │ │ ├── html-parse.c │ │ ├── html-parse.h │ │ ├── html-url.c │ │ ├── http-ntlm.h │ │ ├── http.c │ │ ├── http.h │ │ ├── init.c │ │ ├── init.h │ │ ├── log.c │ │ ├── log.h │ │ ├── main.c │ │ ├── mswindows.h │ │ ├── netrc.c │ │ ├── netrc.h │ │ ├── openssl.c │ │ ├── options.h │ │ ├── progress.c │ │ ├── progress.h │ │ ├── ptimer.c │ │ ├── ptimer.h │ │ ├── recur.c │ │ ├── recur.h │ │ ├── res.c │ │ ├── res.h │ │ ├── retr.c │ │ ├── retr.h │ │ ├── safe-ctype.c │ │ ├── safe-ctype.h │ │ ├── snprintf.c │ │ ├── spider.c │ │ ├── spider.h │ │ ├── ssl.h │ │ ├── sysdep.h │ │ ├── test.h │ │ ├── url.c │ │ ├── url.h │ │ ├── utils.c │ │ ├── utils.h │ │ ├── version.c │ │ ├── wget.h │ │ ├── xmalloc.c │ │ └── xmalloc.h │ ├── tests │ │ ├── ChangeLog │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Nmakefile │ │ ├── README │ │ ├── Test--no-content-disposition-trivial.px │ │ ├── Test--no-content-disposition.px │ │ ├── Test--spider--no-content-disposition-trivial.px │ │ ├── Test--spider--no-content-disposition.px │ │ ├── Test--spider-HTTP-Content-Disposition.px │ │ ├── Test--spider-fail.px │ │ ├── Test--spider-r--no-content-disposition-trivial.px │ │ ├── Test--spider-r--no-content-disposition.px │ │ ├── Test--spider-r-HTTP-Content-Disposition.px │ │ ├── Test--spider-r.px │ │ ├── Test--spider.px │ │ ├── Test-E-k-K.px │ │ ├── Test-E-k.px │ │ ├── Test-HTTP-Content-Disposition-1.px │ │ ├── Test-HTTP-Content-Disposition-2.px │ │ ├── Test-HTTP-Content-Disposition.px │ │ ├── Test-N--no-content-disposition-trivial.px │ │ ├── Test-N--no-content-disposition.px │ │ ├── Test-N-HTTP-Content-Disposition.px │ │ ├── Test-N-current.px │ │ ├── Test-N-old.px │ │ ├── Test-N.px │ │ ├── Test-O--no-content-disposition-trivial.px │ │ ├── Test-O--no-content-disposition.px │ │ ├── Test-O-HTTP-Content-Disposition.px │ │ ├── Test-O-nonexisting.px │ │ ├── Test-O.px │ │ ├── Test-Restrict-Lowercase.px │ │ ├── Test-Restrict-Uppercase.px │ │ ├── Test-auth-basic.px │ │ ├── Test-c-full.px │ │ ├── Test-c-partial.px │ │ ├── Test-c.px │ │ ├── Test-ftp.px │ │ ├── Test-ftp │ │ │ └── output │ │ │ │ └── afile.txt │ │ ├── Test-nonexisting-quiet.px │ │ ├── Test-noop.px │ │ ├── Test-np.px │ │ ├── WgetTest.pm.in │ │ └── inc │ │ │ ├── FTPServer.pm │ │ │ ├── FTPTest.pm │ │ │ ├── HTTP │ │ │ ├── Daemon.pm │ │ │ ├── Date.pm │ │ │ ├── Headers.pm │ │ │ ├── Message.pm │ │ │ ├── Request.pm │ │ │ ├── Response.pm │ │ │ ├── Status.pm │ │ │ └── URI.pm │ │ │ ├── HTTPServer.pm │ │ │ ├── HTTPTest.pm │ │ │ ├── LWP │ │ │ ├── Debug.pm │ │ │ └── MediaTypes.pm │ │ │ ├── Regexp │ │ │ ├── Common.pm │ │ │ └── Common │ │ │ │ ├── URI.pm │ │ │ │ └── URI │ │ │ │ ├── RFC1035.pm │ │ │ │ ├── RFC1738.pm │ │ │ │ ├── RFC1808.pm │ │ │ │ ├── RFC2384.pm │ │ │ │ ├── RFC2396.pm │ │ │ │ ├── RFC2806.pm │ │ │ │ ├── fax.pm │ │ │ │ ├── file.pm │ │ │ │ ├── ftp.pm │ │ │ │ ├── gopher.pm │ │ │ │ ├── http.pm │ │ │ │ ├── news.pm │ │ │ │ ├── pop.pm │ │ │ │ ├── prospero.pm │ │ │ │ ├── tel.pm │ │ │ │ ├── telnet.pm │ │ │ │ ├── tv.pm │ │ │ │ └── wais.pm │ │ │ ├── URI.pm │ │ │ └── WgetTest.pm │ ├── util │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ └── rmold.pl │ └── windows │ │ ├── ChangeLog │ │ ├── Makefile │ │ ├── Makefile.doc │ │ ├── Makefile.in │ │ ├── Makefile.src │ │ ├── Makefile.src.bor │ │ ├── Makefile.src.mingw │ │ ├── Makefile.top │ │ ├── Makefile.top.bor │ │ ├── Makefile.top.mingw │ │ ├── README │ │ ├── config-compiler.h │ │ └── config.h └── yacc │ ├── Makefile │ ├── NO_WARRANTY │ ├── README │ ├── closure.c │ ├── defs.h │ ├── error.c │ ├── lalr.c │ ├── lr0.c │ ├── main.c │ ├── mkpar.c │ ├── output.c │ ├── reader.c │ ├── skeleton.c │ ├── symtab.c │ ├── verbose.c │ ├── warshall.c │ └── yacc.1 ├── lib ├── Makefile ├── Mamfile ├── libcrypto │ ├── Nmakefile │ ├── Nmakefile.old │ ├── buildinf.h │ ├── crypto.def │ ├── crypto │ │ ├── LPdir_nyi.c │ │ ├── LPdir_unix.c │ │ ├── LPdir_vms.c │ │ ├── LPdir_win.c │ │ ├── LPdir_win32.c │ │ ├── LPdir_wince.c │ │ ├── Makefile │ │ ├── aes │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── aes.h │ │ │ ├── aes_cbc.c │ │ │ ├── aes_cfb.c │ │ │ ├── aes_core.c │ │ │ ├── aes_ctr.c │ │ │ ├── aes_ecb.c │ │ │ ├── aes_ige.c │ │ │ ├── aes_locl.h │ │ │ ├── aes_misc.c │ │ │ ├── aes_ofb.c │ │ │ ├── aes_wrap.c │ │ │ └── asm │ │ │ │ ├── aes-586.pl │ │ │ │ ├── aes-ia64.S │ │ │ │ └── aes-x86_64.pl │ │ ├── asn1 │ │ │ ├── Makefile │ │ │ ├── a_bitstr.c │ │ │ ├── a_bool.c │ │ │ ├── a_bytes.c │ │ │ ├── a_d2i_fp.c │ │ │ ├── a_digest.c │ │ │ ├── a_dup.c │ │ │ ├── a_enum.c │ │ │ ├── a_gentm.c │ │ │ ├── a_hdr.c │ │ │ ├── a_i2d_fp.c │ │ │ ├── a_int.c │ │ │ ├── a_mbstr.c │ │ │ ├── a_meth.c │ │ │ ├── a_object.c │ │ │ ├── a_octet.c │ │ │ ├── a_print.c │ │ │ ├── a_set.c │ │ │ ├── a_sign.c │ │ │ ├── a_strex.c │ │ │ ├── a_strnid.c │ │ │ ├── a_time.c │ │ │ ├── a_type.c │ │ │ ├── a_utctm.c │ │ │ ├── a_utf8.c │ │ │ ├── a_verify.c │ │ │ ├── asn1.h │ │ │ ├── asn1_err.c │ │ │ ├── asn1_gen.c │ │ │ ├── asn1_lib.c │ │ │ ├── asn1_mac.h │ │ │ ├── asn1_par.c │ │ │ ├── asn1t.h │ │ │ ├── asn_mime.c │ │ │ ├── asn_moid.c │ │ │ ├── asn_pack.c │ │ │ ├── charmap.h │ │ │ ├── charmap.pl │ │ │ ├── d2i_pr.c │ │ │ ├── d2i_pu.c │ │ │ ├── evp_asn1.c │ │ │ ├── f_enum.c │ │ │ ├── f_int.c │ │ │ ├── f_string.c │ │ │ ├── i2d_pr.c │ │ │ ├── i2d_pu.c │ │ │ ├── n_pkey.c │ │ │ ├── nsseq.c │ │ │ ├── p5_pbe.c │ │ │ ├── p5_pbev2.c │ │ │ ├── p8_key.c │ │ │ ├── p8_key.c.orig │ │ │ ├── p8_pkey.c │ │ │ ├── t_bitst.c │ │ │ ├── t_crl.c │ │ │ ├── t_pkey.c │ │ │ ├── t_req.c │ │ │ ├── t_spki.c │ │ │ ├── t_x509.c │ │ │ ├── t_x509a.c │ │ │ ├── tasn_dec.c │ │ │ ├── tasn_enc.c │ │ │ ├── tasn_fre.c │ │ │ ├── tasn_new.c │ │ │ ├── tasn_prn.c │ │ │ ├── tasn_typ.c │ │ │ ├── tasn_utl.c │ │ │ ├── x_algor.c │ │ │ ├── x_attrib.c │ │ │ ├── x_bignum.c │ │ │ ├── x_crl.c │ │ │ ├── x_exten.c │ │ │ ├── x_info.c │ │ │ ├── x_long.c │ │ │ ├── x_name.c │ │ │ ├── x_pkey.c │ │ │ ├── x_pubkey.c │ │ │ ├── x_req.c │ │ │ ├── x_sig.c │ │ │ ├── x_spki.c │ │ │ ├── x_val.c │ │ │ ├── x_x509.c │ │ │ └── x_x509a.c │ │ ├── bf │ │ │ ├── COPYRIGHT │ │ │ ├── INSTALL │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── asm │ │ │ │ ├── bf-586.pl │ │ │ │ ├── bf-686.pl │ │ │ │ └── readme │ │ │ ├── bf_cbc.c │ │ │ ├── bf_cfb64.c │ │ │ ├── bf_ecb.c │ │ │ ├── bf_enc.c │ │ │ ├── bf_locl.h │ │ │ ├── bf_ofb64.c │ │ │ ├── bf_opts.c │ │ │ ├── bf_pi.h │ │ │ ├── bf_skey.c │ │ │ ├── bfs.cpp │ │ │ ├── bfspeed.c │ │ │ ├── bftest.c │ │ │ └── blowfish.h │ │ ├── bio │ │ │ ├── Makefile │ │ │ ├── b_dump.c │ │ │ ├── b_print.c │ │ │ ├── b_sock.c │ │ │ ├── bf_buff.c │ │ │ ├── bf_lbuf.c │ │ │ ├── bf_nbio.c │ │ │ ├── bf_null.c │ │ │ ├── bio.h │ │ │ ├── bio_cb.c │ │ │ ├── bio_err.c │ │ │ ├── bio_lcl.h │ │ │ ├── bio_lib.c │ │ │ ├── bss_acpt.c │ │ │ ├── bss_bio.c │ │ │ ├── bss_conn.c │ │ │ ├── bss_dgram.c │ │ │ ├── bss_fd.c │ │ │ ├── bss_file.c │ │ │ ├── bss_log.c │ │ │ ├── bss_mem.c │ │ │ ├── bss_null.c │ │ │ ├── bss_rtcp.c │ │ │ └── bss_sock.c │ │ ├── bn │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── README │ │ │ │ ├── bn-586.pl │ │ │ │ ├── co-586.pl │ │ │ │ ├── ia64.S │ │ │ │ ├── mips3.s │ │ │ │ ├── mo-586.pl │ │ │ │ ├── pa-risc2.s │ │ │ │ ├── pa-risc2W.s │ │ │ │ ├── ppc.pl │ │ │ │ ├── sparcv8.S │ │ │ │ ├── sparcv8plus.S │ │ │ │ ├── vms.mar │ │ │ │ ├── x86.pl │ │ │ │ ├── x86 │ │ │ │ │ ├── add.pl │ │ │ │ │ ├── comba.pl │ │ │ │ │ ├── div.pl │ │ │ │ │ ├── f │ │ │ │ │ ├── mul.pl │ │ │ │ │ ├── mul_add.pl │ │ │ │ │ ├── sqr.pl │ │ │ │ │ └── sub.pl │ │ │ │ ├── x86_64-gcc.c │ │ │ │ └── x86_64-mont.pl │ │ │ ├── bn.h │ │ │ ├── bn.mul │ │ │ ├── bn_add.c │ │ │ ├── bn_asm.c │ │ │ ├── bn_blind.c │ │ │ ├── bn_const.c │ │ │ ├── bn_ctx.c │ │ │ ├── bn_depr.c │ │ │ ├── bn_div.c │ │ │ ├── bn_err.c │ │ │ ├── bn_exp.c │ │ │ ├── bn_exp2.c │ │ │ ├── bn_gcd.c │ │ │ ├── bn_gf2m.c │ │ │ ├── bn_kron.c │ │ │ ├── bn_lcl.h │ │ │ ├── bn_lib.c │ │ │ ├── bn_mod.c │ │ │ ├── bn_mont.c │ │ │ ├── bn_mpi.c │ │ │ ├── bn_mul.c │ │ │ ├── bn_nist.c │ │ │ ├── bn_prime.c │ │ │ ├── bn_prime.h │ │ │ ├── bn_prime.pl │ │ │ ├── bn_print.c │ │ │ ├── bn_rand.c │ │ │ ├── bn_recp.c │ │ │ ├── bn_shift.c │ │ │ ├── bn_sqr.c │ │ │ ├── bn_sqrt.c │ │ │ ├── bn_word.c │ │ │ ├── bnspeed.c │ │ │ ├── bntest.c │ │ │ ├── divtest.c │ │ │ ├── exp.c │ │ │ ├── expspeed.c │ │ │ ├── exptest.c │ │ │ ├── todo │ │ │ └── vms-helper.c │ │ ├── buffer │ │ │ ├── Makefile │ │ │ ├── buf_err.c │ │ │ ├── buffer.c │ │ │ └── buffer.h │ │ ├── camellia │ │ │ ├── Makefile │ │ │ ├── camellia.c │ │ │ ├── camellia.h │ │ │ ├── cmll_cbc.c │ │ │ ├── cmll_cfb.c │ │ │ ├── cmll_ctr.c │ │ │ ├── cmll_ecb.c │ │ │ ├── cmll_locl.h │ │ │ ├── cmll_misc.c │ │ │ └── cmll_ofb.c │ │ ├── cast │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── cast-586.pl │ │ │ │ └── readme │ │ │ ├── c_cfb64.c │ │ │ ├── c_ecb.c │ │ │ ├── c_enc.c │ │ │ ├── c_ofb64.c │ │ │ ├── c_skey.c │ │ │ ├── cast.h │ │ │ ├── cast_lcl.h │ │ │ ├── cast_s.h │ │ │ ├── cast_spd.c │ │ │ ├── castopts.c │ │ │ ├── casts.cpp │ │ │ └── casttest.c │ │ ├── cms │ │ │ ├── Makefile │ │ │ ├── cms.h │ │ │ ├── cms_asn1.c │ │ │ ├── cms_att.c │ │ │ ├── cms_cd.c │ │ │ ├── cms_dd.c │ │ │ ├── cms_enc.c │ │ │ ├── cms_env.c │ │ │ ├── cms_err.c │ │ │ ├── cms_ess.c │ │ │ ├── cms_io.c │ │ │ ├── cms_lcl.h │ │ │ ├── cms_lib.c │ │ │ ├── cms_sd.c │ │ │ └── cms_smime.c │ │ ├── comp │ │ │ ├── Makefile │ │ │ ├── c_rle.c │ │ │ ├── c_zlib.c │ │ │ ├── comp.h │ │ │ ├── comp_err.c │ │ │ └── comp_lib.c │ │ ├── conf │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── cnf_save.c │ │ │ ├── conf.h │ │ │ ├── conf_api.c │ │ │ ├── conf_api.h │ │ │ ├── conf_def.c │ │ │ ├── conf_def.h │ │ │ ├── conf_err.c │ │ │ ├── conf_lib.c │ │ │ ├── conf_mall.c │ │ │ ├── conf_mod.c │ │ │ ├── conf_sap.c │ │ │ ├── keysets.pl │ │ │ ├── ssleay.cnf │ │ │ └── test.c │ │ ├── cpt_err.c │ │ ├── cryptlib.c │ │ ├── cryptlib.c.orig │ │ ├── cryptlib.h │ │ ├── crypto-lib.com │ │ ├── crypto.h │ │ ├── cversion.c │ │ ├── des │ │ │ ├── COPYRIGHT │ │ │ ├── DES.pm │ │ │ ├── DES.xs │ │ │ ├── FILES0 │ │ │ ├── INSTALL │ │ │ ├── Imakefile │ │ │ ├── KERBEROS │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── asm │ │ │ │ ├── crypt586.pl │ │ │ │ ├── des-586.pl │ │ │ │ ├── des686.pl │ │ │ │ ├── des_enc.m4 │ │ │ │ ├── desboth.pl │ │ │ │ └── readme │ │ │ ├── cbc3_enc.c │ │ │ ├── cbc_cksm.c │ │ │ ├── cbc_enc.c │ │ │ ├── cfb64ede.c │ │ │ ├── cfb64enc.c │ │ │ ├── cfb_enc.c │ │ │ ├── des-lib.com │ │ │ ├── des.c │ │ │ ├── des.h │ │ │ ├── des.pod │ │ │ ├── des3s.cpp │ │ │ ├── des_enc.c │ │ │ ├── des_locl.h │ │ │ ├── des_old.c │ │ │ ├── des_old.h │ │ │ ├── des_old2.c │ │ │ ├── des_opts.c │ │ │ ├── des_ver.h │ │ │ ├── dess.cpp │ │ │ ├── destest.c │ │ │ ├── ecb3_enc.c │ │ │ ├── ecb_enc.c │ │ │ ├── ede_cbcm_enc.c │ │ │ ├── enc_read.c │ │ │ ├── enc_writ.c │ │ │ ├── fcrypt.c │ │ │ ├── fcrypt_b.c │ │ │ ├── makefile.bc │ │ │ ├── ncbc_enc.c │ │ │ ├── ofb64ede.c │ │ │ ├── ofb64enc.c │ │ │ ├── ofb_enc.c │ │ │ ├── options.txt │ │ │ ├── pcbc_enc.c │ │ │ ├── qud_cksm.c │ │ │ ├── rand_key.c │ │ │ ├── read2pwd.c │ │ │ ├── read_pwd.c │ │ │ ├── rpc_des.h │ │ │ ├── rpc_enc.c │ │ │ ├── rpw.c │ │ │ ├── set_key.c │ │ │ ├── speed.c │ │ │ ├── spr.h │ │ │ ├── str2key.c │ │ │ ├── t │ │ │ │ └── test │ │ │ ├── times │ │ │ │ ├── 486-50.sol │ │ │ │ ├── 586-100.lnx │ │ │ │ ├── 686-200.fre │ │ │ │ ├── aix.cc │ │ │ │ ├── alpha.cc │ │ │ │ ├── hpux.cc │ │ │ │ ├── sparc.gcc │ │ │ │ └── usparc.cc │ │ │ ├── typemap │ │ │ └── xcbc_enc.c │ │ ├── dh │ │ │ ├── Makefile │ │ │ ├── dh.h │ │ │ ├── dh1024.pem │ │ │ ├── dh192.pem │ │ │ ├── dh2048.pem │ │ │ ├── dh4096.pem │ │ │ ├── dh512.pem │ │ │ ├── dh_asn1.c │ │ │ ├── dh_check.c │ │ │ ├── dh_depr.c │ │ │ ├── dh_err.c │ │ │ ├── dh_gen.c │ │ │ ├── dh_key.c │ │ │ ├── dh_lib.c │ │ │ ├── dhtest.c │ │ │ ├── example │ │ │ ├── generate │ │ │ ├── p1024.c │ │ │ ├── p192.c │ │ │ └── p512.c │ │ ├── dsa │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── dsa.h │ │ │ ├── dsa_asn1.c │ │ │ ├── dsa_depr.c │ │ │ ├── dsa_err.c │ │ │ ├── dsa_gen.c │ │ │ ├── dsa_key.c │ │ │ ├── dsa_lib.c │ │ │ ├── dsa_ossl.c │ │ │ ├── dsa_sign.c │ │ │ ├── dsa_vrf.c │ │ │ ├── dsagen.c │ │ │ ├── dsatest.c │ │ │ └── fips186a.txt │ │ ├── dso │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── dso.h │ │ │ ├── dso_dl.c │ │ │ ├── dso_dlfcn.c │ │ │ ├── dso_err.c │ │ │ ├── dso_lib.c │ │ │ ├── dso_null.c │ │ │ ├── dso_openssl.c │ │ │ ├── dso_vms.c │ │ │ └── dso_win32.c │ │ ├── ebcdic.c │ │ ├── ebcdic.h │ │ ├── ec │ │ │ ├── Makefile │ │ │ ├── ec.h │ │ │ ├── ec2_mult.c │ │ │ ├── ec2_smpl.c │ │ │ ├── ec2_smpt.c │ │ │ ├── ec_asn1.c │ │ │ ├── ec_check.c │ │ │ ├── ec_curve.c │ │ │ ├── ec_cvt.c │ │ │ ├── ec_err.c │ │ │ ├── ec_key.c │ │ │ ├── ec_lcl.h │ │ │ ├── ec_lib.c │ │ │ ├── ec_mult.c │ │ │ ├── ec_print.c │ │ │ ├── ecp_mont.c │ │ │ ├── ecp_nist.c │ │ │ ├── ecp_smpl.c │ │ │ └── ectest.c │ │ ├── ecdh │ │ │ ├── Makefile │ │ │ ├── ecdh.h │ │ │ ├── ecdhtest.c │ │ │ ├── ech_err.c │ │ │ ├── ech_key.c │ │ │ ├── ech_lib.c │ │ │ ├── ech_locl.h │ │ │ └── ech_ossl.c │ │ ├── ecdsa │ │ │ ├── Makefile │ │ │ ├── ecdsa.h │ │ │ ├── ecdsatest.c │ │ │ ├── ecs_asn1.c │ │ │ ├── ecs_err.c │ │ │ ├── ecs_lib.c │ │ │ ├── ecs_locl.h │ │ │ ├── ecs_ossl.c │ │ │ ├── ecs_sign.c │ │ │ └── ecs_vrf.c │ │ ├── engine │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── eng_all.c │ │ │ ├── eng_cnf.c │ │ │ ├── eng_cryptodev.c │ │ │ ├── eng_ctrl.c │ │ │ ├── eng_dyn.c │ │ │ ├── eng_err.c │ │ │ ├── eng_fat.c │ │ │ ├── eng_init.c │ │ │ ├── eng_int.h │ │ │ ├── eng_lib.c │ │ │ ├── eng_list.c │ │ │ ├── eng_openssl.c │ │ │ ├── eng_padlock.c │ │ │ ├── eng_pkey.c │ │ │ ├── eng_table.c │ │ │ ├── engine.h │ │ │ ├── enginetest.c │ │ │ ├── tb_cipher.c │ │ │ ├── tb_dh.c │ │ │ ├── tb_digest.c │ │ │ ├── tb_dsa.c │ │ │ ├── tb_ecdh.c │ │ │ ├── tb_ecdsa.c │ │ │ ├── tb_rand.c │ │ │ ├── tb_rsa.c │ │ │ └── tb_store.c │ │ ├── err │ │ │ ├── Makefile │ │ │ ├── err.c │ │ │ ├── err.h │ │ │ ├── err_all.c │ │ │ ├── err_prn.c │ │ │ └── openssl.ec │ │ ├── evp │ │ │ ├── Makefile │ │ │ ├── bio_b64.c │ │ │ ├── bio_enc.c │ │ │ ├── bio_md.c │ │ │ ├── bio_ok.c │ │ │ ├── c_all.c │ │ │ ├── c_allc.c │ │ │ ├── c_alld.c │ │ │ ├── digest.c │ │ │ ├── e_aes.c │ │ │ ├── e_bf.c │ │ │ ├── e_camellia.c │ │ │ ├── e_cast.c │ │ │ ├── e_des.c │ │ │ ├── e_des3.c │ │ │ ├── e_dsa.c │ │ │ ├── e_idea.c │ │ │ ├── e_null.c │ │ │ ├── e_old.c │ │ │ ├── e_rc2.c │ │ │ ├── e_rc4.c │ │ │ ├── e_rc5.c │ │ │ ├── e_seed.c │ │ │ ├── e_xcbc_d.c │ │ │ ├── encode.c │ │ │ ├── evp.h │ │ │ ├── evp_acnf.c │ │ │ ├── evp_enc.c │ │ │ ├── evp_err.c │ │ │ ├── evp_key.c │ │ │ ├── evp_lib.c │ │ │ ├── evp_locl.h │ │ │ ├── evp_pbe.c │ │ │ ├── evp_pkey.c │ │ │ ├── evp_test.c │ │ │ ├── evptests.txt │ │ │ ├── m_dss.c │ │ │ ├── m_dss1.c │ │ │ ├── m_ecdsa.c │ │ │ ├── m_md2.c │ │ │ ├── m_md4.c │ │ │ ├── m_md5.c │ │ │ ├── m_mdc2.c │ │ │ ├── m_null.c │ │ │ ├── m_ripemd.c │ │ │ ├── m_sha.c │ │ │ ├── m_sha1.c │ │ │ ├── names.c │ │ │ ├── openbsd_hw.c │ │ │ ├── p5_crpt.c │ │ │ ├── p5_crpt2.c │ │ │ ├── p_dec.c │ │ │ ├── p_enc.c │ │ │ ├── p_lib.c │ │ │ ├── p_open.c │ │ │ ├── p_seal.c │ │ │ ├── p_sign.c │ │ │ └── p_verify.c │ │ ├── ex_data.c │ │ ├── hmac │ │ │ ├── Makefile │ │ │ ├── hmac.c │ │ │ ├── hmac.h │ │ │ └── hmactest.c │ │ ├── ia64cpuid.S │ │ ├── idea │ │ │ ├── Makefile │ │ │ ├── i_cbc.c │ │ │ ├── i_cfb64.c │ │ │ ├── i_ecb.c │ │ │ ├── i_ofb64.c │ │ │ ├── i_skey.c │ │ │ ├── idea.h │ │ │ ├── idea_lcl.h │ │ │ ├── idea_spd.c │ │ │ ├── ideatest.c │ │ │ └── version │ │ ├── install.com │ │ ├── krb5 │ │ │ ├── Makefile │ │ │ ├── krb5_asn.c │ │ │ └── krb5_asn.h │ │ ├── lhash │ │ │ ├── Makefile │ │ │ ├── lh_stats.c │ │ │ ├── lh_test.c │ │ │ ├── lhash.c │ │ │ ├── lhash.h │ │ │ └── num.pl │ │ ├── md2 │ │ │ ├── Makefile │ │ │ ├── md2.c │ │ │ ├── md2.h │ │ │ ├── md2_dgst.c │ │ │ ├── md2_one.c │ │ │ └── md2test.c │ │ ├── md32_common.h │ │ ├── md4 │ │ │ ├── Makefile │ │ │ ├── md4.c │ │ │ ├── md4.h │ │ │ ├── md4_dgst.c │ │ │ ├── md4_locl.h │ │ │ ├── md4_one.c │ │ │ ├── md4s.cpp │ │ │ └── md4test.c │ │ ├── md5 │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── md5-586.pl │ │ │ │ └── md5-x86_64.pl │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── md5_dgst.c │ │ │ ├── md5_locl.h │ │ │ ├── md5_one.c │ │ │ ├── md5s.cpp │ │ │ └── md5test.c │ │ ├── mdc2 │ │ │ ├── Makefile │ │ │ ├── mdc2_one.c │ │ │ ├── mdc2dgst.c │ │ │ └── mdc2test.c │ │ ├── mem.c │ │ ├── mem_clr.c │ │ ├── mem_dbg.c │ │ ├── o_dir.c │ │ ├── o_dir.h │ │ ├── o_dir_test.c │ │ ├── o_str.c │ │ ├── o_str.h │ │ ├── o_time.c │ │ ├── o_time.h │ │ ├── objects │ │ │ ├── Makefile │ │ │ ├── o_names.c │ │ │ ├── obj_dat.c │ │ │ ├── obj_dat.h │ │ │ ├── obj_dat.pl │ │ │ ├── obj_err.c │ │ │ ├── obj_lib.c │ │ │ ├── obj_mac.h │ │ │ ├── obj_mac.num │ │ │ ├── objects.README │ │ │ ├── objects.h │ │ │ ├── objects.pl │ │ │ └── objects.txt │ │ ├── ocsp │ │ │ ├── Makefile │ │ │ ├── ocsp.h │ │ │ ├── ocsp_asn.c │ │ │ ├── ocsp_cl.c │ │ │ ├── ocsp_err.c │ │ │ ├── ocsp_ext.c │ │ │ ├── ocsp_ht.c │ │ │ ├── ocsp_lib.c │ │ │ ├── ocsp_prn.c │ │ │ ├── ocsp_srv.c │ │ │ └── ocsp_vfy.c │ │ ├── opensslconf.h │ │ ├── opensslconf.h.in │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem │ │ │ ├── Makefile │ │ │ ├── message │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pem_all.c │ │ │ ├── pem_err.c │ │ │ ├── pem_info.c │ │ │ ├── pem_lib.c │ │ │ ├── pem_oth.c │ │ │ ├── pem_pk8.c │ │ │ ├── pem_pkey.c │ │ │ ├── pem_seal.c │ │ │ ├── pem_sign.c │ │ │ ├── pem_x509.c │ │ │ ├── pem_xaux.c │ │ │ └── pkcs7.lis │ │ ├── perlasm │ │ │ ├── cbc.pl │ │ │ ├── readme │ │ │ ├── x86_64-xlate.pl │ │ │ ├── x86asm.pl │ │ │ ├── x86ms.pl │ │ │ ├── x86nasm.pl │ │ │ └── x86unix.pl │ │ ├── pkcs12 │ │ │ ├── Makefile │ │ │ ├── p12_add.c │ │ │ ├── p12_asn.c │ │ │ ├── p12_attr.c │ │ │ ├── p12_crpt.c │ │ │ ├── p12_crt.c │ │ │ ├── p12_decr.c │ │ │ ├── p12_init.c │ │ │ ├── p12_key.c │ │ │ ├── p12_kiss.c │ │ │ ├── p12_mutl.c │ │ │ ├── p12_npas.c │ │ │ ├── p12_p8d.c │ │ │ ├── p12_p8e.c │ │ │ ├── p12_utl.c │ │ │ ├── pk12err.c │ │ │ └── pkcs12.h │ │ ├── pkcs7 │ │ │ ├── Makefile │ │ │ ├── bio_ber.c │ │ │ ├── dec.c │ │ │ ├── des.pem │ │ │ ├── doc │ │ │ ├── enc.c │ │ │ ├── es1.pem │ │ │ ├── example.c │ │ │ ├── example.h │ │ │ ├── info.pem │ │ │ ├── infokey.pem │ │ │ ├── p7 │ │ │ │ ├── a1 │ │ │ │ ├── a2 │ │ │ │ ├── cert.p7c │ │ │ │ ├── smime.p7m │ │ │ │ └── smime.p7s │ │ │ ├── pk7_asn1.c │ │ │ ├── pk7_attr.c │ │ │ ├── pk7_dgst.c │ │ │ ├── pk7_doit.c │ │ │ ├── pk7_enc.c │ │ │ ├── pk7_lib.c │ │ │ ├── pk7_mime.c │ │ │ ├── pk7_smime.c │ │ │ ├── pkcs7.h │ │ │ ├── pkcs7err.c │ │ │ ├── server.pem │ │ │ ├── sign.c │ │ │ ├── t │ │ │ │ ├── 3des.pem │ │ │ │ ├── 3dess.pem │ │ │ │ ├── c.pem │ │ │ │ ├── ff │ │ │ │ ├── msie-e │ │ │ │ ├── msie-e.pem │ │ │ │ ├── msie-enc-01 │ │ │ │ ├── msie-enc-01.pem │ │ │ │ ├── msie-enc-02 │ │ │ │ ├── msie-enc-02.pem │ │ │ │ ├── msie-s-a-e │ │ │ │ ├── msie-s-a-e.pem │ │ │ │ ├── nav-smime │ │ │ │ ├── s.pem │ │ │ │ └── server.pem │ │ │ └── verify.c │ │ ├── pqueue │ │ │ ├── Makefile │ │ │ ├── pq_compat.h │ │ │ ├── pq_test.c │ │ │ ├── pqueue.c │ │ │ └── pqueue.h │ │ ├── rand │ │ │ ├── Makefile │ │ │ ├── md_rand.c │ │ │ ├── rand.h │ │ │ ├── rand_egd.c │ │ │ ├── rand_err.c │ │ │ ├── rand_lcl.h │ │ │ ├── rand_lib.c │ │ │ ├── rand_nw.c │ │ │ ├── rand_os2.c │ │ │ ├── rand_unix.c │ │ │ ├── rand_vms.c │ │ │ ├── rand_win.c │ │ │ ├── randfile.c │ │ │ └── randtest.c │ │ ├── rc2 │ │ │ ├── Makefile │ │ │ ├── rc2.h │ │ │ ├── rc2_cbc.c │ │ │ ├── rc2_ecb.c │ │ │ ├── rc2_locl.h │ │ │ ├── rc2_skey.c │ │ │ ├── rc2cfb64.c │ │ │ ├── rc2ofb64.c │ │ │ ├── rc2speed.c │ │ │ ├── rc2test.c │ │ │ ├── rrc2.doc │ │ │ ├── tab.c │ │ │ └── version │ │ ├── rc4 │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── rc4-586.pl │ │ │ │ ├── rc4-ia64.S │ │ │ │ └── rc4-x86_64.pl │ │ │ ├── rc4.c │ │ │ ├── rc4.h │ │ │ ├── rc4_enc.c │ │ │ ├── rc4_locl.h │ │ │ ├── rc4_skey.c │ │ │ ├── rc4s.cpp │ │ │ ├── rc4speed.c │ │ │ ├── rc4test.c │ │ │ └── rrc4.doc │ │ ├── rc5 │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ └── rc5-586.pl │ │ │ ├── rc5_ecb.c │ │ │ ├── rc5_enc.c │ │ │ ├── rc5_locl.h │ │ │ ├── rc5_skey.c │ │ │ ├── rc5cfb64.c │ │ │ ├── rc5ofb64.c │ │ │ ├── rc5s.cpp │ │ │ ├── rc5speed.c │ │ │ └── rc5test.c │ │ ├── ripemd │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── asm │ │ │ │ ├── rips.cpp │ │ │ │ └── rmd-586.pl │ │ │ ├── ripemd.h │ │ │ ├── rmd160.c │ │ │ ├── rmd_dgst.c │ │ │ ├── rmd_locl.h │ │ │ ├── rmd_one.c │ │ │ ├── rmdconst.h │ │ │ └── rmdtest.c │ │ ├── rsa │ │ │ ├── Makefile │ │ │ ├── rsa.h │ │ │ ├── rsa_asn1.c │ │ │ ├── rsa_chk.c │ │ │ ├── rsa_depr.c │ │ │ ├── rsa_eay.c │ │ │ ├── rsa_err.c │ │ │ ├── rsa_gen.c │ │ │ ├── rsa_lib.c │ │ │ ├── rsa_none.c │ │ │ ├── rsa_null.c │ │ │ ├── rsa_oaep.c │ │ │ ├── rsa_pk1.c │ │ │ ├── rsa_pss.c │ │ │ ├── rsa_saos.c │ │ │ ├── rsa_sign.c │ │ │ ├── rsa_ssl.c │ │ │ ├── rsa_test.c │ │ │ └── rsa_x931.c │ │ ├── seed │ │ │ ├── Makefile │ │ │ ├── seed.c │ │ │ ├── seed.h │ │ │ ├── seed_cbc.c │ │ │ ├── seed_cfb.c │ │ │ ├── seed_ecb.c │ │ │ ├── seed_locl.h │ │ │ └── seed_ofb.c │ │ ├── sha │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── README │ │ │ │ ├── sha1-586.pl │ │ │ │ ├── sha1-ia64.pl │ │ │ │ ├── sha1-x86_64.pl │ │ │ │ ├── sha512-ia64.pl │ │ │ │ ├── sha512-sse2.pl │ │ │ │ └── sha512-x86_64.pl │ │ │ ├── sha.c │ │ │ ├── sha.h │ │ │ ├── sha1.c │ │ │ ├── sha1_one.c │ │ │ ├── sha1dgst.c │ │ │ ├── sha1s.cpp │ │ │ ├── sha1test.c │ │ │ ├── sha256.c │ │ │ ├── sha256t.c │ │ │ ├── sha512.c │ │ │ ├── sha512t.c │ │ │ ├── sha_dgst.c │ │ │ ├── sha_locl.h │ │ │ ├── sha_one.c │ │ │ └── shatest.c │ │ ├── sparccpuid.S │ │ ├── stack │ │ │ ├── Makefile │ │ │ ├── safestack.h │ │ │ ├── stack.c │ │ │ └── stack.h │ │ ├── store │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── store.h │ │ │ ├── str_err.c │ │ │ ├── str_lib.c │ │ │ ├── str_locl.h │ │ │ ├── str_mem.c │ │ │ └── str_meth.c │ │ ├── symhacks.h │ │ ├── threads │ │ │ ├── README │ │ │ ├── mttest.c │ │ │ ├── netware.bat │ │ │ ├── profile.sh │ │ │ ├── ptest.bat │ │ │ ├── pthread.sh │ │ │ ├── pthread2.sh │ │ │ ├── pthreads-vms.com │ │ │ ├── purify.sh │ │ │ ├── solaris.sh │ │ │ ├── th-lock.c │ │ │ └── win32.bat │ │ ├── tmdiff.c │ │ ├── tmdiff.h │ │ ├── txt_db │ │ │ ├── Makefile │ │ │ ├── txt_db.c │ │ │ └── txt_db.h │ │ ├── ui │ │ │ ├── Makefile │ │ │ ├── ui.h │ │ │ ├── ui_compat.c │ │ │ ├── ui_compat.h │ │ │ ├── ui_err.c │ │ │ ├── ui_lib.c │ │ │ ├── ui_locl.h │ │ │ ├── ui_openssl.c │ │ │ └── ui_util.c │ │ ├── uid.c │ │ ├── x509 │ │ │ ├── Makefile │ │ │ ├── by_dir.c │ │ │ ├── by_file.c │ │ │ ├── x509.h │ │ │ ├── x509_att.c │ │ │ ├── x509_cmp.c │ │ │ ├── x509_d2.c │ │ │ ├── x509_def.c │ │ │ ├── x509_err.c │ │ │ ├── x509_ext.c │ │ │ ├── x509_lu.c │ │ │ ├── x509_obj.c │ │ │ ├── x509_r2x.c │ │ │ ├── x509_req.c │ │ │ ├── x509_set.c │ │ │ ├── x509_trs.c │ │ │ ├── x509_txt.c │ │ │ ├── x509_v3.c │ │ │ ├── x509_vfy.c │ │ │ ├── x509_vfy.h │ │ │ ├── x509_vpm.c │ │ │ ├── x509cset.c │ │ │ ├── x509name.c │ │ │ ├── x509rset.c │ │ │ ├── x509spki.c │ │ │ ├── x509type.c │ │ │ └── x_all.c │ │ ├── x509v3 │ │ │ ├── Makefile │ │ │ ├── ext_dat.h │ │ │ ├── pcy_cache.c │ │ │ ├── pcy_data.c │ │ │ ├── pcy_int.h │ │ │ ├── pcy_lib.c │ │ │ ├── pcy_map.c │ │ │ ├── pcy_node.c │ │ │ ├── pcy_tree.c │ │ │ ├── tabtest.c │ │ │ ├── v3_addr.c │ │ │ ├── v3_akey.c │ │ │ ├── v3_akeya.c │ │ │ ├── v3_alt.c │ │ │ ├── v3_asid.c │ │ │ ├── v3_bcons.c │ │ │ ├── v3_bitst.c │ │ │ ├── v3_conf.c │ │ │ ├── v3_cpols.c │ │ │ ├── v3_crld.c │ │ │ ├── v3_enum.c │ │ │ ├── v3_extku.c │ │ │ ├── v3_genn.c │ │ │ ├── v3_ia5.c │ │ │ ├── v3_info.c │ │ │ ├── v3_int.c │ │ │ ├── v3_lib.c │ │ │ ├── v3_ncons.c │ │ │ ├── v3_ocsp.c │ │ │ ├── v3_pci.c │ │ │ ├── v3_pcia.c │ │ │ ├── v3_pcons.c │ │ │ ├── v3_pku.c │ │ │ ├── v3_pmaps.c │ │ │ ├── v3_prn.c │ │ │ ├── v3_purp.c │ │ │ ├── v3_skey.c │ │ │ ├── v3_sxnet.c │ │ │ ├── v3_utl.c │ │ │ ├── v3conf.c │ │ │ ├── v3err.c │ │ │ ├── v3prin.c │ │ │ └── x509v3.h │ │ ├── x86_64cpuid.pl │ │ └── x86cpuid.pl │ ├── e_os.h │ ├── e_os2.h │ ├── e_os2.h.orig │ ├── engines │ │ ├── Makefile │ │ ├── axp.opt │ │ ├── e_4758cca.c │ │ ├── e_4758cca.ec │ │ ├── e_4758cca_err.c │ │ ├── e_4758cca_err.h │ │ ├── e_aep.c │ │ ├── e_aep.ec │ │ ├── e_aep_err.c │ │ ├── e_aep_err.h │ │ ├── e_atalla.c │ │ ├── e_atalla.ec │ │ ├── e_atalla_err.c │ │ ├── e_atalla_err.h │ │ ├── e_capi.c │ │ ├── e_capi.ec │ │ ├── e_capi_err.c │ │ ├── e_capi_err.h │ │ ├── e_chil.c │ │ ├── e_chil.ec │ │ ├── e_chil_err.c │ │ ├── e_chil_err.h │ │ ├── e_cswift.c │ │ ├── e_cswift.ec │ │ ├── e_cswift_err.c │ │ ├── e_cswift_err.h │ │ ├── e_gmp.c │ │ ├── e_gmp.ec │ │ ├── e_gmp_err.c │ │ ├── e_gmp_err.h │ │ ├── e_nuron.c │ │ ├── e_nuron.ec │ │ ├── e_nuron_err.c │ │ ├── e_nuron_err.h │ │ ├── e_sureware.c │ │ ├── e_sureware.ec │ │ ├── e_sureware_err.c │ │ ├── e_sureware_err.h │ │ ├── e_ubsec.c │ │ ├── e_ubsec.ec │ │ ├── e_ubsec_err.c │ │ ├── e_ubsec_err.h │ │ ├── engine_vector.mar │ │ ├── makeengines.com │ │ ├── vax.opt │ │ └── vendor_defns │ │ │ ├── aep.h │ │ │ ├── atalla.h │ │ │ ├── cswift.h │ │ │ ├── hw_4758_cca.h │ │ │ ├── hw_ubsec.h │ │ │ ├── hwcryptohook.h │ │ │ └── sureware.h │ ├── include │ │ └── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── cast.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pq_compat.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── rc5.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── sha.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── store.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── tmdiff.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ ├── nmakeize │ ├── openssl-0.9.8i │ │ ├── CHANGES │ │ ├── CHANGES.SSLeay │ │ ├── Configure │ │ ├── FAQ │ │ ├── INSTALL │ │ ├── INSTALL.DJGPP │ │ ├── INSTALL.MacOS │ │ ├── INSTALL.NW │ │ ├── INSTALL.OS2 │ │ ├── INSTALL.VMS │ │ ├── INSTALL.W32 │ │ ├── INSTALL.W64 │ │ ├── INSTALL.WCE │ │ ├── LICENSE │ │ ├── MacOS │ │ │ ├── GUSI_Init.cpp │ │ │ ├── GetHTTPS.src │ │ │ │ ├── CPStringUtils.cpp │ │ │ │ ├── CPStringUtils.hpp │ │ │ │ ├── ErrorHandling.cpp │ │ │ │ ├── ErrorHandling.hpp │ │ │ │ ├── GetHTTPS.cpp │ │ │ │ ├── MacSocket.cpp │ │ │ │ └── MacSocket.h │ │ │ ├── OpenSSL.mcp.hqx │ │ │ ├── Randomizer.cpp │ │ │ ├── Randomizer.h │ │ │ ├── TODO │ │ │ ├── _MWERKS_GUSI_prefix.h │ │ │ ├── _MWERKS_prefix.h │ │ │ ├── buildinf.h │ │ │ ├── mklinks.as.hqx │ │ │ └── opensslconf.h │ │ ├── Makefile │ │ ├── Makefile.org │ │ ├── Makefile.shared │ │ ├── NEWS │ │ ├── Netware │ │ │ ├── build.bat │ │ │ ├── cpy_tests.bat │ │ │ ├── do_tests.pl │ │ │ ├── globals.txt │ │ │ ├── readme.txt │ │ │ └── set_env.bat │ │ ├── PROBLEMS │ │ ├── README │ │ ├── README.ASN1 │ │ ├── README.ENGINE │ │ ├── VMS │ │ │ ├── TODO │ │ │ ├── VMSify-conf.pl │ │ │ ├── WISHLIST.TXT │ │ │ ├── install.com │ │ │ ├── mkshared.com │ │ │ ├── multinet_shr.opt │ │ │ ├── openssl_utils.com │ │ │ ├── socketshr_shr.opt │ │ │ ├── tcpip_shr_decc.opt │ │ │ ├── test-includes.com │ │ │ ├── ucx_shr_decc.opt │ │ │ ├── ucx_shr_decc_log.opt │ │ │ └── ucx_shr_vaxc.opt │ │ ├── bugs │ │ │ ├── MS │ │ │ ├── SSLv3 │ │ │ ├── alpha.c │ │ │ ├── dggccbug.c │ │ │ ├── sgiccbug.c │ │ │ ├── sslref.dif │ │ │ ├── stream.c │ │ │ └── ultrixcc.c │ │ ├── certs │ │ │ ├── README.RootCerts │ │ │ ├── demo │ │ │ │ ├── ca-cert.pem │ │ │ │ ├── dsa-ca.pem │ │ │ │ ├── dsa-pca.pem │ │ │ │ └── pca-cert.pem │ │ │ └── expired │ │ │ │ └── ICE.crl │ │ ├── config │ │ ├── demos │ │ │ ├── README │ │ │ ├── asn1 │ │ │ │ ├── README.ASN1 │ │ │ │ └── ocsp.c │ │ │ ├── b64.c │ │ │ ├── b64.pl │ │ │ ├── bio │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── saccept.c │ │ │ │ ├── sconnect.c │ │ │ │ └── server.pem │ │ │ ├── easy_tls │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── cacerts.pem │ │ │ │ ├── cert.pem │ │ │ │ ├── easy-tls.c │ │ │ │ ├── easy-tls.h │ │ │ │ ├── test.c │ │ │ │ └── test.h │ │ │ ├── eay │ │ │ │ ├── Makefile │ │ │ │ ├── base64.c │ │ │ │ ├── conn.c │ │ │ │ └── loadrsa.c │ │ │ ├── engines │ │ │ │ ├── cluster_labs │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cluster_labs.h │ │ │ │ │ ├── hw_cluster_labs.c │ │ │ │ │ ├── hw_cluster_labs.ec │ │ │ │ │ ├── hw_cluster_labs_err.c │ │ │ │ │ └── hw_cluster_labs_err.h │ │ │ │ ├── ibmca │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── hw_ibmca.c │ │ │ │ │ ├── hw_ibmca.ec │ │ │ │ │ ├── hw_ibmca_err.c │ │ │ │ │ ├── hw_ibmca_err.h │ │ │ │ │ └── ica_openssl_api.h │ │ │ │ ├── rsaref │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── build.com │ │ │ │ │ ├── rsaref.c │ │ │ │ │ ├── rsaref.ec │ │ │ │ │ ├── rsaref_err.c │ │ │ │ │ └── rsaref_err.h │ │ │ │ └── zencod │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── hw_zencod.c │ │ │ │ │ ├── hw_zencod.ec │ │ │ │ │ ├── hw_zencod.h │ │ │ │ │ ├── hw_zencod_err.c │ │ │ │ │ └── hw_zencod_err.h │ │ │ ├── maurice │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── cert.pem │ │ │ │ ├── example1.c │ │ │ │ ├── example2.c │ │ │ │ ├── example3.c │ │ │ │ ├── example4.c │ │ │ │ ├── loadkeys.c │ │ │ │ ├── loadkeys.h │ │ │ │ └── privkey.pem │ │ │ ├── pkcs12 │ │ │ │ ├── README │ │ │ │ ├── pkread.c │ │ │ │ └── pkwrite.c │ │ │ ├── prime │ │ │ │ ├── Makefile │ │ │ │ └── prime.c │ │ │ ├── privkey.pem │ │ │ ├── selfsign.c │ │ │ ├── sign │ │ │ │ ├── Makefile │ │ │ │ ├── cert.pem │ │ │ │ ├── key.pem │ │ │ │ ├── sig.txt │ │ │ │ ├── sign.c │ │ │ │ └── sign.txt │ │ │ ├── spkigen.c │ │ │ ├── ssl │ │ │ │ ├── cli.cpp │ │ │ │ ├── inetdsrv.cpp │ │ │ │ └── serv.cpp │ │ │ ├── ssltest-ecc │ │ │ │ ├── ECC-RSAcertgen.sh │ │ │ │ ├── ECCcertgen.sh │ │ │ │ ├── README │ │ │ │ ├── RSAcertgen.sh │ │ │ │ └── ssltest.sh │ │ │ ├── state_machine │ │ │ │ ├── Makefile │ │ │ │ └── state_machine.c │ │ │ ├── tunala │ │ │ │ ├── A-client.pem │ │ │ │ ├── A-server.pem │ │ │ │ ├── CA.pem │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── README │ │ │ │ ├── autogunk.sh │ │ │ │ ├── autoungunk.sh │ │ │ │ ├── breakage.c │ │ │ │ ├── buffer.c │ │ │ │ ├── cb.c │ │ │ │ ├── configure.in │ │ │ │ ├── ip.c │ │ │ │ ├── sm.c │ │ │ │ ├── test.sh │ │ │ │ ├── tunala.c │ │ │ │ └── tunala.h │ │ │ └── x509 │ │ │ │ ├── README │ │ │ │ ├── mkcert.c │ │ │ │ └── mkreq.c │ │ ├── doc │ │ │ ├── HOWTO │ │ │ │ ├── certificates.txt │ │ │ │ ├── keys.txt │ │ │ │ └── proxy_certificates.txt │ │ │ ├── README │ │ │ ├── apps │ │ │ │ ├── CA.pl.pod │ │ │ │ ├── asn1parse.pod │ │ │ │ ├── ca.pod │ │ │ │ ├── ciphers.pod │ │ │ │ ├── config.pod │ │ │ │ ├── crl.pod │ │ │ │ ├── crl2pkcs7.pod │ │ │ │ ├── dgst.pod │ │ │ │ ├── dhparam.pod │ │ │ │ ├── dsa.pod │ │ │ │ ├── dsaparam.pod │ │ │ │ ├── ec.pod │ │ │ │ ├── ecparam.pod │ │ │ │ ├── enc.pod │ │ │ │ ├── errstr.pod │ │ │ │ ├── gendsa.pod │ │ │ │ ├── genrsa.pod │ │ │ │ ├── nseq.pod │ │ │ │ ├── ocsp.pod │ │ │ │ ├── openssl.pod │ │ │ │ ├── passwd.pod │ │ │ │ ├── pkcs12.pod │ │ │ │ ├── pkcs7.pod │ │ │ │ ├── pkcs8.pod │ │ │ │ ├── rand.pod │ │ │ │ ├── req.pod │ │ │ │ ├── rsa.pod │ │ │ │ ├── rsautl.pod │ │ │ │ ├── s_client.pod │ │ │ │ ├── s_server.pod │ │ │ │ ├── s_time.pod │ │ │ │ ├── sess_id.pod │ │ │ │ ├── smime.pod │ │ │ │ ├── speed.pod │ │ │ │ ├── spkac.pod │ │ │ │ ├── verify.pod │ │ │ │ ├── version.pod │ │ │ │ ├── x509.pod │ │ │ │ └── x509v3_config.pod │ │ │ ├── c-indentation.el │ │ │ ├── crypto │ │ │ │ ├── ASN1_OBJECT_new.pod │ │ │ │ ├── ASN1_STRING_length.pod │ │ │ │ ├── ASN1_STRING_new.pod │ │ │ │ ├── ASN1_STRING_print_ex.pod │ │ │ │ ├── ASN1_generate_nconf.pod │ │ │ │ ├── BIO_ctrl.pod │ │ │ │ ├── BIO_f_base64.pod │ │ │ │ ├── BIO_f_buffer.pod │ │ │ │ ├── BIO_f_cipher.pod │ │ │ │ ├── BIO_f_md.pod │ │ │ │ ├── BIO_f_null.pod │ │ │ │ ├── BIO_f_ssl.pod │ │ │ │ ├── BIO_find_type.pod │ │ │ │ ├── BIO_new.pod │ │ │ │ ├── BIO_push.pod │ │ │ │ ├── BIO_read.pod │ │ │ │ ├── BIO_s_accept.pod │ │ │ │ ├── BIO_s_bio.pod │ │ │ │ ├── BIO_s_connect.pod │ │ │ │ ├── BIO_s_fd.pod │ │ │ │ ├── BIO_s_file.pod │ │ │ │ ├── BIO_s_mem.pod │ │ │ │ ├── BIO_s_null.pod │ │ │ │ ├── BIO_s_socket.pod │ │ │ │ ├── BIO_set_callback.pod │ │ │ │ ├── BIO_should_retry.pod │ │ │ │ ├── BN_BLINDING_new.pod │ │ │ │ ├── BN_CTX_new.pod │ │ │ │ ├── BN_CTX_start.pod │ │ │ │ ├── BN_add.pod │ │ │ │ ├── BN_add_word.pod │ │ │ │ ├── BN_bn2bin.pod │ │ │ │ ├── BN_cmp.pod │ │ │ │ ├── BN_copy.pod │ │ │ │ ├── BN_generate_prime.pod │ │ │ │ ├── BN_mod_inverse.pod │ │ │ │ ├── BN_mod_mul_montgomery.pod │ │ │ │ ├── BN_mod_mul_reciprocal.pod │ │ │ │ ├── BN_new.pod │ │ │ │ ├── BN_num_bytes.pod │ │ │ │ ├── BN_rand.pod │ │ │ │ ├── BN_set_bit.pod │ │ │ │ ├── BN_swap.pod │ │ │ │ ├── BN_zero.pod │ │ │ │ ├── CONF_modules_free.pod │ │ │ │ ├── CONF_modules_load_file.pod │ │ │ │ ├── CRYPTO_set_ex_data.pod │ │ │ │ ├── DH_generate_key.pod │ │ │ │ ├── DH_generate_parameters.pod │ │ │ │ ├── DH_get_ex_new_index.pod │ │ │ │ ├── DH_new.pod │ │ │ │ ├── DH_set_method.pod │ │ │ │ ├── DH_size.pod │ │ │ │ ├── DSA_SIG_new.pod │ │ │ │ ├── DSA_do_sign.pod │ │ │ │ ├── DSA_dup_DH.pod │ │ │ │ ├── DSA_generate_key.pod │ │ │ │ ├── DSA_generate_parameters.pod │ │ │ │ ├── DSA_get_ex_new_index.pod │ │ │ │ ├── DSA_new.pod │ │ │ │ ├── DSA_set_method.pod │ │ │ │ ├── DSA_sign.pod │ │ │ │ ├── DSA_size.pod │ │ │ │ ├── ERR_GET_LIB.pod │ │ │ │ ├── ERR_clear_error.pod │ │ │ │ ├── ERR_error_string.pod │ │ │ │ ├── ERR_get_error.pod │ │ │ │ ├── ERR_load_crypto_strings.pod │ │ │ │ ├── ERR_load_strings.pod │ │ │ │ ├── ERR_print_errors.pod │ │ │ │ ├── ERR_put_error.pod │ │ │ │ ├── ERR_remove_state.pod │ │ │ │ ├── ERR_set_mark.pod │ │ │ │ ├── EVP_BytesToKey.pod │ │ │ │ ├── EVP_DigestInit.pod │ │ │ │ ├── EVP_EncryptInit.pod │ │ │ │ ├── EVP_OpenInit.pod │ │ │ │ ├── EVP_PKEY_new.pod │ │ │ │ ├── EVP_PKEY_set1_RSA.pod │ │ │ │ ├── EVP_SealInit.pod │ │ │ │ ├── EVP_SignInit.pod │ │ │ │ ├── EVP_VerifyInit.pod │ │ │ │ ├── OBJ_nid2obj.pod │ │ │ │ ├── OPENSSL_Applink.pod │ │ │ │ ├── OPENSSL_VERSION_NUMBER.pod │ │ │ │ ├── OPENSSL_config.pod │ │ │ │ ├── OPENSSL_ia32cap.pod │ │ │ │ ├── OPENSSL_load_builtin_modules.pod │ │ │ │ ├── OpenSSL_add_all_algorithms.pod │ │ │ │ ├── PKCS12_create.pod │ │ │ │ ├── PKCS12_parse.pod │ │ │ │ ├── PKCS7_decrypt.pod │ │ │ │ ├── PKCS7_encrypt.pod │ │ │ │ ├── PKCS7_sign.pod │ │ │ │ ├── PKCS7_verify.pod │ │ │ │ ├── RAND_add.pod │ │ │ │ ├── RAND_bytes.pod │ │ │ │ ├── RAND_cleanup.pod │ │ │ │ ├── RAND_egd.pod │ │ │ │ ├── RAND_load_file.pod │ │ │ │ ├── RAND_set_rand_method.pod │ │ │ │ ├── RSA_blinding_on.pod │ │ │ │ ├── RSA_check_key.pod │ │ │ │ ├── RSA_generate_key.pod │ │ │ │ ├── RSA_get_ex_new_index.pod │ │ │ │ ├── RSA_new.pod │ │ │ │ ├── RSA_padding_add_PKCS1_type_1.pod │ │ │ │ ├── RSA_print.pod │ │ │ │ ├── RSA_private_encrypt.pod │ │ │ │ ├── RSA_public_encrypt.pod │ │ │ │ ├── RSA_set_method.pod │ │ │ │ ├── RSA_sign.pod │ │ │ │ ├── RSA_sign_ASN1_OCTET_STRING.pod │ │ │ │ ├── RSA_size.pod │ │ │ │ ├── SMIME_read_PKCS7.pod │ │ │ │ ├── SMIME_write_PKCS7.pod │ │ │ │ ├── X509_NAME_ENTRY_get_object.pod │ │ │ │ ├── X509_NAME_add_entry_by_txt.pod │ │ │ │ ├── X509_NAME_get_index_by_NID.pod │ │ │ │ ├── X509_NAME_print_ex.pod │ │ │ │ ├── X509_new.pod │ │ │ │ ├── bio.pod │ │ │ │ ├── blowfish.pod │ │ │ │ ├── bn.pod │ │ │ │ ├── bn_internal.pod │ │ │ │ ├── buffer.pod │ │ │ │ ├── crypto.pod │ │ │ │ ├── d2i_ASN1_OBJECT.pod │ │ │ │ ├── d2i_DHparams.pod │ │ │ │ ├── d2i_DSAPublicKey.pod │ │ │ │ ├── d2i_PKCS8PrivateKey.pod │ │ │ │ ├── d2i_RSAPublicKey.pod │ │ │ │ ├── d2i_X509.pod │ │ │ │ ├── d2i_X509_ALGOR.pod │ │ │ │ ├── d2i_X509_CRL.pod │ │ │ │ ├── d2i_X509_NAME.pod │ │ │ │ ├── d2i_X509_REQ.pod │ │ │ │ ├── d2i_X509_SIG.pod │ │ │ │ ├── des.pod │ │ │ │ ├── des_modes.pod │ │ │ │ ├── dh.pod │ │ │ │ ├── dsa.pod │ │ │ │ ├── ecdsa.pod │ │ │ │ ├── engine.pod │ │ │ │ ├── err.pod │ │ │ │ ├── evp.pod │ │ │ │ ├── hmac.pod │ │ │ │ ├── lh_stats.pod │ │ │ │ ├── lhash.pod │ │ │ │ ├── md5.pod │ │ │ │ ├── mdc2.pod │ │ │ │ ├── pem.pod │ │ │ │ ├── rand.pod │ │ │ │ ├── rc4.pod │ │ │ │ ├── ripemd.pod │ │ │ │ ├── rsa.pod │ │ │ │ ├── sha.pod │ │ │ │ ├── threads.pod │ │ │ │ ├── ui.pod │ │ │ │ ├── ui_compat.pod │ │ │ │ └── x509.pod │ │ │ ├── fingerprints.txt │ │ │ ├── openssl-shared.txt │ │ │ ├── openssl.txt │ │ │ ├── openssl_button.gif │ │ │ ├── openssl_button.html │ │ │ ├── ssl │ │ │ │ ├── SSL_CIPHER_get_name.pod │ │ │ │ ├── SSL_COMP_add_compression_method.pod │ │ │ │ ├── SSL_CTX_add_extra_chain_cert.pod │ │ │ │ ├── SSL_CTX_add_session.pod │ │ │ │ ├── SSL_CTX_ctrl.pod │ │ │ │ ├── SSL_CTX_flush_sessions.pod │ │ │ │ ├── SSL_CTX_free.pod │ │ │ │ ├── SSL_CTX_get_ex_new_index.pod │ │ │ │ ├── SSL_CTX_get_verify_mode.pod │ │ │ │ ├── SSL_CTX_load_verify_locations.pod │ │ │ │ ├── SSL_CTX_new.pod │ │ │ │ ├── SSL_CTX_sess_number.pod │ │ │ │ ├── SSL_CTX_sess_set_cache_size.pod │ │ │ │ ├── SSL_CTX_sess_set_get_cb.pod │ │ │ │ ├── SSL_CTX_sessions.pod │ │ │ │ ├── SSL_CTX_set_cert_store.pod │ │ │ │ ├── SSL_CTX_set_cert_verify_callback.pod │ │ │ │ ├── SSL_CTX_set_cipher_list.pod │ │ │ │ ├── SSL_CTX_set_client_CA_list.pod │ │ │ │ ├── SSL_CTX_set_client_cert_cb.pod │ │ │ │ ├── SSL_CTX_set_default_passwd_cb.pod │ │ │ │ ├── SSL_CTX_set_generate_session_id.pod │ │ │ │ ├── SSL_CTX_set_info_callback.pod │ │ │ │ ├── SSL_CTX_set_max_cert_list.pod │ │ │ │ ├── SSL_CTX_set_mode.pod │ │ │ │ ├── SSL_CTX_set_msg_callback.pod │ │ │ │ ├── SSL_CTX_set_options.pod │ │ │ │ ├── SSL_CTX_set_quiet_shutdown.pod │ │ │ │ ├── SSL_CTX_set_session_cache_mode.pod │ │ │ │ ├── SSL_CTX_set_session_id_context.pod │ │ │ │ ├── SSL_CTX_set_ssl_version.pod │ │ │ │ ├── SSL_CTX_set_timeout.pod │ │ │ │ ├── SSL_CTX_set_tmp_dh_callback.pod │ │ │ │ ├── SSL_CTX_set_tmp_rsa_callback.pod │ │ │ │ ├── SSL_CTX_set_verify.pod │ │ │ │ ├── SSL_CTX_use_certificate.pod │ │ │ │ ├── SSL_SESSION_free.pod │ │ │ │ ├── SSL_SESSION_get_ex_new_index.pod │ │ │ │ ├── SSL_SESSION_get_time.pod │ │ │ │ ├── SSL_accept.pod │ │ │ │ ├── SSL_alert_type_string.pod │ │ │ │ ├── SSL_clear.pod │ │ │ │ ├── SSL_connect.pod │ │ │ │ ├── SSL_do_handshake.pod │ │ │ │ ├── SSL_free.pod │ │ │ │ ├── SSL_get_SSL_CTX.pod │ │ │ │ ├── SSL_get_ciphers.pod │ │ │ │ ├── SSL_get_client_CA_list.pod │ │ │ │ ├── SSL_get_current_cipher.pod │ │ │ │ ├── SSL_get_default_timeout.pod │ │ │ │ ├── SSL_get_error.pod │ │ │ │ ├── SSL_get_ex_data_X509_STORE_CTX_idx.pod │ │ │ │ ├── SSL_get_ex_new_index.pod │ │ │ │ ├── SSL_get_fd.pod │ │ │ │ ├── SSL_get_peer_cert_chain.pod │ │ │ │ ├── SSL_get_peer_certificate.pod │ │ │ │ ├── SSL_get_rbio.pod │ │ │ │ ├── SSL_get_session.pod │ │ │ │ ├── SSL_get_verify_result.pod │ │ │ │ ├── SSL_get_version.pod │ │ │ │ ├── SSL_library_init.pod │ │ │ │ ├── SSL_load_client_CA_file.pod │ │ │ │ ├── SSL_new.pod │ │ │ │ ├── SSL_pending.pod │ │ │ │ ├── SSL_read.pod │ │ │ │ ├── SSL_rstate_string.pod │ │ │ │ ├── SSL_session_reused.pod │ │ │ │ ├── SSL_set_bio.pod │ │ │ │ ├── SSL_set_connect_state.pod │ │ │ │ ├── SSL_set_fd.pod │ │ │ │ ├── SSL_set_session.pod │ │ │ │ ├── SSL_set_shutdown.pod │ │ │ │ ├── SSL_set_verify_result.pod │ │ │ │ ├── SSL_shutdown.pod │ │ │ │ ├── SSL_state_string.pod │ │ │ │ ├── SSL_want.pod │ │ │ │ ├── SSL_write.pod │ │ │ │ ├── d2i_SSL_SESSION.pod │ │ │ │ └── ssl.pod │ │ │ ├── ssleay.txt │ │ │ └── standards.txt │ │ ├── install.com │ │ ├── makevms.com │ │ ├── ms │ │ │ ├── 32all.bat │ │ │ ├── README │ │ │ ├── applink.c │ │ │ ├── bcb4.bat │ │ │ ├── certCA.srl │ │ │ ├── certCA.ss │ │ │ ├── certU.ss │ │ │ ├── cmp.pl │ │ │ ├── do_masm.bat │ │ │ ├── do_ms.bat │ │ │ ├── do_nasm.bat │ │ │ ├── do_nt.bat │ │ │ ├── do_win64a.bat │ │ │ ├── do_win64i.bat │ │ │ ├── keyCA.ss │ │ │ ├── keyU.ss │ │ │ ├── mingw32.bat │ │ │ ├── mw.bat │ │ │ ├── req2CA.ss │ │ │ ├── reqCA.ss │ │ │ ├── reqU.ss │ │ │ ├── speed32.bat │ │ │ ├── tenc.bat │ │ │ ├── tencce.bat │ │ │ ├── test.bat │ │ │ ├── testce.bat │ │ │ ├── testce2.bat │ │ │ ├── testenc.bat │ │ │ ├── testencce.bat │ │ │ ├── testpem.bat │ │ │ ├── testpemce.bat │ │ │ ├── testss.bat │ │ │ ├── testssce.bat │ │ │ ├── tlhelp32.h │ │ │ ├── tpem.bat │ │ │ ├── tpemce.bat │ │ │ ├── uplink.c │ │ │ ├── uplink.h │ │ │ ├── uplink.pl │ │ │ └── x86asm.bat │ │ ├── openssl.doxy │ │ ├── openssl.spec │ │ ├── os2 │ │ │ ├── OS2-EMX.cmd │ │ │ └── backwardify.pl │ │ ├── shlib │ │ │ ├── Makefile.hpux10-cc │ │ │ ├── README │ │ │ ├── hpux10-cc.sh │ │ │ ├── irix.sh │ │ │ ├── sco5-shared-gcc.sh │ │ │ ├── sco5-shared-installed │ │ │ ├── sco5-shared.sh │ │ │ ├── solaris-sc4.sh │ │ │ ├── solaris.sh │ │ │ ├── sun.sh │ │ │ ├── svr5-shared-gcc.sh │ │ │ ├── svr5-shared-installed │ │ │ ├── svr5-shared.sh │ │ │ ├── win32.bat │ │ │ └── win32dll.bat │ │ ├── times │ │ │ ├── 090 │ │ │ │ └── 586-100.nt │ │ │ ├── 091 │ │ │ │ ├── 486-50.nt │ │ │ │ ├── 586-100.lnx │ │ │ │ ├── 68000.bsd │ │ │ │ ├── 686-200.lnx │ │ │ │ ├── alpha064.osf │ │ │ │ ├── alpha164.lnx │ │ │ │ ├── alpha164.osf │ │ │ │ ├── mips-rel.pl │ │ │ │ ├── r10000.irx │ │ │ │ ├── r3000.ult │ │ │ │ └── r4400.irx │ │ │ ├── 100.lnx │ │ │ ├── 100.nt │ │ │ ├── 200.lnx │ │ │ ├── 486-66.dos │ │ │ ├── 486-66.nt │ │ │ ├── 486-66.w31 │ │ │ ├── 5.lnx │ │ │ ├── 586-085i.nt │ │ │ ├── 586-100.LN3 │ │ │ ├── 586-100.NT2 │ │ │ ├── 586-100.dos │ │ │ ├── 586-100.ln4 │ │ │ ├── 586-100.lnx │ │ │ ├── 586-100.nt │ │ │ ├── 586-100.ntx │ │ │ ├── 586-100.w31 │ │ │ ├── 586-1002.lnx │ │ │ ├── 586p-100.lnx │ │ │ ├── 686-200.bsd │ │ │ ├── 686-200.lnx │ │ │ ├── 686-200.nt │ │ │ ├── L1 │ │ │ ├── R10000.t │ │ │ ├── R4400.t │ │ │ ├── aix.t │ │ │ ├── aixold.t │ │ │ ├── alpha.t │ │ │ ├── alpha400.t │ │ │ ├── cyrix100.lnx │ │ │ ├── dgux-x86.t │ │ │ ├── dgux.t │ │ │ ├── hpux-acc.t │ │ │ ├── hpux-kr.t │ │ │ ├── hpux.t │ │ │ ├── p2.w95 │ │ │ ├── pent2.t │ │ │ ├── readme │ │ │ ├── s586-100.lnx │ │ │ ├── s586-100.nt │ │ │ ├── sgi.t │ │ │ ├── sparc.t │ │ │ ├── sparc2 │ │ │ ├── sparcLX.t │ │ │ ├── usparc.t │ │ │ └── x86 │ │ │ │ ├── bfs.cpp │ │ │ │ ├── casts.cpp │ │ │ │ ├── des3s.cpp │ │ │ │ ├── dess.cpp │ │ │ │ ├── md4s.cpp │ │ │ │ ├── md5s.cpp │ │ │ │ ├── rc4s.cpp │ │ │ │ └── sha1s.cpp │ │ ├── tools │ │ │ ├── Makefile │ │ │ ├── c89.sh │ │ │ ├── c_hash │ │ │ ├── c_info │ │ │ ├── c_issuer │ │ │ ├── c_name │ │ │ ├── c_rehash │ │ │ └── c_rehash.in │ │ └── util │ │ │ ├── FreeBSD.sh │ │ │ ├── add_cr.pl │ │ │ ├── bat.sh │ │ │ ├── ck_errf.pl │ │ │ ├── clean-depend.pl │ │ │ ├── copy.pl │ │ │ ├── cygwin.sh │ │ │ ├── deleof.pl │ │ │ ├── dirname.pl │ │ │ ├── do_ms.sh │ │ │ ├── domd │ │ │ ├── err-ins.pl │ │ │ ├── extract-names.pl │ │ │ ├── extract-section.pl │ │ │ ├── files.pl │ │ │ ├── fixNT.sh │ │ │ ├── install.sh │ │ │ ├── libeay.num │ │ │ ├── mk1mf.pl │ │ │ ├── mkcerts.sh │ │ │ ├── mkdef.pl │ │ │ ├── mkdir-p.pl │ │ │ ├── mkerr.pl │ │ │ ├── mkfiles.pl │ │ │ ├── mklink.pl │ │ │ ├── mkstack.pl │ │ │ ├── opensslwrap.sh │ │ │ ├── perlpath.pl │ │ │ ├── pl │ │ │ ├── BC-32.pl │ │ │ ├── Mingw32.pl │ │ │ ├── OS2-EMX.pl │ │ │ ├── VC-32.pl │ │ │ ├── linux.pl │ │ │ ├── netware.pl │ │ │ ├── ultrix.pl │ │ │ └── unix.pl │ │ │ ├── pod2man.pl │ │ │ ├── pod2mantest │ │ │ ├── pod2mantest.pod │ │ │ ├── point.sh │ │ │ ├── selftest.pl │ │ │ ├── shlib_wrap.sh │ │ │ ├── sp-diff.pl │ │ │ ├── speed.sh │ │ │ ├── src-dep.pl │ │ │ ├── ssleay.num │ │ │ ├── tab_num.pl │ │ │ └── x86asm.sh │ └── ssl │ │ ├── Makefile │ │ ├── bio_ssl.c │ │ ├── d1_both.c │ │ ├── d1_clnt.c │ │ ├── d1_enc.c │ │ ├── d1_lib.c │ │ ├── d1_meth.c │ │ ├── d1_pkt.c │ │ ├── d1_srvr.c │ │ ├── dtls1.h │ │ ├── install.com │ │ ├── kssl.c │ │ ├── kssl.h │ │ ├── kssl_lcl.h │ │ ├── s23_clnt.c │ │ ├── s23_lib.c │ │ ├── s23_meth.c │ │ ├── s23_pkt.c │ │ ├── s23_srvr.c │ │ ├── s2_clnt.c │ │ ├── s2_enc.c │ │ ├── s2_lib.c │ │ ├── s2_meth.c │ │ ├── s2_pkt.c │ │ ├── s2_srvr.c │ │ ├── s3_both.c │ │ ├── s3_clnt.c │ │ ├── s3_enc.c │ │ ├── s3_lib.c │ │ ├── s3_meth.c │ │ ├── s3_pkt.c │ │ ├── s3_srvr.c │ │ ├── ssl-lib.com │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── ssl_algs.c │ │ ├── ssl_asn1.c │ │ ├── ssl_cert.c │ │ ├── ssl_ciph.c │ │ ├── ssl_err.c │ │ ├── ssl_err2.c │ │ ├── ssl_lib.c │ │ ├── ssl_locl.h │ │ ├── ssl_rsa.c │ │ ├── ssl_sess.c │ │ ├── ssl_stat.c │ │ ├── ssl_task.c │ │ ├── ssl_txt.c │ │ ├── ssltest.c │ │ ├── t1_clnt.c │ │ ├── t1_enc.c │ │ ├── t1_lib.c │ │ ├── t1_meth.c │ │ ├── t1_srvr.c │ │ └── tls1.h ├── libdb │ ├── Makefile │ ├── btree │ │ ├── bt_close.c │ │ ├── bt_conv.c │ │ ├── bt_debug.c │ │ ├── bt_delete.c │ │ ├── bt_get.c │ │ ├── bt_open.c │ │ ├── bt_overflow.c │ │ ├── bt_page.c │ │ ├── bt_put.c │ │ ├── bt_search.c │ │ ├── bt_seq.c │ │ ├── bt_split.c │ │ ├── bt_stack.c │ │ ├── bt_utils.c │ │ ├── btree.h │ │ └── btreelib.h │ ├── db.c │ ├── db.h │ ├── extern.h │ ├── hash │ │ ├── hash.c │ │ ├── hash.h │ │ ├── hash_bigkey.c │ │ ├── hash_buf.c │ │ ├── hash_func.c │ │ ├── hash_log2.c │ │ ├── hash_page.c │ │ ├── hashlib.h │ │ ├── hsearch.c │ │ ├── hsearch.h │ │ ├── ndbm.c │ │ └── page.h │ ├── mpool │ │ └── mpool.c │ └── recno │ │ ├── rec_close.c │ │ ├── rec_delete.c │ │ ├── rec_get.c │ │ ├── rec_open.c │ │ ├── rec_put.c │ │ ├── rec_search.c │ │ ├── rec_seq.c │ │ ├── rec_utils.c │ │ ├── recno.h │ │ └── recnolib.h ├── libglut │ ├── FAQ.glut │ ├── NOTICE │ ├── Nmakefile │ ├── glut.sym │ ├── glut_8x13.c │ ├── glut_9x15.c │ ├── glut_bitmap.c │ ├── glut_bwidth.c │ ├── glut_cindex.c │ ├── glut_cmap.c │ ├── glut_cursor.c │ ├── glut_dials.c │ ├── glut_dstr.c │ ├── glut_event.c │ ├── glut_ext.c │ ├── glut_fullscrn.c │ ├── glut_gamemode.c │ ├── glut_get.c │ ├── glut_glxext.c │ ├── glut_hel10.c │ ├── glut_hel12.c │ ├── glut_hel18.c │ ├── glut_init.c │ ├── glut_input.c │ ├── glut_joy.c │ ├── glut_key.c │ ├── glut_keyctrl.c │ ├── glut_keyup.c │ ├── glut_menu.c │ ├── glut_menu2.c │ ├── glut_mesa.c │ ├── glut_modifier.c │ ├── glut_mroman.c │ ├── glut_overlay.c │ ├── glut_roman.c │ ├── glut_shapes.c │ ├── glut_space.c │ ├── glut_stroke.c │ ├── glut_swap.c │ ├── glut_swidth.c │ ├── glut_tablet.c │ ├── glut_teapot.c │ ├── glut_tr10.c │ ├── glut_tr24.c │ ├── glut_util.c │ ├── glut_vidresize.c │ ├── glut_warp.c │ ├── glut_win.c │ ├── glut_winmisc.c │ ├── glutbitmap.h │ ├── glutint.h │ ├── glutstroke.h │ ├── glutwin32.h │ ├── include │ │ └── GL │ │ │ ├── glut.h │ │ │ └── glx.h │ ├── layerutil.c │ ├── layerutil.h │ ├── man │ │ ├── glut.3 │ │ ├── glutAddMenuEntry.3 │ │ ├── glutAddSubMenu.3 │ │ ├── glutAttachMenu.3 │ │ ├── glutBitmapCharacter.3 │ │ ├── glutBitmapWidth.3 │ │ ├── glutButtonBoxFunc.3 │ │ ├── glutChangeToMenuEntry.3 │ │ ├── glutChangeToSubMenu.3 │ │ ├── glutCopyColormap.3 │ │ ├── glutCreateMenu.3 │ │ ├── glutCreateSubWindow.3 │ │ ├── glutCreateWindow.3 │ │ ├── glutDestroyMenu.3 │ │ ├── glutDestroyWindow.3 │ │ ├── glutDeviceGet.3 │ │ ├── glutDialsFunc.3 │ │ ├── glutDisplayFunc.3 │ │ ├── glutEnterGameMode.3 │ │ ├── glutEntryFunc.3 │ │ ├── glutEstablishOverlay.3 │ │ ├── glutExtensionSupported.3 │ │ ├── glutForceJoystickFunc.3 │ │ ├── glutFullScreen.3 │ │ ├── glutGameModeGet.3 │ │ ├── glutGameModeString.3 │ │ ├── glutGet.3 │ │ ├── glutGetColor.3 │ │ ├── glutGetModifiers.3 │ │ ├── glutIdleFunc.3 │ │ ├── glutIgnoreKeyRepeat.3 │ │ ├── glutInit.3 │ │ ├── glutInitDisplayMode.3 │ │ ├── glutInitDisplayString.3 │ │ ├── glutInitWindowPosition.3 │ │ ├── glutJoystickFunc.3 │ │ ├── glutKeyboardFunc.3 │ │ ├── glutKeyboardUpFunc.3 │ │ ├── glutLayerGet.3 │ │ ├── glutMainLoop.3 │ │ ├── glutMenuStatusFunc.3 │ │ ├── glutMotionFunc.3 │ │ ├── glutMouseFunc.3 │ │ ├── glutOverlayDisplayFunc.3 │ │ ├── glutPopWindow.3 │ │ ├── glutPositionWindow.3 │ │ ├── glutPostOverlayRedisplay.3 │ │ ├── glutPostRedisplay.3 │ │ ├── glutRemoveMenuItem.3 │ │ ├── glutRemoveOverlay.3 │ │ ├── glutReportErrors.3 │ │ ├── glutReshapeFunc.3 │ │ ├── glutReshapeWindow.3 │ │ ├── glutSetColor.3 │ │ ├── glutSetCursor.3 │ │ ├── glutSetKeyRepeat.3 │ │ ├── glutSetMenu.3 │ │ ├── glutSetWindow.3 │ │ ├── glutSetWindowTitle.3 │ │ ├── glutShowOverlay.3 │ │ ├── glutShowWindow.3 │ │ ├── glutSolidCone.3 │ │ ├── glutSolidCube.3 │ │ ├── glutSolidDodecahedron.3 │ │ ├── glutSolidIcosahedron.3 │ │ ├── glutSolidOctahedron.3 │ │ ├── glutSolidSphere.3 │ │ ├── glutSolidTeapot.3 │ │ ├── glutSolidTetrahedron.3 │ │ ├── glutSolidTorus.3 │ │ ├── glutSpaceballButtonFunc.3 │ │ ├── glutSpaceballMotionFunc.3 │ │ ├── glutSpaceballRotateFunc.3 │ │ ├── glutSpecialFunc.3 │ │ ├── glutSpecialUpFunc.3 │ │ ├── glutStrokeCharacter.3 │ │ ├── glutStrokeWidth.3 │ │ ├── glutSwapBuffers.3 │ │ ├── glutTabletButtonFunc.3 │ │ ├── glutTabletMotionFunc.3 │ │ ├── glutTimerFunc.3 │ │ ├── glutUseLayer.3 │ │ ├── glutVisibilityFunc.3 │ │ └── glutWarpPointer.3 │ ├── win32_glx.c │ ├── win32_glx.h │ ├── win32_menu.c │ ├── win32_util.c │ ├── win32_winproc.c │ ├── win32_x11.c │ ├── win32_x11.h │ └── x11_x11.c ├── liblex │ ├── Makefile │ ├── allprint.c │ ├── main.c │ ├── reject.c │ ├── yyless.c │ └── yywrap.c ├── libpng │ ├── ANNOUNCE │ ├── CHANGES │ ├── INSTALL │ ├── KNOWNBUG │ ├── LICENSE │ ├── Nmakefile │ ├── README │ ├── TODO │ ├── Y2KINFO │ ├── png.3 │ ├── png.5 │ ├── png.c │ ├── png.h │ ├── png.sym │ ├── pngbar.jpg │ ├── pngbar.png │ ├── pngconf.h │ ├── pngerror.c │ ├── pnggccrd.c │ ├── pngget.c │ ├── pngmem.c │ ├── pngnow.png │ ├── pngpf.3 │ ├── pngpread.c │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngtest.c │ ├── pngtest.png │ ├── pngtrans.c │ ├── pngvcrd.c │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ └── pngwutil.c ├── libposix │ ├── Makefile │ ├── RELEASE │ ├── ROADMAP │ ├── _uwin_init_.cc │ ├── _uwin_pinit_.c │ ├── aso │ │ ├── aso-fcntl.c │ │ ├── aso-sem.c │ │ ├── aso.c │ │ ├── aso.h │ │ ├── asohdr.h │ │ ├── asolock.c │ │ ├── asometh.c │ │ └── asorelax.c │ ├── audio.c │ ├── bsd.c │ ├── clip.c │ ├── clone.c │ ├── clone.h │ ├── common.h │ ├── config.c │ ├── context.c │ ├── debug_crt.h │ ├── devmem.c │ ├── dir.c │ ├── dirsys.h │ ├── dl.c │ ├── dl.h │ ├── dlls.h │ ├── doshandle.c │ ├── dosign.c │ ├── eject.c │ ├── errmap.c │ ├── fatlink.c │ ├── fatlink.h │ ├── features │ │ ├── aso │ │ ├── mmap │ │ └── vmalloc │ ├── fscommon.c │ ├── fsnt.c │ ├── fsnt.h │ ├── getmsvcrt │ ├── group.c │ ├── gtlterm.c │ ├── handles.c │ ├── handles.h │ ├── headers.h │ ├── ident.h │ ├── inet.c │ ├── intercept.c │ ├── ioctl.c │ ├── ipc.c │ ├── ipchdr.h │ ├── locale.c │ ├── lock.c │ ├── log.c │ ├── mem.c │ ├── misc.c │ ├── mnt.c │ ├── mnthdr.h │ ├── modem.c │ ├── mwait.c │ ├── native.h │ ├── net.c │ ├── nethdr.h │ ├── new.cc │ ├── ntclone.h │ ├── ostat.h │ ├── passwd.c │ ├── pathmap.c │ ├── pdev.c │ ├── pdev.h │ ├── pdev_gtl.h │ ├── pdevcache.c │ ├── pdevdisc.c │ ├── pdevnew.h │ ├── pdevold.h │ ├── pdevutils.c │ ├── pmain.c │ ├── posix.imp │ ├── posix.sym │ ├── proc.c │ ├── procdir.c │ ├── procdir.h │ ├── procfs.c │ ├── raw.h │ ├── rawdev.c │ ├── reg.c │ ├── reg.h │ ├── sbrk.c │ ├── shortcut.c │ ├── sid.c │ ├── sig.c │ ├── socket.c │ ├── socket.h │ ├── spawnve.c │ ├── stack.c │ ├── streams.c │ ├── syserr.c │ ├── tape.c │ ├── term.c │ ├── termios.c │ ├── test_init_mount.c │ ├── time.c │ ├── utmp.c │ ├── uwin.3 │ ├── uwin_init.h │ ├── uwin_mount.h │ ├── uwin_serve.h │ ├── uwin_share.h │ ├── uwin_stack.h │ ├── uwindef.h │ ├── uwinpsapi.h │ ├── vmalloc │ │ ├── ast_windows.h │ │ ├── malloc.c │ │ ├── vmalloc.h │ │ ├── vmbest.c │ │ ├── vmclear.c │ │ ├── vmclose.c │ │ ├── vmdcheap.c │ │ ├── vmdebug.c │ │ ├── vmdisc.c │ │ ├── vmexit.c │ │ ├── vmgetmem.c │ │ ├── vmhdr.h │ │ ├── vmlast.c │ │ ├── vmmopen.c │ │ ├── vmopen.c │ │ ├── vmpool.c │ │ ├── vmprivate.c │ │ ├── vmprofile.c │ │ ├── vmregion.c │ │ ├── vmsegment.c │ │ ├── vmset.c │ │ ├── vmstat.c │ │ ├── vmstrdup.c │ │ ├── vmtrace.c │ │ └── vmwalk.c │ ├── vt100 │ │ ├── shell.c │ │ ├── vt420.h │ │ ├── vt_uwin.c │ │ ├── vt_uwin.h │ │ ├── vtcmnd.h │ │ ├── vtconst.h │ │ ├── vtcsi.tbl │ │ ├── vtdcs.c │ │ ├── vtdcs.h │ │ ├── vtdcs.tbl │ │ ├── vtdebug.tbl │ │ ├── vte152.tbl │ │ ├── vte1ansi.tbl │ │ ├── vte2.tbl │ │ ├── vtescseq.c │ │ ├── vtparser.c │ │ ├── vtparser.h │ │ ├── vtprnctl.c │ │ ├── vtprnctl.h │ │ ├── vtpsdef.h │ │ └── vttable.c │ ├── wmain.c │ └── xinit.c ├── libpreload │ ├── Makefile │ └── preload.c ├── libpthread │ ├── ANNOUNCE │ ├── CONTRIBUTORS │ ├── ChangeLog │ ├── FAQ │ ├── GNUmakefile │ ├── MAINTAINERS │ ├── Makefile │ ├── Makefile.in │ ├── NEWS │ ├── Nmakefile │ ├── PROGRESS │ ├── README │ ├── README.CV │ ├── README.NONPORTABLE │ ├── README.WinCE │ ├── TODO │ ├── WinCE-PORT │ ├── acconfig.h │ ├── attr.c │ ├── barrier.c │ ├── cancel.c │ ├── cleanup.c │ ├── condvar.c │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.in │ ├── create.c │ ├── dll.c │ ├── errno.c │ ├── exit.c │ ├── fork.c │ ├── global.c │ ├── implement.h │ ├── install-sh │ ├── misc.c │ ├── mutex.c │ ├── need_errno.h │ ├── nonportable.c │ ├── private.c │ ├── pthread.c │ ├── pthread.dsp │ ├── pthread.dsw │ ├── pthread.h │ ├── pthread.ign │ ├── pthread.sym │ ├── pthread_attr_destroy.c │ ├── pthread_attr_getdetachstate.c │ ├── pthread_attr_getinheritsched.c │ ├── pthread_attr_getschedparam.c │ ├── pthread_attr_getschedpolicy.c │ ├── pthread_attr_getscope.c │ ├── pthread_attr_getstackaddr.c │ ├── pthread_attr_getstacksize.c │ ├── pthread_attr_init.c │ ├── pthread_attr_setdetachstate.c │ ├── pthread_attr_setinheritsched.c │ ├── pthread_attr_setschedparam.c │ ├── pthread_attr_setschedpolicy.c │ ├── pthread_attr_setscope.c │ ├── pthread_attr_setstackaddr.c │ ├── pthread_attr_setstacksize.c │ ├── pthread_barrier_destroy.c │ ├── pthread_barrier_init.c │ ├── pthread_barrier_wait.c │ ├── pthread_barrierattr_destroy.c │ ├── pthread_barrierattr_getpshared.c │ ├── pthread_barrierattr_init.c │ ├── pthread_barrierattr_setpshared.c │ ├── pthread_cancel.c │ ├── pthread_cond_destroy.c │ ├── pthread_cond_init.c │ ├── pthread_cond_signal.c │ ├── pthread_cond_wait.c │ ├── pthread_condattr_destroy.c │ ├── pthread_condattr_getpshared.c │ ├── pthread_condattr_init.c │ ├── pthread_condattr_setpshared.c │ ├── pthread_delay_np.c │ ├── pthread_detach.c │ ├── pthread_equal.c │ ├── pthread_exit.c │ ├── pthread_getconcurrency.c │ ├── pthread_getschedparam.c │ ├── pthread_getspecific.c │ ├── pthread_getw32threadhandle_np.c │ ├── pthread_join.c │ ├── pthread_key_create.c │ ├── pthread_key_delete.c │ ├── pthread_mutex_destroy.c │ ├── pthread_mutex_init.c │ ├── pthread_mutex_lock.c │ ├── pthread_mutex_timedlock.c │ ├── pthread_mutex_trylock.c │ ├── pthread_mutex_unlock.c │ ├── pthread_mutexattr_destroy.c │ ├── pthread_mutexattr_getkind_np.c │ ├── pthread_mutexattr_getpshared.c │ ├── pthread_mutexattr_gettype.c │ ├── pthread_mutexattr_init.c │ ├── pthread_mutexattr_setkind_np.c │ ├── pthread_mutexattr_setpshared.c │ ├── pthread_mutexattr_settype.c │ ├── pthread_num_processors_np.c │ ├── pthread_once.c │ ├── pthread_rwlock_destroy.c │ ├── pthread_rwlock_init.c │ ├── pthread_rwlock_rdlock.c │ ├── pthread_rwlock_timedrdlock.c │ ├── pthread_rwlock_timedwrlock.c │ ├── pthread_rwlock_tryrdlock.c │ ├── pthread_rwlock_trywrlock.c │ ├── pthread_rwlock_unlock.c │ ├── pthread_rwlock_wrlock.c │ ├── pthread_rwlockattr_destroy.c │ ├── pthread_rwlockattr_getpshared.c │ ├── pthread_rwlockattr_init.c │ ├── pthread_rwlockattr_setpshared.c │ ├── pthread_self.c │ ├── pthread_setcancelstate.c │ ├── pthread_setcanceltype.c │ ├── pthread_setconcurrency.c │ ├── pthread_setschedparam.c │ ├── pthread_setspecific.c │ ├── pthread_spin_destroy.c │ ├── pthread_spin_init.c │ ├── pthread_spin_lock.c │ ├── pthread_spin_trylock.c │ ├── pthread_spin_unlock.c │ ├── pthread_testcancel.c │ ├── pthread_timechange_handler_np.c │ ├── pthread_win32_attach_detach_np.c │ ├── ptw32_InterlockedCompareExchange.c │ ├── ptw32_callUserDestroyRoutines.c │ ├── ptw32_calloc.c │ ├── ptw32_cond_check_need_init.c │ ├── ptw32_decrease_semaphore.c │ ├── ptw32_getprocessors.c │ ├── ptw32_increase_semaphore.c │ ├── ptw32_is_attr.c │ ├── ptw32_mutex_check_need_init.c │ ├── ptw32_new.c │ ├── ptw32_processInitialize.c │ ├── ptw32_processTerminate.c │ ├── ptw32_rwlock_cancelwrwait.c │ ├── ptw32_rwlock_check_need_init.c │ ├── ptw32_spinlock_check_need_init.c │ ├── ptw32_threadDestroy.c │ ├── ptw32_threadStart.c │ ├── ptw32_throw.c │ ├── ptw32_timespec.c │ ├── ptw32_tkAssocCreate.c │ ├── ptw32_tkAssocDestroy.c │ ├── rwlock.c │ ├── sched.c │ ├── sched.h │ ├── sched_get_priority_max.c │ ├── sched_get_priority_min.c │ ├── sched_getscheduler.c │ ├── sched_setscheduler.c │ ├── sched_yield.c │ ├── sem_close.c │ ├── sem_destroy.c │ ├── sem_getvalue.c │ ├── sem_init.c │ ├── sem_open.c │ ├── sem_post.c │ ├── sem_post_multiple.c │ ├── sem_timedwait.c │ ├── sem_trywait.c │ ├── sem_unlink.c │ ├── sem_wait.c │ ├── semaphore.c │ ├── semaphore.h │ ├── signal.c │ ├── spin.c │ ├── sync.c │ ├── tests │ │ ├── ChangeLog │ │ ├── GNUmakefile │ │ ├── Makefile │ │ ├── README │ │ ├── README.benchtests │ │ ├── barrier1.c │ │ ├── barrier2.c │ │ ├── barrier3.c │ │ ├── barrier4.c │ │ ├── barrier5.c │ │ ├── benchtest.h │ │ ├── benchtest1.c │ │ ├── benchtest2.c │ │ ├── benchtest3.c │ │ ├── benchtest4.c │ │ ├── benchtest5.c │ │ ├── cancel1.c │ │ ├── cancel2.c │ │ ├── cancel3.c │ │ ├── cancel4.c │ │ ├── cancel5.c │ │ ├── cancel6a.c │ │ ├── cancel6d.c │ │ ├── cleanup0.c │ │ ├── cleanup1.c │ │ ├── cleanup2.c │ │ ├── cleanup3.c │ │ ├── condvar1.c │ │ ├── condvar1_1.c │ │ ├── condvar1_2.c │ │ ├── condvar2.c │ │ ├── condvar2_1.c │ │ ├── condvar3.c │ │ ├── condvar3_1.c │ │ ├── condvar3_2.c │ │ ├── condvar3_3.c │ │ ├── condvar4.c │ │ ├── condvar5.c │ │ ├── condvar6.c │ │ ├── condvar7.c │ │ ├── condvar8.c │ │ ├── condvar9.c │ │ ├── context1.c │ │ ├── count1.c │ │ ├── create1.c │ │ ├── create2.c │ │ ├── delay1.c │ │ ├── delay2.c │ │ ├── equal1.c │ │ ├── errno1.c │ │ ├── exception1.c │ │ ├── exception2.c │ │ ├── exception3.c │ │ ├── exit1.c │ │ ├── exit2.c │ │ ├── exit3.c │ │ ├── eyal1.c │ │ ├── inherit1.c │ │ ├── join0.c │ │ ├── join1.c │ │ ├── join2.c │ │ ├── loadfree.c │ │ ├── mutex1.c │ │ ├── mutex1e.c │ │ ├── mutex1n.c │ │ ├── mutex1r.c │ │ ├── mutex2.c │ │ ├── mutex3.c │ │ ├── mutex4.c │ │ ├── mutex5.c │ │ ├── mutex6.c │ │ ├── mutex6e.c │ │ ├── mutex6n.c │ │ ├── mutex6r.c │ │ ├── mutex7.c │ │ ├── mutex7e.c │ │ ├── mutex7n.c │ │ ├── mutex7r.c │ │ ├── mutex8.c │ │ ├── mutex8e.c │ │ ├── mutex8n.c │ │ ├── mutex8r.c │ │ ├── once1.c │ │ ├── priority1.c │ │ ├── priority2.c │ │ ├── rwlock1.c │ │ ├── rwlock2.c │ │ ├── rwlock2_t.c │ │ ├── rwlock3.c │ │ ├── rwlock3_t.c │ │ ├── rwlock4.c │ │ ├── rwlock4_t.c │ │ ├── rwlock5.c │ │ ├── rwlock5_t.c │ │ ├── rwlock6.c │ │ ├── rwlock6_t.c │ │ ├── rwlock6_t2.c │ │ ├── rwlock7.c │ │ ├── self1.c │ │ ├── self2.c │ │ ├── semaphore1.c │ │ ├── spin1.c │ │ ├── spin2.c │ │ ├── spin3.c │ │ ├── spin4.c │ │ ├── test.h │ │ ├── tryentercs.c │ │ ├── tryentercs2.c │ │ └── tsd1.c │ ├── tsd.c │ └── w32_CancelableWait.c ├── librpc │ ├── DISCLAIMER │ ├── Makefile.inc │ ├── Nmakefile │ ├── README │ ├── auth_none.c │ ├── auth_unix.c │ ├── authunix_prot.c │ ├── bindresvport.3 │ ├── bindresvport.c │ ├── clnt_generic.c │ ├── clnt_perror.c │ ├── clnt_raw.c │ ├── clnt_simple.c │ ├── clnt_tcp.c │ ├── clnt_udp.c │ ├── get_myaddress.c │ ├── getrpcent.3 │ ├── getrpcent.c │ ├── getrpcport.3 │ ├── getrpcport.c │ ├── namespace.h │ ├── pmap_clnt.c │ ├── pmap_getmaps.c │ ├── pmap_getport.c │ ├── pmap_prot.c │ ├── pmap_prot2.c │ ├── pmap_rmt.c │ ├── rpc.3 │ ├── rpc.sym │ ├── rpc │ │ ├── auth.h │ │ ├── auth_unix.h │ │ ├── clnt.h │ │ ├── pmap_clnt.h │ │ ├── pmap_prot.h │ │ ├── pmap_rmt.h │ │ ├── rpc.h │ │ ├── rpc_msg.h │ │ ├── svc.h │ │ ├── svc_auth.h │ │ ├── types.h │ │ └── xdr.h │ ├── rpc_callmsg.c │ ├── rpc_commondata.c │ ├── rpc_dtablesize.c │ ├── rpc_prot.c │ ├── svc.c │ ├── svc_auth.c │ ├── svc_auth_unix.c │ ├── svc_raw.c │ ├── svc_run.c │ ├── svc_simple.c │ ├── svc_tcp.c │ ├── svc_udp.c │ ├── xdr.3 │ ├── xdr.c │ ├── xdr_array.c │ ├── xdr_float.c │ ├── xdr_mem.c │ ├── xdr_rec.c │ ├── xdr_reference.c │ └── xdr_stdio.c ├── librpcsvc │ ├── Makefile │ ├── Nmakefile │ ├── bootparam_prot.x │ ├── klm_prot.x │ ├── mount.x │ ├── nfs_prot.x │ ├── nlm_prot.x │ ├── rex.x │ ├── rnusers.x │ ├── rpcsvc.sym │ ├── rquota.x │ ├── rstat.x │ ├── rusers.x │ ├── rwall.x │ ├── sm_inter.x │ ├── spray.x │ ├── yp.x │ └── yppasswd.x ├── libscreen │ ├── Makefile │ ├── README │ ├── README.color │ ├── README.mouse │ ├── addch.c │ ├── addchnstr.c │ ├── addkey.c │ ├── addnstr.c │ ├── addnwstr.c │ ├── addwch.c │ ├── bkgd.c │ ├── border.c │ ├── can_change_color.c │ ├── chkinput.c │ ├── clrtobot.c │ ├── clrtoeol.c │ ├── color_content.c │ ├── copywin.c │ ├── curs_set.c │ ├── curses.h │ ├── cursync.c │ ├── def_prog.c │ ├── def_shell.c │ ├── delay_op.c │ ├── delch.c │ ├── delkey.c │ ├── delkeymap.c │ ├── delscreen.c │ ├── delterm.c │ ├── delwin.c │ ├── derwin.c │ ├── doupdate.c │ ├── draino.c │ ├── dupwin.c │ ├── echochar.c │ ├── edit.c │ ├── endwin.c │ ├── erase.c │ ├── features │ │ └── screen │ ├── flushinp.c │ ├── garbaged.c │ ├── getch.c │ ├── getstr.c │ ├── getwch.c │ ├── getwin.c │ ├── getwstr.c │ ├── has_colors.c │ ├── has_ic.c │ ├── has_il.c │ ├── idlok.c │ ├── inchnstr.c │ ├── init_color.c │ ├── init_pair.c │ ├── initscr.c │ ├── innstr.c │ ├── insch.c │ ├── insdelln.c │ ├── insnstr.c │ ├── insnwstr.c │ ├── insshift.c │ ├── inswch.c │ ├── intrflush.c │ ├── inwch.c │ ├── istouchln.c │ ├── istouchwin.c │ ├── keyname.ed │ ├── keypad.c │ ├── line.c │ ├── match.c │ ├── matchname.c │ ├── mbaddch.c │ ├── mbcharlen.c │ ├── mbdisplen.c │ ├── mbinch.c │ ├── mbmove.c │ ├── mbtransl.c │ ├── menu.c │ ├── meta.c │ ├── mouse_xterm.c │ ├── mouseget.c │ ├── mousemap.c │ ├── mouseon.c │ ├── mousereq.c │ ├── move.c │ ├── mvcur.c │ ├── mvderwin.c │ ├── mvprintw.c │ ├── mvscanw.c │ ├── mvwin.c │ ├── names.c │ ├── napms.c │ ├── newscreen.c │ ├── newwin.c │ ├── nextname.c │ ├── nodelay.c │ ├── pair_content.c │ ├── pechochar.c │ ├── pnoutref.c │ ├── prefresh.c │ ├── printw.c │ ├── putchar.c │ ├── putp.c │ ├── putwin.c │ ├── rdtimeout.c │ ├── refresh.c │ ├── reset_prog.c │ ├── reset_sh.c │ ├── restarttm.c │ ├── rgb2hls.c │ ├── ring.c │ ├── ripoff.c │ ├── s_extern.c │ ├── scanw.c │ ├── scr_dump.c │ ├── scr_init.c │ ├── scr_reset.c │ ├── scr_rstr.c │ ├── screen_x │ │ └── dcolors.c │ ├── scrhdr.h │ ├── scrl.c │ ├── set_color.c │ ├── setbaud.c │ ├── setcbreak.c │ ├── setcurscr.c │ ├── setcurterm.c │ ├── setecho.c │ ├── setflow.c │ ├── setkeymap.ed │ ├── setnl.c │ ├── setqiflush.c │ ├── setraw.c │ ├── setscrreg.c │ ├── setsyx.c │ ├── settc.c │ ├── setupterm.c │ ├── slk_attr.c │ ├── slk_clear.c │ ├── slk_label.c │ ├── slk_nout.c │ ├── slk_rfsh.c │ ├── slk_rstr.c │ ├── slk_set.c │ ├── slk_start.c │ ├── slk_touch.c │ ├── start_color.c │ ├── strdisplen.c │ ├── strmatch.c │ ├── sync.c │ ├── t_extern.c │ ├── tcdecode.c │ ├── tcread.ed │ ├── term.caps │ ├── term.caps.color │ ├── term.ed │ ├── term.short.ed │ ├── termcap.c │ ├── termhdr.h │ ├── termid.c │ ├── terminfo.c │ ├── tflush.c │ ├── tgetch.c │ ├── tgetwch.c │ ├── tgoto.c │ ├── tifnames.ed │ ├── tilname.ed │ ├── tinames.ed │ ├── tinputfd.c │ ├── tiread.ed │ ├── touchln.c │ ├── tparm.c │ ├── tputs.c │ ├── tstp.c │ ├── ttimeout.c │ ├── tty_mode.c │ ├── twinsize.c │ ├── typeahead.c │ ├── unctrl.c │ ├── unctrl.h │ ├── ungetch.c │ ├── ungetwch.c │ ├── unview.c │ ├── vidupdate.c │ ├── view.c │ ├── wmouse.c │ └── wnoutref.c ├── libstdio │ ├── Makefile │ ├── Sfstdhdr.sh │ ├── Sfstdio.c │ ├── ast.sym │ ├── ast │ │ ├── ast.h │ │ ├── ast_getopt.h │ │ ├── ast_std.h │ │ ├── ast_time.h │ │ ├── ast_tty.h │ │ ├── ast_version.h │ │ ├── ls.h │ │ ├── sfhdr.h │ │ ├── sfhdr.h.orig │ │ ├── sfio.h │ │ ├── sfio.h.orig │ │ ├── sfio_s.h │ │ ├── sfio_s.h.orig │ │ ├── sfio_t.h │ │ ├── sfio_t.h.orig │ │ ├── vthread.h │ │ └── vthread.h.orig │ ├── cleanup.c │ ├── clearerr.c │ ├── doprnt.c │ ├── doscan.c │ ├── fclose.c │ ├── fdopen.c │ ├── features │ │ ├── common │ │ ├── sfio │ │ └── stdio │ ├── feof.c │ ├── ferror.c │ ├── fflush.c │ ├── fgetc.c │ ├── fgetpos.c │ ├── fgets.c │ ├── filbuf.c │ ├── fileno.c │ ├── flockfile.c │ ├── flsbuf.c │ ├── fopen.c │ ├── fprintf.c │ ├── fpurge.c │ ├── fputc.c │ ├── fputs.c │ ├── fread.c │ ├── freopen.c │ ├── fscanf.c │ ├── fseek.c │ ├── fsetpos.c │ ├── ftell.c │ ├── ftrylockfile.c │ ├── funlockfile.c │ ├── fwrite.c │ ├── getc.c │ ├── getchar.c │ ├── gets.c │ ├── getw.c │ ├── pclose.c │ ├── popen.c │ ├── printf.c │ ├── putc.c │ ├── putchar.c │ ├── puts.c │ ├── putw.c │ ├── rewind.c │ ├── scanf.c │ ├── setbuf.c │ ├── setbuffer.c │ ├── setlinebuf.c │ ├── setvbuf.c │ ├── snprintf.c │ ├── sprintf.c │ ├── sscanf.c │ ├── stdextern.c │ ├── stdio.sym │ ├── stdstream.c │ ├── tmpfile.c │ ├── ungetc.c │ ├── vfprintf.c │ ├── vfscanf.c │ ├── vprintf.c │ ├── vscanf.c │ ├── vsnprintf.c │ ├── vsprintf.c │ └── vsscanf.c └── liby │ ├── Makefile │ ├── yyerror.c │ └── yyparse.c └── uwin ├── applet ├── ConfigConsoleDlg.cpp ├── ConfigConsoleDlg.h ├── ConfigMiscDlg.cpp ├── ConfigMiscDlg.h ├── ConfigMsgDlg.cpp ├── ConfigMsgDlg.h ├── ConfigResource.cpp ├── ConfigResource.h ├── ConfigSemDlg.cpp ├── ConfigSemDlg.h ├── ConfigShmDlg.cpp ├── ConfigShmDlg.h ├── ConfigureDaemon.cpp ├── ConfigureDaemon.h ├── FrameHandler.cpp ├── JkInetdConf.cpp ├── JkInetdConf.h ├── Makefile ├── RELEASE ├── ReadMe.txt ├── RegistryOps.cpp ├── RegistryOps.h ├── SortClass.cpp ├── SortClass.h ├── StdAfx.cpp ├── SysInfo.cpp ├── UcsInstall.cpp ├── UcsInstall.h ├── UwinClient.cpp ├── UwinClient.h ├── UwinGeneral.cpp ├── UwinGeneral.h ├── UwinInetd.cpp ├── UwinInetd.h ├── UwinSystem.cpp ├── UwinSystem.h ├── UwinTelnet.cpp ├── UwinTelnet.h ├── UwinUms.cpp ├── UwinUms.h ├── globals.cpp ├── globals.h ├── mfc │ ├── afx.h │ ├── afx.inl │ ├── afxcmn.h │ ├── afxcmn.inl │ ├── afxcmn2.inl │ ├── afxcoll.h │ ├── afxcoll.inl │ ├── afxcom_.h │ ├── afxdao.h │ ├── afxdao.inl │ ├── afxdb.h │ ├── afxdb.inl │ ├── afxdb_.h │ ├── afxdd_.h │ ├── afxdisp.h │ ├── afxdlgs.h │ ├── afxdlgs.inl │ ├── afxdll_.h │ ├── afxext.h │ ├── afxext.inl │ ├── afxmsg_.h │ ├── afxodlgs.h │ ├── afxole.h │ ├── afxole.inl │ ├── afxplex_.h │ ├── afxres.h │ ├── afxstat_.h │ ├── afxtempl.h │ ├── afxtls_.h │ ├── afxv_cfg.h │ ├── afxv_cpu.h │ ├── afxv_dll.h │ ├── afxv_w32.h │ ├── afxver_.h │ ├── afxwin.h │ ├── afxwin1.inl │ └── afxwin2.inl ├── regupdate.cpp ├── resource.h ├── sql.h ├── sqlext.h ├── sqltypes.h ├── standalone.c ├── stdafx.h ├── sysinfo.h ├── testcpl.cpp ├── testcpl.def ├── testcpl.dsp ├── testcpl.h ├── testcpl.rc └── winres.h ├── doc ├── Makefile ├── applet.html ├── compilers.mm ├── config.guess ├── config.sub ├── credits ├── debugging.html ├── devset.mm ├── dlls.mm ├── faq.dev.html ├── faq.general.html ├── faq.installation.html ├── faq.usage.html ├── faq.x11.html ├── gentab ├── gnu_license.txt ├── iffe.mm ├── images │ ├── uwin.gif │ └── uwinback.gif ├── index.html ├── links.mm ├── map.html ├── nmake.mm ├── problems.html ├── reg.mm ├── seattle.pdf ├── socket.tab ├── talk.pdf ├── tape.html ├── telnet.gif ├── telnet.html ├── ucb_license.txt ├── unin.ico ├── utilities.tab ├── uwin-sear-i32.ico ├── uwin-sear-i64.ico ├── uwin-sear-rt32.ico ├── uwin-sear-rt64.ico ├── uwin-sear32.ico ├── uwin-sear64.ico ├── uwin.faq.html ├── uwin.html ├── uwin.ico ├── uwin32.ico ├── uwin64.ico ├── whatis.mm ├── winnt.pdf ├── winnt3.pdf ├── xbase.mm └── xopen.tab ├── fun ├── Makefile ├── cv.sh ├── dirs.sh ├── emacs_keybind.sh ├── getopt.sh ├── keybind.sh ├── title.sh ├── vi_keybind.sh └── winpath.sh ├── install ├── Makefile ├── README ├── RELEASE.txt ├── base-gpl.files ├── base.files ├── dev.files ├── dev.finish ├── error.txt ├── groff.files ├── install.sh.sh ├── instgui.c ├── instgui.rc ├── instsear.c ├── mksear.sh ├── perl.files ├── phase1.sh.sh ├── phase2.sh ├── release ├── release.sh ├── relnotes.sh ├── resource.h ├── sear.mk ├── terminfo.files ├── test_uwin_keys.c ├── unin.rc ├── uninstall.bat ├── uninstall.c ├── uninstall.sh ├── uwin_keys.c ├── xbase.files ├── xdev.files └── xfonts.files ├── misc ├── Makefile ├── RELEASE ├── ar2omf.c ├── browser.c ├── dumpsd.c ├── dumpstack.c ├── echo.c ├── hostname.c ├── init.c ├── ipcrm.c ├── ipcs.c ├── ldd.c ├── mapread.c ├── mknod.c ├── nm.c ├── nocrnl.c ├── objstamp.c ├── shortcut.c ├── shutdown.c ├── size.c ├── su.c ├── sync.c ├── tput.c ├── unixpath.c ├── unmangle.c ├── winsize.c └── wterm.c ├── native ├── Makefile ├── runcmd.c └── silence.c └── serv ├── ADMIN.mk ├── Makefile ├── RELEASE ├── forkhelper.c ├── getinfo.c ├── getinfo.h ├── isuwin_running.c ├── login.c ├── loginp.c ├── logins.c ├── lsaprivs.c ├── mkpasswd.c ├── passwd.c ├── tracer.c ├── ucs.c ├── ums.c ├── uw.ico └── uwin.rc /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/README.md -------------------------------------------------------------------------------- /bin/execrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/bin/execrate -------------------------------------------------------------------------------- /bin/ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/bin/ignore -------------------------------------------------------------------------------- /bin/mamprobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/bin/mamprobe -------------------------------------------------------------------------------- /bin/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/bin/package -------------------------------------------------------------------------------- /bin/silent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/bin/silent -------------------------------------------------------------------------------- /lib/package/INIT.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/INIT.README -------------------------------------------------------------------------------- /lib/package/INIT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/INIT.html -------------------------------------------------------------------------------- /lib/package/INIT.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/INIT.pkg -------------------------------------------------------------------------------- /lib/package/INIT.req: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/package/INIT.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/INIT.ver -------------------------------------------------------------------------------- /lib/package/LICENSES/ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/LICENSES/ast -------------------------------------------------------------------------------- /lib/package/LICENSES/bsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/LICENSES/bsd -------------------------------------------------------------------------------- /lib/package/LICENSES/epl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/LICENSES/epl -------------------------------------------------------------------------------- /lib/package/ast.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/ast.def -------------------------------------------------------------------------------- /lib/package/ast.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/ast.lic -------------------------------------------------------------------------------- /lib/package/bsd.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/bsd.def -------------------------------------------------------------------------------- /lib/package/bsd.lic: -------------------------------------------------------------------------------- 1 | . bsd.def 2 | -------------------------------------------------------------------------------- /lib/package/epl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/epl.def -------------------------------------------------------------------------------- /lib/package/package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/package.mk -------------------------------------------------------------------------------- /lib/package/uwin.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/uwin.README -------------------------------------------------------------------------------- /lib/package/uwin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/uwin.def -------------------------------------------------------------------------------- /lib/package/uwin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/uwin.html -------------------------------------------------------------------------------- /lib/package/uwin.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/uwin.lic -------------------------------------------------------------------------------- /lib/package/uwin.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/uwin.pkg -------------------------------------------------------------------------------- /lib/package/uwin.req: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/package/uwin.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/lib/package/uwin.ver -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- 1 | :MAKE: 2 | -------------------------------------------------------------------------------- /src/Mamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/Mamfile -------------------------------------------------------------------------------- /src/cmd/INIT/C+probe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/C+probe -------------------------------------------------------------------------------- /src/cmd/INIT/CONVERT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/CONVERT.mk -------------------------------------------------------------------------------- /src/cmd/INIT/MAPLIB.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/MAPLIB.mk -------------------------------------------------------------------------------- /src/cmd/INIT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/Makefile -------------------------------------------------------------------------------- /src/cmd/INIT/Mamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/Mamfile -------------------------------------------------------------------------------- /src/cmd/INIT/PROBE.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/PROBE.mk -------------------------------------------------------------------------------- /src/cmd/INIT/RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/RELEASE -------------------------------------------------------------------------------- /src/cmd/INIT/TEST.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/TEST.mk -------------------------------------------------------------------------------- /src/cmd/INIT/WWW.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/WWW.mk -------------------------------------------------------------------------------- /src/cmd/INIT/ar.ibm.risc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/ar.ibm.risc -------------------------------------------------------------------------------- /src/cmd/INIT/cc.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/cc.darwin -------------------------------------------------------------------------------- /src/cmd/INIT/cc.hp.ia64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/cc.hp.ia64 -------------------------------------------------------------------------------- /src/cmd/INIT/cc.hp.pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/cc.hp.pa -------------------------------------------------------------------------------- /src/cmd/INIT/cc.hp.pa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/cc.hp.pa64 -------------------------------------------------------------------------------- /src/cmd/INIT/cc.ibm.risc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/cc.ibm.risc -------------------------------------------------------------------------------- /src/cmd/INIT/cc.mvs.390: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/cc.mvs.390 -------------------------------------------------------------------------------- /src/cmd/INIT/cc.pentium4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/cc.pentium4 -------------------------------------------------------------------------------- /src/cmd/INIT/cc.sco.i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/cc.sco.i386 -------------------------------------------------------------------------------- /src/cmd/INIT/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/db.c -------------------------------------------------------------------------------- /src/cmd/INIT/ditto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/ditto.sh -------------------------------------------------------------------------------- /src/cmd/INIT/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/dl.c -------------------------------------------------------------------------------- /src/cmd/INIT/execrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/execrate.sh -------------------------------------------------------------------------------- /src/cmd/INIT/filter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/filter.sh -------------------------------------------------------------------------------- /src/cmd/INIT/gdbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/gdbm.c -------------------------------------------------------------------------------- /src/cmd/INIT/gdbm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/gdbm1.c -------------------------------------------------------------------------------- /src/cmd/INIT/gdbm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/gdbm2.c -------------------------------------------------------------------------------- /src/cmd/INIT/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/hello.c -------------------------------------------------------------------------------- /src/cmd/INIT/hurl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/hurl.sh -------------------------------------------------------------------------------- /src/cmd/INIT/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/iconv.c -------------------------------------------------------------------------------- /src/cmd/INIT/iffe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/iffe.sh -------------------------------------------------------------------------------- /src/cmd/INIT/iffe.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/iffe.tst -------------------------------------------------------------------------------- /src/cmd/INIT/ignore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/ignore.sh -------------------------------------------------------------------------------- /src/cmd/INIT/intl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/intl.c -------------------------------------------------------------------------------- /src/cmd/INIT/ld.hp.pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/ld.hp.pa -------------------------------------------------------------------------------- /src/cmd/INIT/ldd.darwin: -------------------------------------------------------------------------------- 1 | : mac os10 ldd 2 | otool -L "$@" 3 | -------------------------------------------------------------------------------- /src/cmd/INIT/ldd.hp.pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/ldd.hp.pa -------------------------------------------------------------------------------- /src/cmd/INIT/ldd.lynxos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/ldd.lynxos -------------------------------------------------------------------------------- /src/cmd/INIT/ldd.mvs.390: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/ldd.mvs.390 -------------------------------------------------------------------------------- /src/cmd/INIT/ldd.sgi: -------------------------------------------------------------------------------- 1 | : sgi.mips ldd 2 | odump -Dl "$@" 3 | -------------------------------------------------------------------------------- /src/cmd/INIT/m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/m.c -------------------------------------------------------------------------------- /src/cmd/INIT/m2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/m2.c -------------------------------------------------------------------------------- /src/cmd/INIT/m3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/m3.c -------------------------------------------------------------------------------- /src/cmd/INIT/m4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/m4.c -------------------------------------------------------------------------------- /src/cmd/INIT/m5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/m5.c -------------------------------------------------------------------------------- /src/cmd/INIT/m6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/m6.c -------------------------------------------------------------------------------- /src/cmd/INIT/make.probe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/make.probe -------------------------------------------------------------------------------- /src/cmd/INIT/mamake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/mamake.c -------------------------------------------------------------------------------- /src/cmd/INIT/mamake.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/mamake.rt -------------------------------------------------------------------------------- /src/cmd/INIT/mkdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/mkdir.sh -------------------------------------------------------------------------------- /src/cmd/INIT/mktest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/mktest.sh -------------------------------------------------------------------------------- /src/cmd/INIT/mprobe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/mprobe.sh -------------------------------------------------------------------------------- /src/cmd/INIT/nsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/nsl.c -------------------------------------------------------------------------------- /src/cmd/INIT/p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/p.c -------------------------------------------------------------------------------- /src/cmd/INIT/proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/proto.c -------------------------------------------------------------------------------- /src/cmd/INIT/ratz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/ratz.c -------------------------------------------------------------------------------- /src/cmd/INIT/release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/release.c -------------------------------------------------------------------------------- /src/cmd/INIT/rt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/rt.sh -------------------------------------------------------------------------------- /src/cmd/INIT/silent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/silent.sh -------------------------------------------------------------------------------- /src/cmd/INIT/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/socket.c -------------------------------------------------------------------------------- /src/cmd/INIT/w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/w.c -------------------------------------------------------------------------------- /src/cmd/INIT/w2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/INIT/w2.c -------------------------------------------------------------------------------- /src/cmd/INITuwin/m.c: -------------------------------------------------------------------------------- 1 | void __dummy(void) {} 2 | -------------------------------------------------------------------------------- /src/cmd/Makefile: -------------------------------------------------------------------------------- 1 | :MAKE: 2 | -------------------------------------------------------------------------------- /src/cmd/Mamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/Mamfile -------------------------------------------------------------------------------- /src/cmd/awk/FIXES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/FIXES -------------------------------------------------------------------------------- /src/cmd/awk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/LICENSE -------------------------------------------------------------------------------- /src/cmd/awk/Nmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/Nmakefile -------------------------------------------------------------------------------- /src/cmd/awk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/README -------------------------------------------------------------------------------- /src/cmd/awk/awk.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/awk.1 -------------------------------------------------------------------------------- /src/cmd/awk/awk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/awk.h -------------------------------------------------------------------------------- /src/cmd/awk/awkgram.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/awkgram.y -------------------------------------------------------------------------------- /src/cmd/awk/b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/b.c -------------------------------------------------------------------------------- /src/cmd/awk/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/lex.c -------------------------------------------------------------------------------- /src/cmd/awk/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/lib.c -------------------------------------------------------------------------------- /src/cmd/awk/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/main.c -------------------------------------------------------------------------------- /src/cmd/awk/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/makefile -------------------------------------------------------------------------------- /src/cmd/awk/maketab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/maketab.c -------------------------------------------------------------------------------- /src/cmd/awk/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/parse.c -------------------------------------------------------------------------------- /src/cmd/awk/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/proto.h -------------------------------------------------------------------------------- /src/cmd/awk/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/run.c -------------------------------------------------------------------------------- /src/cmd/awk/tran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/tran.c -------------------------------------------------------------------------------- /src/cmd/awk/ytab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/ytab.c -------------------------------------------------------------------------------- /src/cmd/awk/ytab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/awk/ytab.h -------------------------------------------------------------------------------- /src/cmd/bc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/AUTHORS -------------------------------------------------------------------------------- /src/cmd/bc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/COPYING -------------------------------------------------------------------------------- /src/cmd/bc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/ChangeLog -------------------------------------------------------------------------------- /src/cmd/bc/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/INSTALL -------------------------------------------------------------------------------- /src/cmd/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/Makefile -------------------------------------------------------------------------------- /src/cmd/bc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/Makefile.am -------------------------------------------------------------------------------- /src/cmd/bc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/Makefile.in -------------------------------------------------------------------------------- /src/cmd/bc/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/NEWS -------------------------------------------------------------------------------- /src/cmd/bc/Nmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/Nmakefile -------------------------------------------------------------------------------- /src/cmd/bc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/README -------------------------------------------------------------------------------- /src/cmd/bc/Test/BUG.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/Test/BUG.bc -------------------------------------------------------------------------------- /src/cmd/bc/Test/atan.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/Test/atan.b -------------------------------------------------------------------------------- /src/cmd/bc/Test/div.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/Test/div.b -------------------------------------------------------------------------------- /src/cmd/bc/Test/exp.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/Test/exp.b -------------------------------------------------------------------------------- /src/cmd/bc/Test/fact.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/Test/fact.b -------------------------------------------------------------------------------- /src/cmd/bc/Test/jn.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/Test/jn.b -------------------------------------------------------------------------------- /src/cmd/bc/Test/ln.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/Test/ln.b -------------------------------------------------------------------------------- /src/cmd/bc/Test/mul.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/Test/mul.b -------------------------------------------------------------------------------- /src/cmd/bc/Test/signum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/Test/signum -------------------------------------------------------------------------------- /src/cmd/bc/Test/sine.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/Test/sine.b -------------------------------------------------------------------------------- /src/cmd/bc/Test/sqrt.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/Test/sqrt.b -------------------------------------------------------------------------------- /src/cmd/bc/acconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/acconfig.h -------------------------------------------------------------------------------- /src/cmd/bc/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/aclocal.m4 -------------------------------------------------------------------------------- /src/cmd/bc/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/bc/Makefile -------------------------------------------------------------------------------- /src/cmd/bc/bc/bc.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/bc/bc.y -------------------------------------------------------------------------------- /src/cmd/bc/bc/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/bc/global.c -------------------------------------------------------------------------------- /src/cmd/bc/bc/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/bc/load.c -------------------------------------------------------------------------------- /src/cmd/bc/bc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/bc/main.c -------------------------------------------------------------------------------- /src/cmd/bc/bc/sbc.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/bc/sbc.y -------------------------------------------------------------------------------- /src/cmd/bc/bc/scan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/bc/scan.l -------------------------------------------------------------------------------- /src/cmd/bc/bc/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/bc/util.c -------------------------------------------------------------------------------- /src/cmd/bc/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/config.h.in -------------------------------------------------------------------------------- /src/cmd/bc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/configure -------------------------------------------------------------------------------- /src/cmd/bc/dc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/dc/Makefile -------------------------------------------------------------------------------- /src/cmd/bc/dc/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/dc/array.c -------------------------------------------------------------------------------- /src/cmd/bc/dc/dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/dc/dc.c -------------------------------------------------------------------------------- /src/cmd/bc/dc/dc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/dc/dc.h -------------------------------------------------------------------------------- /src/cmd/bc/dc/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/dc/eval.c -------------------------------------------------------------------------------- /src/cmd/bc/dc/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/dc/misc.c -------------------------------------------------------------------------------- /src/cmd/bc/dc/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/dc/stack.c -------------------------------------------------------------------------------- /src/cmd/bc/dc/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/dc/string.c -------------------------------------------------------------------------------- /src/cmd/bc/doc/bc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/doc/bc.1 -------------------------------------------------------------------------------- /src/cmd/bc/doc/dc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/doc/dc.1 -------------------------------------------------------------------------------- /src/cmd/bc/doc/dc.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/doc/dc.info -------------------------------------------------------------------------------- /src/cmd/bc/doc/dc.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/doc/dc.texi -------------------------------------------------------------------------------- /src/cmd/bc/h/bcdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/h/bcdefs.h -------------------------------------------------------------------------------- /src/cmd/bc/h/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/h/const.h -------------------------------------------------------------------------------- /src/cmd/bc/h/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/h/getopt.h -------------------------------------------------------------------------------- /src/cmd/bc/h/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/h/global.h -------------------------------------------------------------------------------- /src/cmd/bc/h/number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/h/number.h -------------------------------------------------------------------------------- /src/cmd/bc/h/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/h/proto.h -------------------------------------------------------------------------------- /src/cmd/bc/h/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/h/version.h -------------------------------------------------------------------------------- /src/cmd/bc/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/install-sh -------------------------------------------------------------------------------- /src/cmd/bc/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bc/missing -------------------------------------------------------------------------------- /src/cmd/bc/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /src/cmd/bsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bsd/Makefile -------------------------------------------------------------------------------- /src/cmd/bsd/cal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bsd/cal.c -------------------------------------------------------------------------------- /src/cmd/bsd/col.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bsd/col.c -------------------------------------------------------------------------------- /src/cmd/bsd/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/bsd/script.c -------------------------------------------------------------------------------- /src/cmd/cc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/cc/Makefile -------------------------------------------------------------------------------- /src/cmd/cc/cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/cc/cc.c -------------------------------------------------------------------------------- /src/cmd/cc/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/cc/cc.h -------------------------------------------------------------------------------- /src/cmd/ctags/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/COPYING -------------------------------------------------------------------------------- /src/cmd/ctags/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/FAQ -------------------------------------------------------------------------------- /src/cmd/ctags/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/INSTALL -------------------------------------------------------------------------------- /src/cmd/ctags/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/NEWS -------------------------------------------------------------------------------- /src/cmd/ctags/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/README -------------------------------------------------------------------------------- /src/cmd/ctags/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/args.c -------------------------------------------------------------------------------- /src/cmd/ctags/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/args.h -------------------------------------------------------------------------------- /src/cmd/ctags/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/asm.c -------------------------------------------------------------------------------- /src/cmd/ctags/asp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/asp.c -------------------------------------------------------------------------------- /src/cmd/ctags/awk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/awk.c -------------------------------------------------------------------------------- /src/cmd/ctags/beta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/beta.c -------------------------------------------------------------------------------- /src/cmd/ctags/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/c.c -------------------------------------------------------------------------------- /src/cmd/ctags/cobol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/cobol.c -------------------------------------------------------------------------------- /src/cmd/ctags/ctags.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/ctags.1 -------------------------------------------------------------------------------- /src/cmd/ctags/ctags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/ctags.h -------------------------------------------------------------------------------- /src/cmd/ctags/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/debug.c -------------------------------------------------------------------------------- /src/cmd/ctags/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/debug.h -------------------------------------------------------------------------------- /src/cmd/ctags/eiffel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/eiffel.c -------------------------------------------------------------------------------- /src/cmd/ctags/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/entry.c -------------------------------------------------------------------------------- /src/cmd/ctags/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/entry.h -------------------------------------------------------------------------------- /src/cmd/ctags/erlang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/erlang.c -------------------------------------------------------------------------------- /src/cmd/ctags/get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/get.c -------------------------------------------------------------------------------- /src/cmd/ctags/get.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/get.h -------------------------------------------------------------------------------- /src/cmd/ctags/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/html.c -------------------------------------------------------------------------------- /src/cmd/ctags/lisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/lisp.c -------------------------------------------------------------------------------- /src/cmd/ctags/lregex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/lregex.c -------------------------------------------------------------------------------- /src/cmd/ctags/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/lua.c -------------------------------------------------------------------------------- /src/cmd/ctags/mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/mac.c -------------------------------------------------------------------------------- /src/cmd/ctags/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/main.c -------------------------------------------------------------------------------- /src/cmd/ctags/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/main.h -------------------------------------------------------------------------------- /src/cmd/ctags/make.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/make.c -------------------------------------------------------------------------------- /src/cmd/ctags/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/parse.c -------------------------------------------------------------------------------- /src/cmd/ctags/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/parse.h -------------------------------------------------------------------------------- /src/cmd/ctags/pascal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/pascal.c -------------------------------------------------------------------------------- /src/cmd/ctags/perl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/perl.c -------------------------------------------------------------------------------- /src/cmd/ctags/php.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/php.c -------------------------------------------------------------------------------- /src/cmd/ctags/python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/python.c -------------------------------------------------------------------------------- /src/cmd/ctags/qdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/qdos.c -------------------------------------------------------------------------------- /src/cmd/ctags/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/read.c -------------------------------------------------------------------------------- /src/cmd/ctags/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/read.h -------------------------------------------------------------------------------- /src/cmd/ctags/rexx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/rexx.c -------------------------------------------------------------------------------- /src/cmd/ctags/ruby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/ruby.c -------------------------------------------------------------------------------- /src/cmd/ctags/scheme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/scheme.c -------------------------------------------------------------------------------- /src/cmd/ctags/sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/sh.c -------------------------------------------------------------------------------- /src/cmd/ctags/slang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/slang.c -------------------------------------------------------------------------------- /src/cmd/ctags/sml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/sml.c -------------------------------------------------------------------------------- /src/cmd/ctags/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/sort.c -------------------------------------------------------------------------------- /src/cmd/ctags/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/sort.h -------------------------------------------------------------------------------- /src/cmd/ctags/sql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/sql.c -------------------------------------------------------------------------------- /src/cmd/ctags/tcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/tcl.c -------------------------------------------------------------------------------- /src/cmd/ctags/vim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/vim.c -------------------------------------------------------------------------------- /src/cmd/ctags/yacc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ctags/yacc.c -------------------------------------------------------------------------------- /src/cmd/flex/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/COPYING -------------------------------------------------------------------------------- /src/cmd/flex/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/INSTALL -------------------------------------------------------------------------------- /src/cmd/flex/MISC/NeXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/MISC/NeXT -------------------------------------------------------------------------------- /src/cmd/flex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/Makefile -------------------------------------------------------------------------------- /src/cmd/flex/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/NEWS -------------------------------------------------------------------------------- /src/cmd/flex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/README -------------------------------------------------------------------------------- /src/cmd/flex/ccl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/ccl.c -------------------------------------------------------------------------------- /src/cmd/flex/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/config.h -------------------------------------------------------------------------------- /src/cmd/flex/dfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/dfa.c -------------------------------------------------------------------------------- /src/cmd/flex/ecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/ecs.c -------------------------------------------------------------------------------- /src/cmd/flex/flex.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/flex.1 -------------------------------------------------------------------------------- /src/cmd/flex/flex.skl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/flex.skl -------------------------------------------------------------------------------- /src/cmd/flex/flexdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/flexdef.h -------------------------------------------------------------------------------- /src/cmd/flex/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/gen.c -------------------------------------------------------------------------------- /src/cmd/flex/libmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/libmain.c -------------------------------------------------------------------------------- /src/cmd/flex/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/main.c -------------------------------------------------------------------------------- /src/cmd/flex/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/misc.c -------------------------------------------------------------------------------- /src/cmd/flex/mkskel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/mkskel.sh -------------------------------------------------------------------------------- /src/cmd/flex/nfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/nfa.c -------------------------------------------------------------------------------- /src/cmd/flex/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/parse.y -------------------------------------------------------------------------------- /src/cmd/flex/scan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/scan.l -------------------------------------------------------------------------------- /src/cmd/flex/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/sym.c -------------------------------------------------------------------------------- /src/cmd/flex/tblcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/tblcmp.c -------------------------------------------------------------------------------- /src/cmd/flex/version.h: -------------------------------------------------------------------------------- 1 | #define FLEX_VERSION "2.5.4" 2 | -------------------------------------------------------------------------------- /src/cmd/flex/yylex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/flex/yylex.c -------------------------------------------------------------------------------- /src/cmd/fvwm/Nmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/fvwm/Nmakefile -------------------------------------------------------------------------------- /src/cmd/fvwm/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/fvwm/install -------------------------------------------------------------------------------- /src/cmd/fvwm/libs/fvwm.ign: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cmd/fvwm/modules/Nmakefile: -------------------------------------------------------------------------------- 1 | :MAKE: 2 | -------------------------------------------------------------------------------- /src/cmd/gmake/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/COPYING -------------------------------------------------------------------------------- /src/cmd/gmake/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/NEWS -------------------------------------------------------------------------------- /src/cmd/gmake/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/README -------------------------------------------------------------------------------- /src/cmd/gmake/RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/RELEASE -------------------------------------------------------------------------------- /src/cmd/gmake/alloca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/alloca.c -------------------------------------------------------------------------------- /src/cmd/gmake/amiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/amiga.c -------------------------------------------------------------------------------- /src/cmd/gmake/amiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/amiga.h -------------------------------------------------------------------------------- /src/cmd/gmake/ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/ar.c -------------------------------------------------------------------------------- /src/cmd/gmake/arscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/arscan.c -------------------------------------------------------------------------------- /src/cmd/gmake/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/debug.h -------------------------------------------------------------------------------- /src/cmd/gmake/dep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/dep.h -------------------------------------------------------------------------------- /src/cmd/gmake/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/dir.c -------------------------------------------------------------------------------- /src/cmd/gmake/expand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/expand.c -------------------------------------------------------------------------------- /src/cmd/gmake/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/file.c -------------------------------------------------------------------------------- /src/cmd/gmake/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/getopt.c -------------------------------------------------------------------------------- /src/cmd/gmake/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/getopt.h -------------------------------------------------------------------------------- /src/cmd/gmake/gmake.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/gmake.1 -------------------------------------------------------------------------------- /src/cmd/gmake/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/hash.c -------------------------------------------------------------------------------- /src/cmd/gmake/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/hash.h -------------------------------------------------------------------------------- /src/cmd/gmake/job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/job.c -------------------------------------------------------------------------------- /src/cmd/gmake/job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/job.h -------------------------------------------------------------------------------- /src/cmd/gmake/local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/local.c -------------------------------------------------------------------------------- /src/cmd/gmake/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/main.c -------------------------------------------------------------------------------- /src/cmd/gmake/make.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/make.h -------------------------------------------------------------------------------- /src/cmd/gmake/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/misc.c -------------------------------------------------------------------------------- /src/cmd/gmake/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/read.c -------------------------------------------------------------------------------- /src/cmd/gmake/remake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/remake.c -------------------------------------------------------------------------------- /src/cmd/gmake/rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/rule.c -------------------------------------------------------------------------------- /src/cmd/gmake/rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/rule.h -------------------------------------------------------------------------------- /src/cmd/gmake/tests/2.inc: -------------------------------------------------------------------------------- 1 | 2: ; @sleep 1; echo THREE 2 | -------------------------------------------------------------------------------- /src/cmd/gmake/tests/GNUmakefile: -------------------------------------------------------------------------------- 1 | FIRST: ; @echo It chose GNUmakefile 2 | -------------------------------------------------------------------------------- /src/cmd/gmake/tests/makefile: -------------------------------------------------------------------------------- 1 | SECOND: ; @echo It chose makefile 2 | -------------------------------------------------------------------------------- /src/cmd/gmake/tests/run_make_tests: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec perl $0.pl ${1+"$@"} 3 | -------------------------------------------------------------------------------- /src/cmd/gmake/vmsdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/vmsdir.h -------------------------------------------------------------------------------- /src/cmd/gmake/vmsify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/vmsify.c -------------------------------------------------------------------------------- /src/cmd/gmake/vpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gmake/vpath.c -------------------------------------------------------------------------------- /src/cmd/groff/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/groff/COPYING -------------------------------------------------------------------------------- /src/cmd/groff/FDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/groff/FDL -------------------------------------------------------------------------------- /src/cmd/groff/FONT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/groff/FONT.mk -------------------------------------------------------------------------------- /src/cmd/groff/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/groff/INSTALL -------------------------------------------------------------------------------- /src/cmd/groff/LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/groff/LICENSES -------------------------------------------------------------------------------- /src/cmd/groff/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/groff/MANIFEST -------------------------------------------------------------------------------- /src/cmd/groff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/groff/Makefile -------------------------------------------------------------------------------- /src/cmd/groff/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/groff/NEWS -------------------------------------------------------------------------------- /src/cmd/groff/PROBLEMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/groff/PROBLEMS -------------------------------------------------------------------------------- /src/cmd/groff/PROJECTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/groff/PROJECTS -------------------------------------------------------------------------------- /src/cmd/groff/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/groff/README -------------------------------------------------------------------------------- /src/cmd/groff/REVISION: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /src/cmd/groff/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/groff/TODO -------------------------------------------------------------------------------- /src/cmd/groff/VERSION: -------------------------------------------------------------------------------- 1 | 1.19 2 | -------------------------------------------------------------------------------- /src/cmd/groff/mdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/groff/mdate.sh -------------------------------------------------------------------------------- /src/cmd/groff/src/libs/libgroff/lineno.cpp: -------------------------------------------------------------------------------- 1 | int current_lineno = 0; 2 | -------------------------------------------------------------------------------- /src/cmd/groff/src/libs/libgroff/progname.c: -------------------------------------------------------------------------------- 1 | const char *program_name = 0; 2 | -------------------------------------------------------------------------------- /src/cmd/groff/stamp-h: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /src/cmd/groff/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /src/cmd/groff/tmac/mm/locale: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cmd/groff/tmac/mm/se_locale: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cmd/gzip/Nmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/Nmakefile -------------------------------------------------------------------------------- /src/cmd/gzip/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/README -------------------------------------------------------------------------------- /src/cmd/gzip/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/bits.c -------------------------------------------------------------------------------- /src/cmd/gzip/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/crypt.c -------------------------------------------------------------------------------- /src/cmd/gzip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/crypt.h -------------------------------------------------------------------------------- /src/cmd/gzip/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/deflate.c -------------------------------------------------------------------------------- /src/cmd/gzip/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/getopt.c -------------------------------------------------------------------------------- /src/cmd/gzip/gzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/gzip.c -------------------------------------------------------------------------------- /src/cmd/gzip/gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/gzip.h -------------------------------------------------------------------------------- /src/cmd/gzip/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/inflate.c -------------------------------------------------------------------------------- /src/cmd/gzip/lzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/lzw.c -------------------------------------------------------------------------------- /src/cmd/gzip/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/lzw.h -------------------------------------------------------------------------------- /src/cmd/gzip/tailor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/tailor.h -------------------------------------------------------------------------------- /src/cmd/gzip/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/trees.c -------------------------------------------------------------------------------- /src/cmd/gzip/unlzh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/unlzh.c -------------------------------------------------------------------------------- /src/cmd/gzip/unlzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/unlzw.c -------------------------------------------------------------------------------- /src/cmd/gzip/unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/unpack.c -------------------------------------------------------------------------------- /src/cmd/gzip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/unzip.c -------------------------------------------------------------------------------- /src/cmd/gzip/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/util.c -------------------------------------------------------------------------------- /src/cmd/gzip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/gzip/zip.c -------------------------------------------------------------------------------- /src/cmd/inetutils/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/inetutils/NEWS -------------------------------------------------------------------------------- /src/cmd/inetutils/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/inetutils/TODO -------------------------------------------------------------------------------- /src/cmd/inetutils/glob/CVS/Repository: -------------------------------------------------------------------------------- 1 | /home/gd4/gnu/cvsroot/inetutils/glob 2 | -------------------------------------------------------------------------------- /src/cmd/inetutils/glob/CVS/Root: -------------------------------------------------------------------------------- 1 | /home/gd4/gnu/cvsroot 2 | -------------------------------------------------------------------------------- /src/cmd/inetutils/libinetutils/login.c: -------------------------------------------------------------------------------- 1 | /* TODO: implement */ 2 | -------------------------------------------------------------------------------- /src/cmd/less/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/INSTALL -------------------------------------------------------------------------------- /src/cmd/less/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/Makefile -------------------------------------------------------------------------------- /src/cmd/less/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/NEWS -------------------------------------------------------------------------------- /src/cmd/less/Nmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/Nmakefile -------------------------------------------------------------------------------- /src/cmd/less/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/README -------------------------------------------------------------------------------- /src/cmd/less/brac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/brac.c -------------------------------------------------------------------------------- /src/cmd/less/ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/ch.c -------------------------------------------------------------------------------- /src/cmd/less/charset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/charset.c -------------------------------------------------------------------------------- /src/cmd/less/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/cmd.h -------------------------------------------------------------------------------- /src/cmd/less/cmdbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/cmdbuf.c -------------------------------------------------------------------------------- /src/cmd/less/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/command.c -------------------------------------------------------------------------------- /src/cmd/less/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/configure -------------------------------------------------------------------------------- /src/cmd/less/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/decode.c -------------------------------------------------------------------------------- /src/cmd/less/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/edit.c -------------------------------------------------------------------------------- /src/cmd/less/funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/funcs.h -------------------------------------------------------------------------------- /src/cmd/less/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/help.c -------------------------------------------------------------------------------- /src/cmd/less/ifile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/ifile.c -------------------------------------------------------------------------------- /src/cmd/less/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/input.c -------------------------------------------------------------------------------- /src/cmd/less/jump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/jump.c -------------------------------------------------------------------------------- /src/cmd/less/less.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/less.h -------------------------------------------------------------------------------- /src/cmd/less/less.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/less.hlp -------------------------------------------------------------------------------- /src/cmd/less/less.nro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/less.nro -------------------------------------------------------------------------------- /src/cmd/less/lesskey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/lesskey.c -------------------------------------------------------------------------------- /src/cmd/less/lesskey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/lesskey.h -------------------------------------------------------------------------------- /src/cmd/less/lglob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/lglob.h -------------------------------------------------------------------------------- /src/cmd/less/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/line.c -------------------------------------------------------------------------------- /src/cmd/less/linenum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/linenum.c -------------------------------------------------------------------------------- /src/cmd/less/lsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/lsystem.c -------------------------------------------------------------------------------- /src/cmd/less/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/main.c -------------------------------------------------------------------------------- /src/cmd/less/mark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/mark.c -------------------------------------------------------------------------------- /src/cmd/less/mkhelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/mkhelp.c -------------------------------------------------------------------------------- /src/cmd/less/optfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/optfunc.c -------------------------------------------------------------------------------- /src/cmd/less/option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/option.c -------------------------------------------------------------------------------- /src/cmd/less/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/option.h -------------------------------------------------------------------------------- /src/cmd/less/opttbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/opttbl.c -------------------------------------------------------------------------------- /src/cmd/less/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/os.c -------------------------------------------------------------------------------- /src/cmd/less/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/output.c -------------------------------------------------------------------------------- /src/cmd/less/prompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/prompt.c -------------------------------------------------------------------------------- /src/cmd/less/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/regexp.c -------------------------------------------------------------------------------- /src/cmd/less/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/regexp.h -------------------------------------------------------------------------------- /src/cmd/less/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/screen.c -------------------------------------------------------------------------------- /src/cmd/less/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/search.c -------------------------------------------------------------------------------- /src/cmd/less/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/signal.c -------------------------------------------------------------------------------- /src/cmd/less/tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/tags.c -------------------------------------------------------------------------------- /src/cmd/less/ttyin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/ttyin.c -------------------------------------------------------------------------------- /src/cmd/less/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/less/version.c -------------------------------------------------------------------------------- /src/cmd/lesstif/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lesstif/FAQ -------------------------------------------------------------------------------- /src/cmd/lesstif/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lesstif/NEWS -------------------------------------------------------------------------------- /src/cmd/lesstif/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lesstif/README -------------------------------------------------------------------------------- /src/cmd/lesstif/clients/Motif-2.1/Nmakefile: -------------------------------------------------------------------------------- 1 | :MAKE: 2 | -------------------------------------------------------------------------------- /src/cmd/lesstif/clients/Nmakefile: -------------------------------------------------------------------------------- 1 | :MAKE: 2 | -------------------------------------------------------------------------------- /src/cmd/lesstif/include/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for include/LTconfig.h 2 | -------------------------------------------------------------------------------- /src/cmd/lesstif/lib/Nmakefile: -------------------------------------------------------------------------------- 1 | :MAKE: 2 | -------------------------------------------------------------------------------- /src/cmd/lesstif/scripts/Slackware/install.end: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cmd/lex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lex/Makefile -------------------------------------------------------------------------------- /src/cmd/lex/header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lex/header.c -------------------------------------------------------------------------------- /src/cmd/lex/ldefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lex/ldefs.h -------------------------------------------------------------------------------- /src/cmd/lex/lmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lex/lmain.c -------------------------------------------------------------------------------- /src/cmd/lex/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lex/mkfile -------------------------------------------------------------------------------- /src/cmd/lex/ncform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lex/ncform -------------------------------------------------------------------------------- /src/cmd/lex/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lex/once.h -------------------------------------------------------------------------------- /src/cmd/lex/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lex/parser.y -------------------------------------------------------------------------------- /src/cmd/lex/sub1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lex/sub1.c -------------------------------------------------------------------------------- /src/cmd/lex/sub2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lex/sub2.c -------------------------------------------------------------------------------- /src/cmd/lp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lp/Makefile -------------------------------------------------------------------------------- /src/cmd/lp/cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lp/cancel.c -------------------------------------------------------------------------------- /src/cmd/lp/lp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lp/lp.c -------------------------------------------------------------------------------- /src/cmd/lp/lp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lp/lp.h -------------------------------------------------------------------------------- /src/cmd/lp/lpstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lp/lpstat.c -------------------------------------------------------------------------------- /src/cmd/lp/options.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lp/options.tab -------------------------------------------------------------------------------- /src/cmd/lp/slashback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/lp/slashback.c -------------------------------------------------------------------------------- /src/cmd/m4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/m4/Makefile -------------------------------------------------------------------------------- /src/cmd/m4/RELEASE: -------------------------------------------------------------------------------- 1 | 00-08-29 fix mktemp() to use 6 X's instead of 5 2 | -------------------------------------------------------------------------------- /src/cmd/m4/m4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/m4/m4.c -------------------------------------------------------------------------------- /src/cmd/m4/m4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/m4/m4.h -------------------------------------------------------------------------------- /src/cmd/m4/m4.test1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/m4/m4.test1 -------------------------------------------------------------------------------- /src/cmd/m4/m4.test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/m4/m4.test2 -------------------------------------------------------------------------------- /src/cmd/m4/m4.test3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/m4/m4.test3 -------------------------------------------------------------------------------- /src/cmd/m4/m4.test4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/m4/m4.test4 -------------------------------------------------------------------------------- /src/cmd/m4/m4.test5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/m4/m4.test5 -------------------------------------------------------------------------------- /src/cmd/m4/m4.test6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/m4/m4.test6 -------------------------------------------------------------------------------- /src/cmd/m4/m4ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/m4/m4ext.c -------------------------------------------------------------------------------- /src/cmd/m4/m4macs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/m4/m4macs.c -------------------------------------------------------------------------------- /src/cmd/m4/m4y.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/m4/m4y.y -------------------------------------------------------------------------------- /src/cmd/more/Nmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/Nmakefile -------------------------------------------------------------------------------- /src/cmd/more/ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/ch.c -------------------------------------------------------------------------------- /src/cmd/more/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/command.c -------------------------------------------------------------------------------- /src/cmd/more/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/decode.c -------------------------------------------------------------------------------- /src/cmd/more/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/extern.h -------------------------------------------------------------------------------- /src/cmd/more/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/help.c -------------------------------------------------------------------------------- /src/cmd/more/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/input.c -------------------------------------------------------------------------------- /src/cmd/more/less.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/less.h -------------------------------------------------------------------------------- /src/cmd/more/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/line.c -------------------------------------------------------------------------------- /src/cmd/more/linenum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/linenum.c -------------------------------------------------------------------------------- /src/cmd/more/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/main.c -------------------------------------------------------------------------------- /src/cmd/more/more.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/more.1 -------------------------------------------------------------------------------- /src/cmd/more/more.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/more.help -------------------------------------------------------------------------------- /src/cmd/more/option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/option.c -------------------------------------------------------------------------------- /src/cmd/more/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/os.c -------------------------------------------------------------------------------- /src/cmd/more/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/output.c -------------------------------------------------------------------------------- /src/cmd/more/prim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/prim.c -------------------------------------------------------------------------------- /src/cmd/more/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/screen.c -------------------------------------------------------------------------------- /src/cmd/more/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/signal.c -------------------------------------------------------------------------------- /src/cmd/more/ttyin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/more/ttyin.c -------------------------------------------------------------------------------- /src/cmd/nvi/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/FAQ -------------------------------------------------------------------------------- /src/cmd/nvi/LAYOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/LAYOUT -------------------------------------------------------------------------------- /src/cmd/nvi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/LICENSE -------------------------------------------------------------------------------- /src/cmd/nvi/Nmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/Nmakefile -------------------------------------------------------------------------------- /src/cmd/nvi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/README -------------------------------------------------------------------------------- /src/cmd/nvi/build/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/build/tags -------------------------------------------------------------------------------- /src/cmd/nvi/catalog/german.owner: -------------------------------------------------------------------------------- 1 | Bernhard Daeubler 2 | -------------------------------------------------------------------------------- /src/cmd/nvi/catalog/ru_SU.KOI8-R.owner: -------------------------------------------------------------------------------- 1 | Dima Ruban 2 | -------------------------------------------------------------------------------- /src/cmd/nvi/cl/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/cl/cl.h -------------------------------------------------------------------------------- /src/cmd/nvi/clib/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/clib/env.c -------------------------------------------------------------------------------- /src/cmd/nvi/clib/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/clib/tags -------------------------------------------------------------------------------- /src/cmd/nvi/db/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/db/README -------------------------------------------------------------------------------- /src/cmd/nvi/db/db/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/db/db/db.c -------------------------------------------------------------------------------- /src/cmd/nvi/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/docs/TODO -------------------------------------------------------------------------------- /src/cmd/nvi/docs/ev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/docs/ev -------------------------------------------------------------------------------- /src/cmd/nvi/docs/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/docs/help -------------------------------------------------------------------------------- /src/cmd/nvi/ex/ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/ex/ex.c -------------------------------------------------------------------------------- /src/cmd/nvi/ex/ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/ex/ex.h -------------------------------------------------------------------------------- /src/cmd/nvi/ex/ex_at.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/ex/ex_at.c -------------------------------------------------------------------------------- /src/cmd/nvi/ex/ex_cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/ex/ex_cd.c -------------------------------------------------------------------------------- /src/cmd/nvi/ex/ex_z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/ex/ex_z.c -------------------------------------------------------------------------------- /src/cmd/nvi/ex/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/ex/tag.h -------------------------------------------------------------------------------- /src/cmd/nvi/include/tcl_extern.h: -------------------------------------------------------------------------------- 1 | int tcl_init __P((GS *)); 2 | -------------------------------------------------------------------------------- /src/cmd/nvi/ip/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/ip/ip.h -------------------------------------------------------------------------------- /src/cmd/nvi/ip/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/ip/tags -------------------------------------------------------------------------------- /src/cmd/nvi/tk/tki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/tk/tki.h -------------------------------------------------------------------------------- /src/cmd/nvi/vi/getc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/vi/getc.c -------------------------------------------------------------------------------- /src/cmd/nvi/vi/v_at.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/vi/v_at.c -------------------------------------------------------------------------------- /src/cmd/nvi/vi/v_ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/vi/v_ch.c -------------------------------------------------------------------------------- /src/cmd/nvi/vi/v_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/vi/v_cmd.c -------------------------------------------------------------------------------- /src/cmd/nvi/vi/v_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/vi/v_ex.c -------------------------------------------------------------------------------- /src/cmd/nvi/vi/v_put.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/vi/v_put.c -------------------------------------------------------------------------------- /src/cmd/nvi/vi/v_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/vi/v_txt.c -------------------------------------------------------------------------------- /src/cmd/nvi/vi/v_z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/vi/v_z.c -------------------------------------------------------------------------------- /src/cmd/nvi/vi/vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/vi/vi.c -------------------------------------------------------------------------------- /src/cmd/nvi/vi/vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/nvi/vi/vi.h -------------------------------------------------------------------------------- /src/cmd/openssl/CA.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/CA.com -------------------------------------------------------------------------------- /src/cmd/openssl/CA.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/CA.pl -------------------------------------------------------------------------------- /src/cmd/openssl/CA.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/CA.sh -------------------------------------------------------------------------------- /src/cmd/openssl/apps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/apps.c -------------------------------------------------------------------------------- /src/cmd/openssl/apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/apps.h -------------------------------------------------------------------------------- /src/cmd/openssl/ca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /src/cmd/openssl/ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/ca.c -------------------------------------------------------------------------------- /src/cmd/openssl/cms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/cms.c -------------------------------------------------------------------------------- /src/cmd/openssl/crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/crl.c -------------------------------------------------------------------------------- /src/cmd/openssl/demoCA/serial: -------------------------------------------------------------------------------- 1 | 011E 2 | -------------------------------------------------------------------------------- /src/cmd/openssl/dgst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/dgst.c -------------------------------------------------------------------------------- /src/cmd/openssl/dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/dh.c -------------------------------------------------------------------------------- /src/cmd/openssl/dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/dsa.c -------------------------------------------------------------------------------- /src/cmd/openssl/ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/ec.c -------------------------------------------------------------------------------- /src/cmd/openssl/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/enc.c -------------------------------------------------------------------------------- /src/cmd/openssl/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/md4.c -------------------------------------------------------------------------------- /src/cmd/openssl/nseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/nseq.c -------------------------------------------------------------------------------- /src/cmd/openssl/ocsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/ocsp.c -------------------------------------------------------------------------------- /src/cmd/openssl/pca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /src/cmd/openssl/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/rand.c -------------------------------------------------------------------------------- /src/cmd/openssl/req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/req.c -------------------------------------------------------------------------------- /src/cmd/openssl/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/rsa.c -------------------------------------------------------------------------------- /src/cmd/openssl/s_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/s_cb.c -------------------------------------------------------------------------------- /src/cmd/openssl/server.srl: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /src/cmd/openssl/test/VMSca-response.1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/cmd/openssl/test/VMSca-response.2: -------------------------------------------------------------------------------- 1 | y 2 | y 3 | -------------------------------------------------------------------------------- /src/cmd/openssl/test/smcont.txt: -------------------------------------------------------------------------------- 1 | Some test content for OpenSSL CMS -------------------------------------------------------------------------------- /src/cmd/openssl/test/tmp.bctest: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /src/cmd/openssl/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/openssl/x509.c -------------------------------------------------------------------------------- /src/cmd/patch/EXTERN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/patch/EXTERN.h -------------------------------------------------------------------------------- /src/cmd/patch/INTERN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/patch/INTERN.h -------------------------------------------------------------------------------- /src/cmd/patch/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/patch/MANIFEST -------------------------------------------------------------------------------- /src/cmd/patch/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/patch/README -------------------------------------------------------------------------------- /src/cmd/patch/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/patch/common.h -------------------------------------------------------------------------------- /src/cmd/patch/config.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/patch/config.H -------------------------------------------------------------------------------- /src/cmd/patch/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/patch/config.h -------------------------------------------------------------------------------- /src/cmd/patch/inp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/patch/inp.c -------------------------------------------------------------------------------- /src/cmd/patch/inp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/patch/inp.h -------------------------------------------------------------------------------- /src/cmd/patch/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/patch/malloc.c -------------------------------------------------------------------------------- /src/cmd/patch/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/patch/patch.c -------------------------------------------------------------------------------- /src/cmd/patch/pch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/patch/pch.c -------------------------------------------------------------------------------- /src/cmd/patch/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/patch/pch.h -------------------------------------------------------------------------------- /src/cmd/patch/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/patch/util.c -------------------------------------------------------------------------------- /src/cmd/patch/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/patch/util.h -------------------------------------------------------------------------------- /src/cmd/patch/winnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/patch/winnt.h -------------------------------------------------------------------------------- /src/cmd/rcs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/COPYING -------------------------------------------------------------------------------- /src/cmd/rcs/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/CREDITS -------------------------------------------------------------------------------- /src/cmd/rcs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/ChangeLog -------------------------------------------------------------------------------- /src/cmd/rcs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/INSTALL -------------------------------------------------------------------------------- /src/cmd/rcs/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/NEWS -------------------------------------------------------------------------------- /src/cmd/rcs/Nmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/Nmakefile -------------------------------------------------------------------------------- /src/cmd/rcs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/README -------------------------------------------------------------------------------- /src/cmd/rcs/REFS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/REFS -------------------------------------------------------------------------------- /src/cmd/rcs/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/configure -------------------------------------------------------------------------------- /src/cmd/rcs/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/install-sh -------------------------------------------------------------------------------- /src/cmd/rcs/man/ci.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/man/ci.1 -------------------------------------------------------------------------------- /src/cmd/rcs/man/co.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/man/co.1 -------------------------------------------------------------------------------- /src/cmd/rcs/man/rcs.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/man/rcs.1 -------------------------------------------------------------------------------- /src/cmd/rcs/man/rlog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/man/rlog.1 -------------------------------------------------------------------------------- /src/cmd/rcs/rcs.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/rcs.ms -------------------------------------------------------------------------------- /src/cmd/rcs/src/TAGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/src/TAGS -------------------------------------------------------------------------------- /src/cmd/rcs/src/ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/src/ci.c -------------------------------------------------------------------------------- /src/cmd/rcs/src/co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/src/co.c -------------------------------------------------------------------------------- /src/cmd/rcs/src/rcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/src/rcs.c -------------------------------------------------------------------------------- /src/cmd/rcs/src/rlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/rcs/src/rlog.c -------------------------------------------------------------------------------- /src/cmd/scripts/XWin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/scripts/XWin -------------------------------------------------------------------------------- /src/cmd/scripts/ar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/scripts/ar.sh -------------------------------------------------------------------------------- /src/cmd/scripts/at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/scripts/at -------------------------------------------------------------------------------- /src/cmd/scripts/cd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/scripts/cd.sh -------------------------------------------------------------------------------- /src/cmd/scripts/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/scripts/env.sh -------------------------------------------------------------------------------- /src/cmd/scripts/group.add: -------------------------------------------------------------------------------- 1 | sys:x:3: 2 | -------------------------------------------------------------------------------- /src/cmd/scripts/man.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/scripts/man.sh -------------------------------------------------------------------------------- /src/cmd/scripts/rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/scripts/rc -------------------------------------------------------------------------------- /src/cmd/scripts/sshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/scripts/sshd -------------------------------------------------------------------------------- /src/cmd/scripts/tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/scripts/tips -------------------------------------------------------------------------------- /src/cmd/scripts/vc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/scripts/vc.sh -------------------------------------------------------------------------------- /src/cmd/ssh/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/.cvsignore -------------------------------------------------------------------------------- /src/cmd/ssh/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/CREDITS -------------------------------------------------------------------------------- /src/cmd/ssh/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/ChangeLog -------------------------------------------------------------------------------- /src/cmd/ssh/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/INSTALL -------------------------------------------------------------------------------- /src/cmd/ssh/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/LICENCE -------------------------------------------------------------------------------- /src/cmd/ssh/Nmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/Nmakefile -------------------------------------------------------------------------------- /src/cmd/ssh/OVERVIEW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/OVERVIEW -------------------------------------------------------------------------------- /src/cmd/ssh/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/README -------------------------------------------------------------------------------- /src/cmd/ssh/README.dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/README.dns -------------------------------------------------------------------------------- /src/cmd/ssh/README.tun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/README.tun -------------------------------------------------------------------------------- /src/cmd/ssh/RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/RELEASE -------------------------------------------------------------------------------- /src/cmd/ssh/RFC.nroff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/RFC.nroff -------------------------------------------------------------------------------- /src/cmd/ssh/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/TODO -------------------------------------------------------------------------------- /src/cmd/ssh/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/aclocal.m4 -------------------------------------------------------------------------------- /src/cmd/ssh/acss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/acss.c -------------------------------------------------------------------------------- /src/cmd/ssh/acss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/acss.h -------------------------------------------------------------------------------- /src/cmd/ssh/atomicio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/atomicio.c -------------------------------------------------------------------------------- /src/cmd/ssh/atomicio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/atomicio.h -------------------------------------------------------------------------------- /src/cmd/ssh/audit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/audit.c -------------------------------------------------------------------------------- /src/cmd/ssh/audit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/audit.h -------------------------------------------------------------------------------- /src/cmd/ssh/auth-pam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/auth-pam.c -------------------------------------------------------------------------------- /src/cmd/ssh/auth-pam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/auth-pam.h -------------------------------------------------------------------------------- /src/cmd/ssh/auth-rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/auth-rsa.c -------------------------------------------------------------------------------- /src/cmd/ssh/auth-sia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/auth-sia.c -------------------------------------------------------------------------------- /src/cmd/ssh/auth-sia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/auth-sia.h -------------------------------------------------------------------------------- /src/cmd/ssh/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/auth.c -------------------------------------------------------------------------------- /src/cmd/ssh/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/auth.h -------------------------------------------------------------------------------- /src/cmd/ssh/auth1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/auth1.c -------------------------------------------------------------------------------- /src/cmd/ssh/auth2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/auth2.c -------------------------------------------------------------------------------- /src/cmd/ssh/authfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/authfd.c -------------------------------------------------------------------------------- /src/cmd/ssh/authfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/authfd.h -------------------------------------------------------------------------------- /src/cmd/ssh/authfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/authfile.c -------------------------------------------------------------------------------- /src/cmd/ssh/authfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/authfile.h -------------------------------------------------------------------------------- /src/cmd/ssh/bufaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/bufaux.c -------------------------------------------------------------------------------- /src/cmd/ssh/bufaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/bufaux.h -------------------------------------------------------------------------------- /src/cmd/ssh/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/buffer.c -------------------------------------------------------------------------------- /src/cmd/ssh/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/buffer.h -------------------------------------------------------------------------------- /src/cmd/ssh/canohost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/canohost.c -------------------------------------------------------------------------------- /src/cmd/ssh/canohost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/canohost.h -------------------------------------------------------------------------------- /src/cmd/ssh/channels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/channels.c -------------------------------------------------------------------------------- /src/cmd/ssh/channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/channels.h -------------------------------------------------------------------------------- /src/cmd/ssh/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/cipher.c -------------------------------------------------------------------------------- /src/cmd/ssh/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/cipher.h -------------------------------------------------------------------------------- /src/cmd/ssh/cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/cleanup.c -------------------------------------------------------------------------------- /src/cmd/ssh/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/compat.c -------------------------------------------------------------------------------- /src/cmd/ssh/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/compat.h -------------------------------------------------------------------------------- /src/cmd/ssh/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/compress.c -------------------------------------------------------------------------------- /src/cmd/ssh/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/compress.h -------------------------------------------------------------------------------- /src/cmd/ssh/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/config.h -------------------------------------------------------------------------------- /src/cmd/ssh/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/config.sub -------------------------------------------------------------------------------- /src/cmd/ssh/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/configure -------------------------------------------------------------------------------- /src/cmd/ssh/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/crc32.c -------------------------------------------------------------------------------- /src/cmd/ssh/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/crc32.h -------------------------------------------------------------------------------- /src/cmd/ssh/deattack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/deattack.c -------------------------------------------------------------------------------- /src/cmd/ssh/deattack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/deattack.h -------------------------------------------------------------------------------- /src/cmd/ssh/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/defines.h -------------------------------------------------------------------------------- /src/cmd/ssh/dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/dh.c -------------------------------------------------------------------------------- /src/cmd/ssh/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/dh.h -------------------------------------------------------------------------------- /src/cmd/ssh/dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/dispatch.c -------------------------------------------------------------------------------- /src/cmd/ssh/dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/dispatch.h -------------------------------------------------------------------------------- /src/cmd/ssh/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/dns.c -------------------------------------------------------------------------------- /src/cmd/ssh/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/dns.h -------------------------------------------------------------------------------- /src/cmd/ssh/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/dummy.c -------------------------------------------------------------------------------- /src/cmd/ssh/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/entropy.c -------------------------------------------------------------------------------- /src/cmd/ssh/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/entropy.h -------------------------------------------------------------------------------- /src/cmd/ssh/fatal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/fatal.c -------------------------------------------------------------------------------- /src/cmd/ssh/fixpaths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/fixpaths -------------------------------------------------------------------------------- /src/cmd/ssh/fixprogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/fixprogs -------------------------------------------------------------------------------- /src/cmd/ssh/getput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/getput.h -------------------------------------------------------------------------------- /src/cmd/ssh/gss-genr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/gss-genr.c -------------------------------------------------------------------------------- /src/cmd/ssh/gss-serv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/gss-serv.c -------------------------------------------------------------------------------- /src/cmd/ssh/hostfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/hostfile.c -------------------------------------------------------------------------------- /src/cmd/ssh/hostfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/hostfile.h -------------------------------------------------------------------------------- /src/cmd/ssh/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/includes.h -------------------------------------------------------------------------------- /src/cmd/ssh/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/install-sh -------------------------------------------------------------------------------- /src/cmd/ssh/kex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/kex.c -------------------------------------------------------------------------------- /src/cmd/ssh/kex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/kex.h -------------------------------------------------------------------------------- /src/cmd/ssh/kexdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/kexdh.c -------------------------------------------------------------------------------- /src/cmd/ssh/kexdhc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/kexdhc.c -------------------------------------------------------------------------------- /src/cmd/ssh/kexdhs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/kexdhs.c -------------------------------------------------------------------------------- /src/cmd/ssh/kexgex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/kexgex.c -------------------------------------------------------------------------------- /src/cmd/ssh/kexgexc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/kexgexc.c -------------------------------------------------------------------------------- /src/cmd/ssh/kexgexs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/kexgexs.c -------------------------------------------------------------------------------- /src/cmd/ssh/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/key.c -------------------------------------------------------------------------------- /src/cmd/ssh/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/key.h -------------------------------------------------------------------------------- /src/cmd/ssh/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/log.c -------------------------------------------------------------------------------- /src/cmd/ssh/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/log.h -------------------------------------------------------------------------------- /src/cmd/ssh/loginrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/loginrec.c -------------------------------------------------------------------------------- /src/cmd/ssh/loginrec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/loginrec.h -------------------------------------------------------------------------------- /src/cmd/ssh/mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/mac.c -------------------------------------------------------------------------------- /src/cmd/ssh/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/mac.h -------------------------------------------------------------------------------- /src/cmd/ssh/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/match.c -------------------------------------------------------------------------------- /src/cmd/ssh/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/match.h -------------------------------------------------------------------------------- /src/cmd/ssh/md5crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/md5crypt.c -------------------------------------------------------------------------------- /src/cmd/ssh/md5crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/md5crypt.h -------------------------------------------------------------------------------- /src/cmd/ssh/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/misc.c -------------------------------------------------------------------------------- /src/cmd/ssh/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/misc.h -------------------------------------------------------------------------------- /src/cmd/ssh/moduli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/moduli.c -------------------------------------------------------------------------------- /src/cmd/ssh/moduli.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/moduli.in -------------------------------------------------------------------------------- /src/cmd/ssh/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/monitor.c -------------------------------------------------------------------------------- /src/cmd/ssh/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/monitor.h -------------------------------------------------------------------------------- /src/cmd/ssh/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/msg.c -------------------------------------------------------------------------------- /src/cmd/ssh/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/msg.h -------------------------------------------------------------------------------- /src/cmd/ssh/nchan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/nchan.c -------------------------------------------------------------------------------- /src/cmd/ssh/openbsd-compat/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /src/cmd/ssh/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/packet.c -------------------------------------------------------------------------------- /src/cmd/ssh/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/packet.h -------------------------------------------------------------------------------- /src/cmd/ssh/readconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/readconf.c -------------------------------------------------------------------------------- /src/cmd/ssh/readconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/readconf.h -------------------------------------------------------------------------------- /src/cmd/ssh/readpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/readpass.c -------------------------------------------------------------------------------- /src/cmd/ssh/rijndael.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/rijndael.c -------------------------------------------------------------------------------- /src/cmd/ssh/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/rijndael.h -------------------------------------------------------------------------------- /src/cmd/ssh/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/rsa.c -------------------------------------------------------------------------------- /src/cmd/ssh/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/rsa.h -------------------------------------------------------------------------------- /src/cmd/ssh/scard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/scard.c -------------------------------------------------------------------------------- /src/cmd/ssh/scard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/scard.h -------------------------------------------------------------------------------- /src/cmd/ssh/scard/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | Ssh.bin 3 | -------------------------------------------------------------------------------- /src/cmd/ssh/scp.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/scp.0 -------------------------------------------------------------------------------- /src/cmd/ssh/scp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/scp.1 -------------------------------------------------------------------------------- /src/cmd/ssh/scp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/scp.c -------------------------------------------------------------------------------- /src/cmd/ssh/servconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/servconf.c -------------------------------------------------------------------------------- /src/cmd/ssh/servconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/servconf.h -------------------------------------------------------------------------------- /src/cmd/ssh/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/session.c -------------------------------------------------------------------------------- /src/cmd/ssh/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/session.h -------------------------------------------------------------------------------- /src/cmd/ssh/sftp.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/sftp.0 -------------------------------------------------------------------------------- /src/cmd/ssh/sftp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/sftp.1 -------------------------------------------------------------------------------- /src/cmd/ssh/sftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/sftp.c -------------------------------------------------------------------------------- /src/cmd/ssh/sftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/sftp.h -------------------------------------------------------------------------------- /src/cmd/ssh/ssh-add.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/ssh-add.0 -------------------------------------------------------------------------------- /src/cmd/ssh/ssh-add.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/ssh-add.1 -------------------------------------------------------------------------------- /src/cmd/ssh/ssh-add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/ssh-add.c -------------------------------------------------------------------------------- /src/cmd/ssh/ssh-dss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/ssh-dss.c -------------------------------------------------------------------------------- /src/cmd/ssh/ssh-gss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/ssh-gss.h -------------------------------------------------------------------------------- /src/cmd/ssh/ssh-rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/ssh-rsa.c -------------------------------------------------------------------------------- /src/cmd/ssh/ssh.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/ssh.0 -------------------------------------------------------------------------------- /src/cmd/ssh/ssh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/ssh.1 -------------------------------------------------------------------------------- /src/cmd/ssh/ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/ssh.c -------------------------------------------------------------------------------- /src/cmd/ssh/ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/ssh.h -------------------------------------------------------------------------------- /src/cmd/ssh/ssh1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/ssh1.h -------------------------------------------------------------------------------- /src/cmd/ssh/ssh2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/ssh2.h -------------------------------------------------------------------------------- /src/cmd/ssh/ssh_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/ssh_config -------------------------------------------------------------------------------- /src/cmd/ssh/sshd.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/sshd.0 -------------------------------------------------------------------------------- /src/cmd/ssh/sshd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/sshd.8 -------------------------------------------------------------------------------- /src/cmd/ssh/sshd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/sshd.c -------------------------------------------------------------------------------- /src/cmd/ssh/sshlogin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/sshlogin.c -------------------------------------------------------------------------------- /src/cmd/ssh/sshlogin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/sshlogin.h -------------------------------------------------------------------------------- /src/cmd/ssh/sshpty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/sshpty.c -------------------------------------------------------------------------------- /src/cmd/ssh/sshpty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/sshpty.h -------------------------------------------------------------------------------- /src/cmd/ssh/sshtty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/sshtty.c -------------------------------------------------------------------------------- /src/cmd/ssh/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/trace.c -------------------------------------------------------------------------------- /src/cmd/ssh/ttymodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/ttymodes.c -------------------------------------------------------------------------------- /src/cmd/ssh/ttymodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/ttymodes.h -------------------------------------------------------------------------------- /src/cmd/ssh/uidswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/uidswap.c -------------------------------------------------------------------------------- /src/cmd/ssh/uidswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/uidswap.h -------------------------------------------------------------------------------- /src/cmd/ssh/uuencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/uuencode.c -------------------------------------------------------------------------------- /src/cmd/ssh/uuencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/uuencode.h -------------------------------------------------------------------------------- /src/cmd/ssh/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/version.h -------------------------------------------------------------------------------- /src/cmd/ssh/xmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/xmalloc.c -------------------------------------------------------------------------------- /src/cmd/ssh/xmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/ssh/xmalloc.h -------------------------------------------------------------------------------- /src/cmd/tcsh/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/FAQ -------------------------------------------------------------------------------- /src/cmd/tcsh/Fixes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/Fixes -------------------------------------------------------------------------------- /src/cmd/tcsh/Imakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/Imakefile -------------------------------------------------------------------------------- /src/cmd/tcsh/MAKEDIFFS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/MAKEDIFFS -------------------------------------------------------------------------------- /src/cmd/tcsh/MAKESHAR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/MAKESHAR -------------------------------------------------------------------------------- /src/cmd/tcsh/NewThings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/NewThings -------------------------------------------------------------------------------- /src/cmd/tcsh/Nmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/Nmakefile -------------------------------------------------------------------------------- /src/cmd/tcsh/Ported: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/Ported -------------------------------------------------------------------------------- /src/cmd/tcsh/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/README -------------------------------------------------------------------------------- /src/cmd/tcsh/WishList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/WishList -------------------------------------------------------------------------------- /src/cmd/tcsh/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/configure -------------------------------------------------------------------------------- /src/cmd/tcsh/ed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/ed.h -------------------------------------------------------------------------------- /src/cmd/tcsh/ed.init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/ed.init.c -------------------------------------------------------------------------------- /src/cmd/tcsh/ed.term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/ed.term.c -------------------------------------------------------------------------------- /src/cmd/tcsh/ed.term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/ed.term.h -------------------------------------------------------------------------------- /src/cmd/tcsh/ed.xmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/ed.xmap.c -------------------------------------------------------------------------------- /src/cmd/tcsh/gethost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/gethost.c -------------------------------------------------------------------------------- /src/cmd/tcsh/glob.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/glob.3 -------------------------------------------------------------------------------- /src/cmd/tcsh/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/glob.c -------------------------------------------------------------------------------- /src/cmd/tcsh/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/glob.h -------------------------------------------------------------------------------- /src/cmd/tcsh/host.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/host.defs -------------------------------------------------------------------------------- /src/cmd/tcsh/ma.setp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/ma.setp.c -------------------------------------------------------------------------------- /src/cmd/tcsh/mi.wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/mi.wait.h -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.char.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.char.h -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.dir.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.dir.h -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.dol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.dol.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.err.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.exec.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.exp.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.file.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.func.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.glob.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.h -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.hist.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.init.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.lex.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.misc.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.proc.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.proc.h -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.sem.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.set.c -------------------------------------------------------------------------------- /src/cmd/tcsh/sh.time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/sh.time.c -------------------------------------------------------------------------------- /src/cmd/tcsh/snames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/snames.h -------------------------------------------------------------------------------- /src/cmd/tcsh/src.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/src.desc -------------------------------------------------------------------------------- /src/cmd/tcsh/tc.bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tc.bind.c -------------------------------------------------------------------------------- /src/cmd/tcsh/tc.disc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tc.disc.c -------------------------------------------------------------------------------- /src/cmd/tcsh/tc.func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tc.func.c -------------------------------------------------------------------------------- /src/cmd/tcsh/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tc.h -------------------------------------------------------------------------------- /src/cmd/tcsh/tc.os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tc.os.c -------------------------------------------------------------------------------- /src/cmd/tcsh/tc.os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tc.os.h -------------------------------------------------------------------------------- /src/cmd/tcsh/tc.sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tc.sig.c -------------------------------------------------------------------------------- /src/cmd/tcsh/tc.sig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tc.sig.h -------------------------------------------------------------------------------- /src/cmd/tcsh/tc.str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tc.str.c -------------------------------------------------------------------------------- /src/cmd/tcsh/tc.vers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tc.vers.c -------------------------------------------------------------------------------- /src/cmd/tcsh/tc.wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tc.wait.h -------------------------------------------------------------------------------- /src/cmd/tcsh/tc.who.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tc.who.c -------------------------------------------------------------------------------- /src/cmd/tcsh/tcsh.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tcsh.man -------------------------------------------------------------------------------- /src/cmd/tcsh/tw.comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tw.comp.c -------------------------------------------------------------------------------- /src/cmd/tcsh/tw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tw.h -------------------------------------------------------------------------------- /src/cmd/tcsh/tw.help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tw.help.c -------------------------------------------------------------------------------- /src/cmd/tcsh/tw.init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tcsh/tw.init.c -------------------------------------------------------------------------------- /src/cmd/tic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tic/Makefile -------------------------------------------------------------------------------- /src/cmd/tic/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tic/compiler.h -------------------------------------------------------------------------------- /src/cmd/tic/curshdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tic/curshdr.h -------------------------------------------------------------------------------- /src/cmd/tic/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tic/object.h -------------------------------------------------------------------------------- /src/cmd/tic/tic.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tic/tic.1 -------------------------------------------------------------------------------- /src/cmd/tic/tic_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tic/tic_hash.c -------------------------------------------------------------------------------- /src/cmd/tic/tic_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tic/tic_main.c -------------------------------------------------------------------------------- /src/cmd/tic/tic_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tic/tic_read.c -------------------------------------------------------------------------------- /src/cmd/tic/tic_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/tic/tic_scan.c -------------------------------------------------------------------------------- /src/cmd/trace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/trace/Makefile -------------------------------------------------------------------------------- /src/cmd/trace/RELEASE: -------------------------------------------------------------------------------- 1 | 12-03-28 add -p support 2 | -------------------------------------------------------------------------------- /src/cmd/trace/lib.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/trace/lib.tab -------------------------------------------------------------------------------- /src/cmd/trace/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/trace/trace.c -------------------------------------------------------------------------------- /src/cmd/wget/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/AUTHORS -------------------------------------------------------------------------------- /src/cmd/wget/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/COPYING -------------------------------------------------------------------------------- /src/cmd/wget/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/ChangeLog -------------------------------------------------------------------------------- /src/cmd/wget/DISTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/DISTFILES -------------------------------------------------------------------------------- /src/cmd/wget/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/INSTALL -------------------------------------------------------------------------------- /src/cmd/wget/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/NEWS -------------------------------------------------------------------------------- /src/cmd/wget/Nmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/Nmakefile -------------------------------------------------------------------------------- /src/cmd/wget/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/README -------------------------------------------------------------------------------- /src/cmd/wget/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/config.h -------------------------------------------------------------------------------- /src/cmd/wget/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/configure -------------------------------------------------------------------------------- /src/cmd/wget/doc/version.texi: -------------------------------------------------------------------------------- 1 | @set VERSION 1.11.4 2 | -------------------------------------------------------------------------------- /src/cmd/wget/po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/be.po -------------------------------------------------------------------------------- /src/cmd/wget/po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/bg.po -------------------------------------------------------------------------------- /src/cmd/wget/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/ca.po -------------------------------------------------------------------------------- /src/cmd/wget/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/cs.po -------------------------------------------------------------------------------- /src/cmd/wget/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/da.po -------------------------------------------------------------------------------- /src/cmd/wget/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/de.po -------------------------------------------------------------------------------- /src/cmd/wget/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/el.po -------------------------------------------------------------------------------- /src/cmd/wget/po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/eo.po -------------------------------------------------------------------------------- /src/cmd/wget/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/es.po -------------------------------------------------------------------------------- /src/cmd/wget/po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/et.po -------------------------------------------------------------------------------- /src/cmd/wget/po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/eu.po -------------------------------------------------------------------------------- /src/cmd/wget/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/fi.po -------------------------------------------------------------------------------- /src/cmd/wget/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/fr.po -------------------------------------------------------------------------------- /src/cmd/wget/po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/ga.po -------------------------------------------------------------------------------- /src/cmd/wget/po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/gl.po -------------------------------------------------------------------------------- /src/cmd/wget/po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/he.po -------------------------------------------------------------------------------- /src/cmd/wget/po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/hr.po -------------------------------------------------------------------------------- /src/cmd/wget/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/hu.po -------------------------------------------------------------------------------- /src/cmd/wget/po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/id.po -------------------------------------------------------------------------------- /src/cmd/wget/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/it.po -------------------------------------------------------------------------------- /src/cmd/wget/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/ja.po -------------------------------------------------------------------------------- /src/cmd/wget/po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/nb.po -------------------------------------------------------------------------------- /src/cmd/wget/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/nl.po -------------------------------------------------------------------------------- /src/cmd/wget/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/pl.po -------------------------------------------------------------------------------- /src/cmd/wget/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/pt.po -------------------------------------------------------------------------------- /src/cmd/wget/po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/ro.po -------------------------------------------------------------------------------- /src/cmd/wget/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/ru.po -------------------------------------------------------------------------------- /src/cmd/wget/po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/sk.po -------------------------------------------------------------------------------- /src/cmd/wget/po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/sl.po -------------------------------------------------------------------------------- /src/cmd/wget/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/sr.po -------------------------------------------------------------------------------- /src/cmd/wget/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/sv.po -------------------------------------------------------------------------------- /src/cmd/wget/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/tr.po -------------------------------------------------------------------------------- /src/cmd/wget/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/uk.po -------------------------------------------------------------------------------- /src/cmd/wget/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/po/vi.po -------------------------------------------------------------------------------- /src/cmd/wget/src/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/src/ftp.c -------------------------------------------------------------------------------- /src/cmd/wget/src/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/src/ftp.h -------------------------------------------------------------------------------- /src/cmd/wget/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/src/log.c -------------------------------------------------------------------------------- /src/cmd/wget/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/src/log.h -------------------------------------------------------------------------------- /src/cmd/wget/src/res.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/src/res.c -------------------------------------------------------------------------------- /src/cmd/wget/src/res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/src/res.h -------------------------------------------------------------------------------- /src/cmd/wget/src/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/src/ssl.h -------------------------------------------------------------------------------- /src/cmd/wget/src/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/src/url.c -------------------------------------------------------------------------------- /src/cmd/wget/src/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/wget/src/url.h -------------------------------------------------------------------------------- /src/cmd/wget/src/version.c: -------------------------------------------------------------------------------- 1 | char *version_string = "1.11.4"; 2 | -------------------------------------------------------------------------------- /src/cmd/wget/tests/Test-ftp/output/afile.txt: -------------------------------------------------------------------------------- 1 | Some text. 2 | -------------------------------------------------------------------------------- /src/cmd/wget/tests/inc/HTTP/URI.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cmd/yacc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/yacc/Makefile -------------------------------------------------------------------------------- /src/cmd/yacc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/yacc/README -------------------------------------------------------------------------------- /src/cmd/yacc/closure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/yacc/closure.c -------------------------------------------------------------------------------- /src/cmd/yacc/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/yacc/defs.h -------------------------------------------------------------------------------- /src/cmd/yacc/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/yacc/error.c -------------------------------------------------------------------------------- /src/cmd/yacc/lalr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/yacc/lalr.c -------------------------------------------------------------------------------- /src/cmd/yacc/lr0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/yacc/lr0.c -------------------------------------------------------------------------------- /src/cmd/yacc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/yacc/main.c -------------------------------------------------------------------------------- /src/cmd/yacc/mkpar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/yacc/mkpar.c -------------------------------------------------------------------------------- /src/cmd/yacc/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/yacc/output.c -------------------------------------------------------------------------------- /src/cmd/yacc/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/yacc/reader.c -------------------------------------------------------------------------------- /src/cmd/yacc/symtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/yacc/symtab.c -------------------------------------------------------------------------------- /src/cmd/yacc/verbose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/yacc/verbose.c -------------------------------------------------------------------------------- /src/cmd/yacc/yacc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/cmd/yacc/yacc.1 -------------------------------------------------------------------------------- /src/lib/Makefile: -------------------------------------------------------------------------------- 1 | :MAKE: 2 | -------------------------------------------------------------------------------- /src/lib/Mamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/Mamfile -------------------------------------------------------------------------------- /src/lib/libcrypto/buildinf.h: -------------------------------------------------------------------------------- 1 | /* { CFLAGS DATE PLATFORM } defined in Nmakefile */ 2 | -------------------------------------------------------------------------------- /src/lib/libcrypto/crypto/bn/asm/x86/f: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/perl 2 | # x86 assember 3 | 4 | -------------------------------------------------------------------------------- /src/lib/libcrypto/crypto/sha/asm/README: -------------------------------------------------------------------------------- 1 | C2.pl works 2 | -------------------------------------------------------------------------------- /src/lib/libcrypto/openssl-0.9.8i/VMS/socketshr_shr.opt: -------------------------------------------------------------------------------- 1 | socketshr/share 2 | -------------------------------------------------------------------------------- /src/lib/libcrypto/openssl-0.9.8i/VMS/ucx_shr_decc_log.opt: -------------------------------------------------------------------------------- 1 | ucx$ipc_shr/share 2 | -------------------------------------------------------------------------------- /src/lib/libcrypto/openssl-0.9.8i/ms/certCA.srl: -------------------------------------------------------------------------------- 1 | 1D 2 | -------------------------------------------------------------------------------- /src/lib/libdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libdb/Makefile -------------------------------------------------------------------------------- /src/lib/libdb/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libdb/db.c -------------------------------------------------------------------------------- /src/lib/libdb/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libdb/db.h -------------------------------------------------------------------------------- /src/lib/libdb/extern.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/libglut/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libglut/NOTICE -------------------------------------------------------------------------------- /src/lib/liblex/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/liblex/main.c -------------------------------------------------------------------------------- /src/lib/liblex/yywrap.c: -------------------------------------------------------------------------------- 1 | int yywrap(void) 2 | { 3 | return(1); 4 | } 5 | -------------------------------------------------------------------------------- /src/lib/libpng/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libpng/CHANGES -------------------------------------------------------------------------------- /src/lib/libpng/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libpng/INSTALL -------------------------------------------------------------------------------- /src/lib/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libpng/LICENSE -------------------------------------------------------------------------------- /src/lib/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libpng/README -------------------------------------------------------------------------------- /src/lib/libpng/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libpng/TODO -------------------------------------------------------------------------------- /src/lib/libpng/Y2KINFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libpng/Y2KINFO -------------------------------------------------------------------------------- /src/lib/libpng/png.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libpng/png.3 -------------------------------------------------------------------------------- /src/lib/libpng/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libpng/png.5 -------------------------------------------------------------------------------- /src/lib/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libpng/png.c -------------------------------------------------------------------------------- /src/lib/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libpng/png.h -------------------------------------------------------------------------------- /src/lib/libpng/png.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libpng/png.sym -------------------------------------------------------------------------------- /src/lib/libpng/pngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libpng/pngpf.3 -------------------------------------------------------------------------------- /src/lib/libpng/pngvcrd.c: -------------------------------------------------------------------------------- 1 | /* pnggvrd.c was removed from libpng-1.2.20. */ 2 | -------------------------------------------------------------------------------- /src/lib/libposix/bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libposix/bsd.c -------------------------------------------------------------------------------- /src/lib/libposix/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libposix/dir.c -------------------------------------------------------------------------------- /src/lib/libposix/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libposix/dl.c -------------------------------------------------------------------------------- /src/lib/libposix/dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libposix/dl.h -------------------------------------------------------------------------------- /src/lib/libposix/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libposix/ipc.c -------------------------------------------------------------------------------- /src/lib/libposix/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libposix/log.c -------------------------------------------------------------------------------- /src/lib/libposix/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libposix/mem.c -------------------------------------------------------------------------------- /src/lib/libposix/mnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libposix/mnt.c -------------------------------------------------------------------------------- /src/lib/libposix/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libposix/net.c -------------------------------------------------------------------------------- /src/lib/libposix/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libposix/raw.h -------------------------------------------------------------------------------- /src/lib/libposix/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libposix/reg.c -------------------------------------------------------------------------------- /src/lib/libposix/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libposix/reg.h -------------------------------------------------------------------------------- /src/lib/libposix/sid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libposix/sid.c -------------------------------------------------------------------------------- /src/lib/libposix/sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libposix/sig.c -------------------------------------------------------------------------------- /src/lib/libpthread/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/libpthread/FAQ -------------------------------------------------------------------------------- /src/lib/librpc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/librpc/README -------------------------------------------------------------------------------- /src/lib/librpc/namespace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/librpc/rpc.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/librpc/rpc.3 -------------------------------------------------------------------------------- /src/lib/librpc/rpc.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/librpc/rpc.sym -------------------------------------------------------------------------------- /src/lib/librpc/svc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/librpc/svc.c -------------------------------------------------------------------------------- /src/lib/librpc/xdr.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/librpc/xdr.3 -------------------------------------------------------------------------------- /src/lib/librpc/xdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/librpc/xdr.c -------------------------------------------------------------------------------- /src/lib/librpcsvc/yp.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/librpcsvc/yp.x -------------------------------------------------------------------------------- /src/lib/libstdio/ast/ast.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/libstdio/ast/ast_getopt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/libstdio/ast/ast_std.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/libstdio/ast/ast_time.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/libstdio/ast/ast_tty.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/libstdio/ast/ast_version.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/libstdio/ast/ls.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/liby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/liby/Makefile -------------------------------------------------------------------------------- /src/lib/liby/yyerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/liby/yyerror.c -------------------------------------------------------------------------------- /src/lib/liby/yyparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/lib/liby/yyparse.c -------------------------------------------------------------------------------- /src/uwin/applet/sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/applet/sql.h -------------------------------------------------------------------------------- /src/uwin/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/Makefile -------------------------------------------------------------------------------- /src/uwin/doc/credits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/credits -------------------------------------------------------------------------------- /src/uwin/doc/devset.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/devset.mm -------------------------------------------------------------------------------- /src/uwin/doc/dlls.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/dlls.mm -------------------------------------------------------------------------------- /src/uwin/doc/gentab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/gentab -------------------------------------------------------------------------------- /src/uwin/doc/iffe.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/iffe.mm -------------------------------------------------------------------------------- /src/uwin/doc/links.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/links.mm -------------------------------------------------------------------------------- /src/uwin/doc/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/map.html -------------------------------------------------------------------------------- /src/uwin/doc/nmake.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/nmake.mm -------------------------------------------------------------------------------- /src/uwin/doc/reg.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/reg.mm -------------------------------------------------------------------------------- /src/uwin/doc/talk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/talk.pdf -------------------------------------------------------------------------------- /src/uwin/doc/tape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/tape.html -------------------------------------------------------------------------------- /src/uwin/doc/unin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/unin.ico -------------------------------------------------------------------------------- /src/uwin/doc/uwin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/uwin.html -------------------------------------------------------------------------------- /src/uwin/doc/uwin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/uwin.ico -------------------------------------------------------------------------------- /src/uwin/doc/whatis.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/whatis.mm -------------------------------------------------------------------------------- /src/uwin/doc/winnt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/winnt.pdf -------------------------------------------------------------------------------- /src/uwin/doc/xbase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/xbase.mm -------------------------------------------------------------------------------- /src/uwin/doc/xopen.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/doc/xopen.tab -------------------------------------------------------------------------------- /src/uwin/fun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/fun/Makefile -------------------------------------------------------------------------------- /src/uwin/fun/cv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/fun/cv.sh -------------------------------------------------------------------------------- /src/uwin/fun/dirs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/fun/dirs.sh -------------------------------------------------------------------------------- /src/uwin/fun/getopt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/fun/getopt.sh -------------------------------------------------------------------------------- /src/uwin/fun/title.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/fun/title.sh -------------------------------------------------------------------------------- /src/uwin/install/terminfo.files: -------------------------------------------------------------------------------- 1 | lib/terminfo 2 | -------------------------------------------------------------------------------- /src/uwin/install/unin.rc: -------------------------------------------------------------------------------- 1 | unin ICON "../doc/unin.ico" 2 | -------------------------------------------------------------------------------- /src/uwin/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/Makefile -------------------------------------------------------------------------------- /src/uwin/misc/RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/RELEASE -------------------------------------------------------------------------------- /src/uwin/misc/ar2omf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/ar2omf.c -------------------------------------------------------------------------------- /src/uwin/misc/dumpsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/dumpsd.c -------------------------------------------------------------------------------- /src/uwin/misc/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/echo.c -------------------------------------------------------------------------------- /src/uwin/misc/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/init.c -------------------------------------------------------------------------------- /src/uwin/misc/ipcrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/ipcrm.c -------------------------------------------------------------------------------- /src/uwin/misc/ipcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/ipcs.c -------------------------------------------------------------------------------- /src/uwin/misc/ldd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/ldd.c -------------------------------------------------------------------------------- /src/uwin/misc/mknod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/mknod.c -------------------------------------------------------------------------------- /src/uwin/misc/nm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/nm.c -------------------------------------------------------------------------------- /src/uwin/misc/nocrnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/nocrnl.c -------------------------------------------------------------------------------- /src/uwin/misc/size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/size.c -------------------------------------------------------------------------------- /src/uwin/misc/su.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/su.c -------------------------------------------------------------------------------- /src/uwin/misc/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/sync.c -------------------------------------------------------------------------------- /src/uwin/misc/tput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/tput.c -------------------------------------------------------------------------------- /src/uwin/misc/wterm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/misc/wterm.c -------------------------------------------------------------------------------- /src/uwin/serv/ADMIN.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/serv/ADMIN.mk -------------------------------------------------------------------------------- /src/uwin/serv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/serv/Makefile -------------------------------------------------------------------------------- /src/uwin/serv/RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/serv/RELEASE -------------------------------------------------------------------------------- /src/uwin/serv/login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/serv/login.c -------------------------------------------------------------------------------- /src/uwin/serv/loginp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/serv/loginp.c -------------------------------------------------------------------------------- /src/uwin/serv/logins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/serv/logins.c -------------------------------------------------------------------------------- /src/uwin/serv/passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/serv/passwd.c -------------------------------------------------------------------------------- /src/uwin/serv/tracer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/serv/tracer.c -------------------------------------------------------------------------------- /src/uwin/serv/ucs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/serv/ucs.c -------------------------------------------------------------------------------- /src/uwin/serv/ums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/serv/ums.c -------------------------------------------------------------------------------- /src/uwin/serv/uw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/serv/uw.ico -------------------------------------------------------------------------------- /src/uwin/serv/uwin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att/uwin/HEAD/src/uwin/serv/uwin.rc --------------------------------------------------------------------------------