├── .github └── workflows │ └── mirror.yml ├── bat ├── doeb.bat ├── eb.bat ├── filesize.c ├── makecomm ├── makeinit ├── master.ctl ├── stub.c ├── unset.bat └── xb.sed ├── bld ├── afxapi │ ├── dnt386.dll │ │ └── makefile │ ├── dnt386 │ │ └── makefile │ ├── dnt386u.dll │ │ └── makefile │ ├── dnt386u │ │ └── makefile │ ├── dobldver.awk │ ├── include │ │ ├── afx.mh │ │ ├── afx.mnl │ │ ├── afxadv.mh │ │ ├── afxcmn.mh │ │ ├── afxcmn1.mnl │ │ ├── afxcmn2.mnl │ │ ├── afxcmn3.mnl │ │ ├── afxcmn4.mnl │ │ ├── afxcoll.mh │ │ ├── afxcoll.mnl │ │ ├── afxcview.mh │ │ ├── afxcview.mnl │ │ ├── afxdd_.mh │ │ ├── afxdisp.mh │ │ ├── afxdisp.mnl │ │ ├── afxdlgs.mh │ │ ├── afxdlgs.mnl │ │ ├── afxdll_.mh │ │ ├── afxdtctl.mh │ │ ├── afxdtctl.mnl │ │ ├── afxext.mh │ │ ├── afxext.mnl │ │ ├── afxmsg_.mh │ │ ├── afxmt.mh │ │ ├── afxmt.mnl │ │ ├── afxprint.mrc │ │ ├── afxpriv.mh │ │ ├── afxres.mrc │ │ ├── afxstat_.mh │ │ ├── afxtempl.mh │ │ ├── afxtls_.mh │ │ ├── afxv_w32.mh │ │ ├── afxver_.mh │ │ ├── afxwin.mh │ │ ├── afxwin1.mnl │ │ ├── afxwin2.mnl │ │ ├── afxwin3.mnl │ │ ├── afxwin4.mnl │ │ ├── afxwin5.mnl │ │ └── res │ │ │ ├── help.cur │ │ │ └── magnify.cur │ ├── lang.ctl │ ├── lib │ │ ├── animate.cpp │ │ ├── archive.cpp │ │ ├── archivex.cpp │ │ ├── arstream.cpp │ │ ├── bitmap.cpp │ │ ├── bmpbtn.cpp │ │ ├── brush.cpp │ │ ├── button.cpp │ │ ├── bytearr.cpp │ │ ├── cdhook.cpp │ │ ├── cdhook.h │ │ ├── clientdc.cpp │ │ ├── cmdline.cpp │ │ ├── cmdtarg.cpp │ │ ├── cmdui.cpp │ │ ├── colordlg.cpp │ │ ├── combobox.cpp │ │ ├── comboex.cpp │ │ ├── commdlg.cpp │ │ ├── createdc.cpp │ │ ├── critsect.cpp │ │ ├── ctrlbar.cpp │ │ ├── ctrlview.cpp │ │ ├── dataexch.cpp │ │ ├── datetime.cpp │ │ ├── dc.cpp │ │ ├── dcwin2k.cpp │ │ ├── dcwin98.cpp │ │ ├── debug.cpp │ │ ├── dialog.cpp │ │ ├── dialog.h │ │ ├── dispdrvr.cpp │ │ ├── dlgbar.cpp │ │ ├── dockbar.cpp │ │ ├── dockcont.cpp │ │ ├── docmangr.cpp │ │ ├── doctempl.cpp │ │ ├── document.cpp │ │ ├── draglist.cpp │ │ ├── dumpcont.cpp │ │ ├── dwordarr.cpp │ │ ├── dynlink.cpp │ │ ├── edit.cpp │ │ ├── editview.cpp │ │ ├── edstate.cpp │ │ ├── edstate.h │ │ ├── event.cpp │ │ ├── except.cpp │ │ ├── file.cpp │ │ ├── filedlg.cpp │ │ ├── filefind.cpp │ │ ├── filenew.cpp │ │ ├── filenew.h │ │ ├── filex.cpp │ │ ├── finddlg.cpp │ │ ├── font.cpp │ │ ├── fontdlg.cpp │ │ ├── formview.cpp │ │ ├── framewnd.cpp │ │ ├── gdiobj.cpp │ │ ├── handmap.cpp │ │ ├── handmap.h │ │ ├── header.cpp │ │ ├── hook.cpp │ │ ├── hotkey.cpp │ │ ├── ie3.cpp │ │ ├── ie4.cpp │ │ ├── imagelst.cpp │ │ ├── inline1.cpp │ │ ├── inline2.cpp │ │ ├── inline3.cpp │ │ ├── inline4.cpp │ │ ├── inline5.cpp │ │ ├── invargx.cpp │ │ ├── ipaddctl.cpp │ │ ├── isvalid.cpp │ │ ├── linkctrl.cpp │ │ ├── listbox.cpp │ │ ├── listctrl.cpp │ │ ├── listview.cpp │ │ ├── mapp2p.cpp │ │ ├── mapp2w.cpp │ │ ├── maps2o.cpp │ │ ├── maps2p.cpp │ │ ├── maps2s.cpp │ │ ├── mapw2o.cpp │ │ ├── mapw2p.cpp │ │ ├── mdichild.cpp │ │ ├── mdiframe.cpp │ │ ├── memfile.cpp │ │ ├── memoryx.cpp │ │ ├── menu.cpp │ │ ├── metafile.cpp │ │ ├── minidock.cpp │ │ ├── minifwnd.cpp │ │ ├── modstate.cpp │ │ ├── monthcal.cpp │ │ ├── mtstate.cpp │ │ ├── multidoc.cpp │ │ ├── multlock.cpp │ │ ├── mutex.cpp │ │ ├── notrack.cpp │ │ ├── notsuppx.cpp │ │ ├── obarr.cpp │ │ ├── object.cpp │ │ ├── oblist.cpp │ │ ├── oledispx.cpp │ │ ├── olex.cpp │ │ ├── owf.rc │ │ ├── pagectrl.cpp │ │ ├── pagesdlg.cpp │ │ ├── paintdc.cpp │ │ ├── palette.cpp │ │ ├── pen.cpp │ │ ├── plobject.cpp │ │ ├── prevdc.cpp │ │ ├── preview.cpp │ │ ├── prevstat.cpp │ │ ├── printdex.cpp │ │ ├── printdlg.cpp │ │ ├── printinf.cpp │ │ ├── printing.cpp │ │ ├── printing.h │ │ ├── progress.cpp │ │ ├── proppage.cpp │ │ ├── propsht.cpp │ │ ├── ptrarr.cpp │ │ ├── ptrlist.cpp │ │ ├── rebar.cpp │ │ ├── rebarctl.cpp │ │ ├── recent.cpp │ │ ├── regclass.cpp │ │ ├── resx.cpp │ │ ├── rgn.cpp │ │ ├── richedit.cpp │ │ ├── runclass.cpp │ │ ├── scrollbr.cpp │ │ ├── scrollvw.cpp │ │ ├── semaphor.cpp │ │ ├── simplex.cpp │ │ ├── simplist.cpp │ │ ├── singldoc.cpp │ │ ├── singlock.cpp │ │ ├── slider.cpp │ │ ├── spinbtn.cpp │ │ ├── splitter.cpp │ │ ├── statbar.cpp │ │ ├── statctrl.cpp │ │ ├── statcui.cpp │ │ ├── statcui.h │ │ ├── static.cpp │ │ ├── stdafx.h │ │ ├── stdio.cpp │ │ ├── strarr.cpp │ │ ├── string.cpp │ │ ├── strlist.cpp │ │ ├── substr.cpp │ │ ├── syncobj.cpp │ │ ├── tabctrl.cpp │ │ ├── threadit.cpp │ │ ├── threadit.h │ │ ├── thrstate.cpp │ │ ├── time.cpp │ │ ├── timespan.cpp │ │ ├── tlobject.cpp │ │ ├── toolbar.cpp │ │ ├── toolctrl.cpp │ │ ├── toolcui.cpp │ │ ├── toolcui.h │ │ ├── tooltip.cpp │ │ ├── treectrl.cpp │ │ ├── treeview.cpp │ │ ├── uintarr.cpp │ │ ├── userx.cpp │ │ ├── view.cpp │ │ ├── win2k.cpp │ │ ├── win98.cpp │ │ ├── winapp.cpp │ │ ├── windowdc.cpp │ │ ├── wininit.cpp │ │ ├── winmain.cpp │ │ ├── winthred.cpp │ │ ├── winxp.cpp │ │ ├── wnd.cpp │ │ ├── wndproc.cpp │ │ └── wordarr.cpp │ ├── master.mif │ ├── nt │ │ └── makefile │ ├── nt386.dll │ │ └── makefile │ ├── nt386 │ │ └── makefile │ ├── nt386u.dll │ │ └── makefile │ ├── nt386u │ │ └── makefile │ ├── test │ │ ├── chk_exec.c │ │ ├── environ.mif │ │ ├── error.chk │ │ ├── makefile │ │ └── source │ │ │ ├── arch01.cpp │ │ │ ├── arch02.cpp │ │ │ ├── array01.cpp │ │ │ ├── array02.cpp │ │ │ ├── array03.cpp │ │ │ ├── array04.cpp │ │ │ ├── array05.cpp │ │ │ ├── array06.cpp │ │ │ ├── array07.cpp │ │ │ ├── array08.cpp │ │ │ ├── array09.cpp │ │ │ ├── cmd01.cpp │ │ │ ├── cmd02.cpp │ │ │ ├── disp01.cpp │ │ │ ├── fail.h │ │ │ ├── file01.cpp │ │ │ ├── file02.cpp │ │ │ ├── file03.cpp │ │ │ ├── file04.cpp │ │ │ ├── handle01.cpp │ │ │ ├── list01.cpp │ │ │ ├── list02.cpp │ │ │ ├── list03.cpp │ │ │ ├── list04.cpp │ │ │ ├── list05.cpp │ │ │ ├── map01.cpp │ │ │ ├── map02.cpp │ │ │ ├── map03.cpp │ │ │ ├── map04.cpp │ │ │ ├── map05.cpp │ │ │ ├── map06.cpp │ │ │ ├── map07.cpp │ │ │ ├── map08.cpp │ │ │ ├── map09.cpp │ │ │ ├── object01.cpp │ │ │ ├── object02.cpp │ │ │ ├── rect01.cpp │ │ │ ├── stdafx.h │ │ │ ├── string01.cpp │ │ │ ├── string02.cpp │ │ │ ├── string03.cpp │ │ │ ├── string04.cpp │ │ │ ├── string04.rc │ │ │ ├── test.mif │ │ │ ├── wnd01.cpp │ │ │ └── wnd02.cpp │ └── version.rc ├── appwiz │ ├── c │ │ ├── appwiz.c │ │ └── projtype.c │ ├── h │ │ ├── appmanif.xml │ │ ├── appwiz.msg │ │ ├── appwiz.rc │ │ ├── newproj.dlg │ │ ├── newproj.h │ │ └── projtype.h │ ├── lang.ctl │ ├── master.mif │ ├── nt386 │ │ └── makefile │ └── wini86 │ │ └── makefile ├── as │ ├── alpha │ │ ├── alpha.mif │ │ ├── c │ │ │ ├── alphafmt.c │ │ │ ├── alphains.c │ │ │ └── asregs.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── h │ │ │ ├── alphafmt.h │ │ │ ├── alphafmt.inc │ │ │ ├── as_arch.h │ │ │ ├── insenum.inc │ │ │ ├── inslist.h │ │ │ ├── regclass.inc │ │ │ └── register.h │ │ ├── inline │ │ │ ├── osi386 │ │ │ │ ├── makefile │ │ │ │ └── test │ │ │ │ │ └── makefile │ │ │ └── osiaxp │ │ │ │ ├── makefile │ │ │ │ └── test │ │ │ │ └── makefile │ │ ├── linux386 │ │ │ └── makefile │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── osi386 │ │ │ └── makefile │ │ └── test │ │ │ ├── abs.asm │ │ │ ├── absdrv.c │ │ │ ├── axp_regs.h │ │ │ ├── ctrl.asm │ │ │ ├── ctrldrv.c │ │ │ ├── fact.asm │ │ │ ├── factdrv.c │ │ │ ├── good.out │ │ │ ├── jmp.asm │ │ │ ├── makefile │ │ │ ├── mov.asm │ │ │ ├── movdrv.c │ │ │ ├── semi.asm │ │ │ └── tests.h │ ├── c │ │ ├── asdirop.c │ │ ├── asdrectv.c │ │ ├── asexpr.c │ │ ├── ashash.c │ │ ├── asinline.c │ │ ├── asiobj.c │ │ ├── asitest.c │ │ ├── asmem.c │ │ ├── asmsg.c │ │ ├── asmsgj.c │ │ ├── asnumlab.c │ │ ├── asopernd.c │ │ ├── assymbol.c │ │ ├── asutils.c │ │ ├── main.c │ │ ├── mkstrid.c │ │ ├── obj.c │ │ ├── options.c │ │ └── sections.c │ ├── exever.rc │ ├── files.dat │ ├── h │ │ ├── as.h │ │ ├── as.msg │ │ ├── as.rc │ │ ├── ashash.h │ │ ├── asinline.h │ │ ├── asmem.h │ │ ├── asmsg.h │ │ ├── asnumlab.h │ │ ├── directiv.h │ │ ├── exprtree.h │ │ ├── lexyacc.h │ │ ├── obj.h │ │ ├── options.h │ │ ├── sections.h │ │ ├── sections.inc │ │ ├── symbol.h │ │ ├── tokens.h │ │ └── utils.h │ ├── lang.ctl │ ├── mif │ │ ├── asyy.sed │ │ ├── client.mif │ │ └── master.mif │ ├── mips │ │ ├── c │ │ │ ├── asregs.c │ │ │ ├── mipsfmt.c │ │ │ └── mipsins.c │ │ ├── h │ │ │ ├── as_arch.h │ │ │ ├── insenum.inc │ │ │ ├── inslist.h │ │ │ ├── mipsfmt.h │ │ │ ├── mipsfmt.inc │ │ │ ├── regclass.inc │ │ │ └── register.h │ │ ├── inline │ │ │ ├── osi386 │ │ │ │ └── makefile │ │ │ └── osimps │ │ │ │ └── makefile │ │ ├── linux386 │ │ │ └── makefile │ │ ├── linuxmps │ │ │ └── makefile │ │ ├── mips.mif │ │ ├── notes.txt │ │ ├── nt386 │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ └── test │ │ │ ├── fpinstst.asm │ │ │ ├── hello.asm │ │ │ └── instest.asm │ ├── ppc │ │ ├── boot.ctl │ │ ├── bootmake │ │ ├── c │ │ │ ├── asregs.c │ │ │ ├── ppcfmt.c │ │ │ └── ppcins.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── h │ │ │ ├── as_arch.h │ │ │ ├── inslist.h │ │ │ ├── ppcfmt.h │ │ │ ├── ppcfmt.inc │ │ │ ├── regclass.inc │ │ │ └── register.h │ │ ├── inline │ │ │ ├── boot.ctl │ │ │ ├── bootmake │ │ │ ├── osi386 │ │ │ │ ├── makefile │ │ │ │ └── test │ │ │ │ │ └── makefile │ │ │ ├── osiaxp │ │ │ │ ├── makefile │ │ │ │ └── test │ │ │ │ │ └── makefile │ │ │ └── osippc │ │ │ │ └── makefile │ │ ├── linux386 │ │ │ └── makefile │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── osi386 │ │ │ └── makefile │ │ ├── ppc.mif │ │ └── test │ │ │ ├── fmts.asm │ │ │ └── hello.asm │ └── y │ │ ├── as.y │ │ ├── scan.re │ │ ├── skeleton.c │ │ └── yydriver.c ├── aui │ ├── boot.ctl │ ├── bootmake │ ├── c │ │ ├── dlgnew.c │ │ ├── dlgpick.c │ │ ├── dlgsrch.c │ │ ├── guimain.c │ │ ├── mkstr.c │ │ ├── rxwrap.c │ │ ├── wndalloc.c │ │ ├── wndbgch.c │ │ ├── wndchar.c │ │ ├── wndchoos.c │ │ ├── wndclean.c │ │ ├── wndcolor.c │ │ ├── wndcreat.c │ │ ├── wndcrsr.c │ │ ├── wndcurr.c │ │ ├── wnddfclr.c │ │ ├── wnddirt.c │ │ ├── wnddlg.c │ │ ├── wnddoin.c │ │ ├── wndefra.c │ │ ├── wndendhk.c │ │ ├── wndfdlg.c │ │ ├── wndfonhk.c │ │ ├── wndfont.c │ │ ├── wndfref.c │ │ ├── wndfront.c │ │ ├── wndgadgt.c │ │ ├── wndhelp.c │ │ ├── wndhist.c │ │ ├── wndid.c │ │ ├── wndimain.c │ │ ├── wndldstr.c │ │ ├── wndmacro.c │ │ ├── wndmem.c │ │ ├── wndmeth.c │ │ ├── wndmnsz.c │ │ ├── wndmouse.c │ │ ├── wndmsg.c │ │ ├── wndpaint.c │ │ ├── wndpop.c │ │ ├── wndqryhk.c │ │ ├── wndrect.c │ │ ├── wndresiz.c │ │ ├── wndring.c │ │ ├── wndrszhk.c │ │ ├── wndrxerr.c │ │ ├── wndscrol.c │ │ ├── wndsel.c │ │ ├── wndsfra.c │ │ ├── wndshrnk.c │ │ ├── wndshthk.c │ │ ├── wndspawn.c │ │ ├── wndsrch.c │ │ ├── wndstat.c │ │ ├── wndstr.c │ │ ├── wndstyle.c │ │ ├── wndsysin.c │ │ ├── wndtbatr.c │ │ ├── wndtool.c │ │ └── wndutil.c │ ├── compile.gbl │ ├── dlgconv │ │ ├── dlgconv.c │ │ └── doit.cmd │ ├── dos386 │ │ └── makefile │ ├── dosi86 │ │ └── makefile │ ├── h │ │ ├── aui.h │ │ ├── aui.msg │ │ ├── aui.rc │ │ ├── aui.str │ │ ├── auipvt.h │ │ ├── auistr.rc │ │ ├── dlgbutn.h │ │ ├── dlgnew.h │ │ ├── dlgrx.dlg │ │ ├── dlgrx.h │ │ ├── dlgsrch.dlg │ │ ├── dlgsrch.h │ │ ├── dlgsrcha.dlg │ │ ├── japrx.dlg │ │ ├── japsrch.dlg │ │ ├── japsrcha.dlg │ │ ├── rxwrap.h │ │ └── wndregx.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── linuxmps │ │ └── makefile │ ├── master.mif │ ├── nov386 │ │ └── makefile │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386.pm │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── os2i86.pm │ │ └── makefile │ ├── os2i86 │ │ └── makefile │ ├── qnx386 │ │ └── makefile │ ├── qnxi86 │ │ └── makefile │ ├── rdos386 │ │ └── makefile │ ├── sample │ │ ├── c │ │ │ ├── app.c │ │ │ ├── appcolor.c │ │ │ ├── dlgcmd.c │ │ │ ├── dlgoptn.c │ │ │ ├── menus.c │ │ │ ├── password.c │ │ │ ├── util.c │ │ │ ├── window1.c │ │ │ ├── window2.c │ │ │ ├── window3.c │ │ │ ├── window4.c │ │ │ ├── window5.c │ │ │ ├── window6.c │ │ │ ├── window7.c │ │ │ └── window8.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── dosi86 │ │ │ └── makefile │ │ ├── dui.ico │ │ ├── dui2.ico │ │ ├── five.bmp │ │ ├── four.bmp │ │ ├── h │ │ │ ├── app.h │ │ │ ├── app.rc │ │ │ ├── appcomm.rc │ │ │ ├── apppm.rc │ │ │ ├── appui.rc │ │ │ ├── dlgoptn.dlg │ │ │ ├── dlgoptn.h │ │ │ ├── dlgoptn2.dlg │ │ │ ├── japoptn.dlg │ │ │ ├── keys.h │ │ │ └── rcdefs.h │ │ ├── lang.ctl │ │ ├── master.mif │ │ ├── nt386.gui │ │ │ └── makefile │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── one.bmp │ │ ├── os2386.gui │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── os2i86.gui │ │ │ └── makefile │ │ ├── source1.bmp │ │ ├── source2.bmp │ │ ├── stop1.bmp │ │ ├── stop2.bmp │ │ ├── three.bmp │ │ ├── two.bmp │ │ ├── wini86.gui │ │ │ └── makefile │ │ ├── wini86 │ │ │ └── makefile │ │ ├── word2.ico │ │ └── words.ico │ ├── unix │ │ └── objfiles.mk │ ├── win386 │ │ └── makefile │ └── wini86 │ │ └── makefile ├── bdiff │ ├── bpatch.msg │ ├── bpatch.rc │ ├── c │ │ ├── bdiff.c │ │ ├── bdiffmem.c │ │ ├── bdump.c │ │ ├── bpatch.c │ │ ├── bpatchp.c │ │ ├── bpcmt.c │ │ ├── bplevel.c │ │ ├── dopatch.c │ │ ├── dopatchd.c │ │ ├── dopatchp.c │ │ ├── dopatchw.c │ │ ├── dopatchx.c │ │ ├── msg.c │ │ ├── myio.c │ │ ├── oldfile.c │ │ ├── patchio.c │ │ ├── patmain.c │ │ ├── wbdiff.c │ │ ├── wcpatch.c │ │ ├── wcptchio.c │ │ ├── wpatch.c │ │ └── wpatchio.c │ ├── dos386 │ │ └── makefile │ ├── dosi86 │ │ └── makefile │ ├── files.dat │ ├── h │ │ ├── bdiff.h │ │ ├── bpatch.h │ │ ├── wpatch.h │ │ └── wpatchio.h │ ├── lang.ctl │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── qnx386 │ │ └── makefile │ └── usage.sp ├── bench │ ├── banal │ │ ├── banal.c │ │ ├── bcomp.c │ │ └── makefile │ ├── bmark │ │ ├── bmark.mif │ │ ├── c │ │ │ ├── emfloat.c │ │ │ ├── misc.c │ │ │ ├── nbench0.c │ │ │ ├── nbench1.c │ │ │ └── sysspec.c │ │ ├── h │ │ │ ├── emfloat.h │ │ │ ├── misc.h │ │ │ ├── nbench0.h │ │ │ ├── nbench1.h │ │ │ ├── nmglobal.h │ │ │ ├── sysspec.h │ │ │ └── wordcat.h │ │ ├── ibmc │ │ │ └── makefile │ │ ├── nnet.dat │ │ ├── w10.6 │ │ │ └── makefile │ │ └── watcom │ │ │ └── makefile │ ├── bmsvc.cmd │ ├── bmsvc.csh │ ├── bone.cmd │ ├── bone.csh │ ├── bwatcom.cmd │ ├── bwatcom.csh │ ├── c4 │ │ ├── best.c │ │ ├── best.h │ │ ├── c4.bat │ │ ├── c4.c │ │ ├── c4.doc │ │ ├── c4.h │ │ ├── c4.mif │ │ ├── c4run.doc │ │ ├── ibmc │ │ │ └── makefile │ │ ├── input │ │ ├── mach.c │ │ ├── makefile │ │ ├── msvc │ │ │ └── makefile │ │ ├── play.c │ │ ├── play.h │ │ ├── readme │ │ ├── trans.c │ │ └── watcom │ │ │ └── makefile │ ├── clinpack │ │ ├── clinpack.bat │ │ ├── clinpack.c │ │ ├── clinpack.mif │ │ ├── ibmc │ │ │ └── makefile │ │ ├── makefile │ │ ├── msvc │ │ │ └── makefile │ │ └── watcom │ │ │ └── makefile │ ├── dhrystone │ │ ├── dhry.h │ │ ├── dhry_1.c │ │ ├── dhry_2.c │ │ ├── dhrystone.mif │ │ ├── ibmc │ │ │ └── makefile │ │ ├── msvc │ │ │ └── makefile │ │ └── watcom │ │ │ └── makefile │ ├── fft │ │ ├── fft.c │ │ ├── fft.mif │ │ ├── ibmc │ │ │ └── makefile │ │ ├── msvc │ │ │ └── makefile │ │ ├── trigtbl.h │ │ └── watcom │ │ │ └── makefile │ ├── flops │ │ ├── flops.bat │ │ ├── flops.c │ │ ├── flops.doc │ │ ├── flops.mif │ │ ├── ibmc │ │ │ └── makefile │ │ ├── msvc │ │ │ └── makefile │ │ └── watcom │ │ │ └── makefile │ ├── hanoi │ │ ├── hanoi.bat │ │ ├── hanoi.c │ │ ├── hanoi.mif │ │ ├── ibmc │ │ │ └── makefile │ │ ├── makefile │ │ ├── msvc │ │ │ └── makefile │ │ └── watcom │ │ │ └── makefile │ ├── heapsort │ │ ├── heapsort.bat │ │ ├── heapsort.c │ │ ├── heapsort.mif │ │ ├── ibmc │ │ │ └── makefile │ │ ├── makefile │ │ ├── msvc │ │ │ └── makefile │ │ └── watcom │ │ │ └── makefile │ ├── livermore │ │ └── livermore.c │ ├── mif │ │ └── bench.mif │ ├── mm │ │ ├── ibmc │ │ │ └── makefile │ │ ├── mm.c │ │ ├── mm.mif │ │ ├── msvc │ │ │ └── makefile │ │ └── watcom │ │ │ └── makefile │ ├── nsieve │ │ ├── ibmc │ │ │ └── makefile │ │ ├── msvc │ │ │ └── makefile │ │ ├── nsieve.c │ │ ├── nsieve.mif │ │ └── watcom │ │ │ └── makefile │ ├── owstl │ │ ├── contain.cpp │ │ ├── fastalloc.hpp │ │ ├── mapfind.cpp │ │ ├── mapins.cpp │ │ ├── msvc │ │ │ └── makefile │ │ ├── mt19937ar.c │ │ ├── owstl.mif │ │ ├── random.cpp │ │ ├── readme.txt │ │ ├── results.txt │ │ ├── sort.cpp │ │ ├── strcopyl.cpp │ │ ├── strcopys.cpp │ │ ├── strpass.cpp │ │ ├── testdata.hpp │ │ └── watcom │ │ │ └── makefile │ ├── queens │ │ ├── ibmc │ │ │ └── makefile │ │ ├── msvc │ │ │ └── makefile │ │ ├── queens.bat │ │ ├── queens.c │ │ ├── queens.doc │ │ ├── queens.mif │ │ └── watcom │ │ │ └── makefile │ ├── sim │ │ ├── makefile │ │ ├── sim.bat │ │ ├── sim.c │ │ ├── sim.doc │ │ └── simrun.doc │ ├── stream │ │ ├── allmsvc.cmd │ │ ├── allwatcom.cmd │ │ ├── bench.dat │ │ ├── bench.doc │ │ ├── bldbench.cmd │ │ ├── clnbench.cmd │ │ ├── initbnch.cmd │ │ └── runbench.cmd │ └── support │ │ ├── ibmc │ │ └── makefile │ │ ├── msvc │ │ └── makefile │ │ ├── readp5.asm │ │ ├── report.c │ │ ├── report.h │ │ ├── support.mif │ │ ├── timer.c │ │ ├── timer.h │ │ ├── timero32.c │ │ └── watcom │ │ └── makefile ├── bmp2eps │ ├── c │ │ ├── bmeps.c │ │ ├── bmepsm.c │ │ ├── bmepsoe.c │ │ ├── bmpeps.c │ │ └── pngeps.c │ ├── dos386 │ │ └── makefile │ ├── h │ │ ├── bmeps.h │ │ ├── bmepsco.h │ │ ├── bmepsoe.h │ │ ├── bmpeps.h │ │ └── pngeps.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── os2386 │ │ └── makefile │ └── prereq.ctl ├── boot.ctl ├── brinfo │ ├── c │ │ └── b_write.c │ ├── doc │ │ ├── browser.txt │ │ ├── comptime.txt │ │ ├── format.txt │ │ ├── format2.txt │ │ ├── intrface.txt │ │ ├── overview.txt │ │ └── worries.txt │ ├── h │ │ ├── b_write.h │ │ └── brmtypes.h │ ├── lang.ctl │ ├── merge │ │ ├── cpp │ │ │ ├── applic.cpp │ │ │ ├── avltree.cpp │ │ │ ├── brmfile.cpp │ │ │ ├── cache.cpp │ │ │ ├── debugprt.cpp │ │ │ ├── decl.cpp │ │ │ ├── defn.cpp │ │ │ ├── hashtbl.cpp │ │ │ ├── macro.cpp │ │ │ ├── main.cpp │ │ │ ├── mem.cpp │ │ │ ├── pool.cpp │ │ │ ├── ppops.cpp │ │ │ ├── reindex.cpp │ │ │ ├── scopes.cpp │ │ │ ├── strtable.cpp │ │ │ ├── trmem.c │ │ │ ├── types.cpp │ │ │ ├── usage.cpp │ │ │ ├── wbrowse.cpp │ │ │ └── wpch.cpp │ │ ├── examples │ │ │ ├── foo.hpp │ │ │ ├── foo1.cpp │ │ │ ├── foo2.cpp │ │ │ ├── forward.cpp │ │ │ ├── forward1.hpp │ │ │ ├── forward2.hpp │ │ │ ├── quick.hpp │ │ │ ├── stack.cpp │ │ │ ├── stack.hpp │ │ │ ├── stackuse.cpp │ │ │ └── test │ │ │ │ ├── icon_01.ico │ │ │ │ ├── main.cpp │ │ │ │ ├── test.cpp │ │ │ │ ├── test.wxp │ │ │ │ ├── test.wxt │ │ │ │ ├── test.wxu │ │ │ │ ├── wpch.hpp │ │ │ │ └── wres.wxr │ │ ├── hpp │ │ │ ├── applic.hpp │ │ │ ├── avltree.hpp │ │ │ ├── brmfile.hpp │ │ │ ├── cache.hpp │ │ │ ├── debugprt.hpp │ │ │ ├── decl.hpp │ │ │ ├── defn.hpp │ │ │ ├── handle.hpp │ │ │ ├── hashtbl.hpp │ │ │ ├── macro.hpp │ │ │ ├── main.hpp │ │ │ ├── pool.hpp │ │ │ ├── ppops.hpp │ │ │ ├── reindex.hpp │ │ │ ├── scopes.hpp │ │ │ ├── strtable.hpp │ │ │ ├── trmem.h │ │ │ ├── types.hpp │ │ │ ├── usage.hpp │ │ │ ├── wbrowse.hpp │ │ │ └── wpch.hpp │ │ ├── nt │ │ │ └── makefile │ │ ├── res │ │ │ ├── wres.h │ │ │ ├── wres.rc │ │ │ └── wresdefn.h │ │ └── wbrowse.mif │ └── test │ │ ├── brmdump.cpp │ │ ├── brmdump.hpp │ │ ├── brmdump.mif │ │ ├── nt │ │ └── makefile │ │ └── os2 │ │ └── makefile ├── browser │ ├── axpnt │ │ └── makefile │ ├── bnd │ │ ├── dgcllopt.bnd │ │ ├── dgeddll.bnd │ │ ├── dgenums.bnd │ │ ├── dgfileed.bnd │ │ ├── dggtroot.bnd │ │ ├── dginhopt.bnd │ │ ├── dglinedt.bnd │ │ ├── dgmemflt.bnd │ │ ├── dgmodlst.bnd │ │ ├── dgnewdbr.bnd │ │ ├── dgqrfilt.bnd │ │ ├── dgquery.bnd │ │ ├── dgreport.bnd │ │ ├── dgrxcfg.bnd │ │ └── dgvwsym.bnd │ ├── brg │ │ ├── cpp │ │ │ ├── blip.cpp │ │ │ ├── btree.cpp │ │ │ ├── btreeit.cpp │ │ │ ├── btreend.cpp │ │ │ ├── dietree.cpp │ │ │ ├── dwmerger.cpp │ │ │ ├── main.cpp │ │ │ ├── mrabbrev.cpp │ │ │ ├── mrdeath.cpp │ │ │ ├── mrdie.cpp │ │ │ ├── mrfile.cpp │ │ │ ├── mrinfo.cpp │ │ │ ├── mrinfpp.cpp │ │ │ ├── mrline.cpp │ │ │ ├── mrnmkey.cpp │ │ │ ├── mroffset.cpp │ │ │ ├── mrref.cpp │ │ │ ├── mrreloc.cpp │ │ │ ├── mrstrhdl.cpp │ │ │ ├── mrtmchk.cpp │ │ │ ├── patricia.cpp │ │ │ └── strpool.cpp │ │ ├── dos386 │ │ │ └── makefile │ │ ├── h │ │ │ ├── blip.h │ │ │ ├── brmerge.h │ │ │ ├── btree.h │ │ │ ├── btreebas.h │ │ │ ├── btreeit.h │ │ │ ├── btreend.h │ │ │ ├── dietree.h │ │ │ ├── dwmerger.h │ │ │ ├── hashstat.h │ │ │ ├── mrabbrev.h │ │ │ ├── mrcompnt.h │ │ │ ├── mrdeath.h │ │ │ ├── mrdie.h │ │ │ ├── mrfile.h │ │ │ ├── mrinfo.h │ │ │ ├── mrinfpp.h │ │ │ ├── mrline.h │ │ │ ├── mrnmkey.h │ │ │ ├── mroffset.h │ │ │ ├── mrref.h │ │ │ ├── mrreloc.h │ │ │ ├── mrstrhdl.h │ │ │ ├── mrtmchk.h │ │ │ ├── patricia.h │ │ │ └── strpool.h │ │ ├── mif │ │ │ └── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── nt386d │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── os2386d │ │ │ └── makefile │ │ └── osi386 │ │ │ └── makefile │ ├── cpp │ │ ├── assure.cpp │ │ ├── browse.cpp │ │ ├── busyntc.cpp │ │ ├── chbffile.cpp │ │ ├── chfile.cpp │ │ ├── classlat.cpp │ │ ├── classtyp.cpp │ │ ├── cmdparse.cpp │ │ ├── dbmgr.cpp │ │ ├── debuglog.cpp │ │ ├── descpnt.cpp │ │ ├── descrip.cpp │ │ ├── dmem.cpp │ │ ├── dtvclass.cpp │ │ ├── dtvenum.cpp │ │ ├── dtvfunc.cpp │ │ ├── dtview.cpp │ │ ├── dtvsmref.cpp │ │ ├── dtvsrref.cpp │ │ ├── dtvsym.cpp │ │ ├── eddlldg.cpp │ │ ├── edmodlst.cpp │ │ ├── edmodule.cpp │ │ ├── elffile.cpp │ │ ├── enumstl.cpp │ │ ├── enumtype.cpp │ │ ├── fileedit.cpp │ │ ├── filefilt.cpp │ │ ├── funcsym.cpp │ │ ├── gbview.cpp │ │ ├── gbvlist.cpp │ │ ├── gbvolcll.cpp │ │ ├── gbvolinh.cpp │ │ ├── gbvtrbas.cpp │ │ ├── gtbase.cpp │ │ ├── gtclass.cpp │ │ ├── gtcllopt.cpp │ │ ├── gtclsopt.cpp │ │ ├── gtcycle.cpp │ │ ├── gtedges.cpp │ │ ├── gtfnopt.cpp │ │ ├── gtfunc.cpp │ │ ├── gtinhopt.cpp │ │ ├── gtlnopt.cpp │ │ ├── gtref.cpp │ │ ├── gtring.cpp │ │ ├── gtrootpk.cpp │ │ ├── gtwin.cpp │ │ ├── hotlist.cpp │ │ ├── keysym.cpp │ │ ├── macrosym.cpp │ │ ├── main.cpp │ │ ├── mem.cpp │ │ ├── memfilt.cpp │ │ ├── mempool.cpp │ │ ├── menumgr.cpp │ │ ├── modlist.cpp │ │ ├── module.cpp │ │ ├── newdbrdg.cpp │ │ ├── opscan.cpp │ │ ├── opstream.cpp │ │ ├── opterms.cpp │ │ ├── optmgr.cpp │ │ ├── outline.cpp │ │ ├── paintinf.cpp │ │ ├── prtclass.cpp │ │ ├── prtfuncs.cpp │ │ ├── prtsyms.cpp │ │ ├── prttypes.cpp │ │ ├── prtvars.cpp │ │ ├── querycfg.cpp │ │ ├── queryflt.cpp │ │ ├── referenc.cpp │ │ ├── reportdg.cpp │ │ ├── rxcfg.cpp │ │ ├── screendv.cpp │ │ ├── strcview.cpp │ │ ├── strtable.cpp │ │ ├── symbol.cpp │ │ ├── typesym.cpp │ │ ├── util.cpp │ │ ├── varsym.cpp │ │ ├── viewmgr.cpp │ │ ├── wbrdefs.cpp │ │ ├── wbrwin.cpp │ │ ├── weditdll.cpp │ │ └── wtime.cpp │ ├── dlgprs │ │ ├── cpp │ │ │ ├── bind.cpp │ │ │ ├── dialog.cpp │ │ │ ├── main.cpp │ │ │ ├── scanner.cpp │ │ │ ├── styles.cpp │ │ │ └── yydriver.cpp │ │ ├── dlgprs.txt │ │ ├── gen │ │ │ └── readme.txt │ │ ├── h │ │ │ ├── bind.h │ │ │ ├── control.h │ │ │ ├── deftoken.h │ │ │ ├── dialog.h │ │ │ ├── rect.h │ │ │ ├── scancm.h │ │ │ ├── scanner.h │ │ │ ├── scanout.h │ │ │ ├── styles.h │ │ │ └── yydriver.h │ │ ├── o │ │ │ └── makefile │ │ └── y │ │ │ ├── prsbnd.y │ │ │ └── prsdlg.y │ ├── doc │ │ ├── brstart.eps │ │ ├── classlis.txt │ │ ├── compress │ │ ├── decomp.eps │ │ ├── default.opt │ │ ├── diagmenu.eps │ │ ├── dmfltdlg.eps │ │ ├── editproj.eps │ │ ├── filemenu.eps │ │ ├── fmtmacro.gml │ │ ├── fungrptr.eps │ │ ├── funtxttr.eps │ │ ├── gendoc.bat │ │ ├── gmlmacs.gml │ │ ├── helpmenu.eps │ │ ├── issues │ │ ├── loctmenu.eps │ │ ├── macroext.txt │ │ ├── mffltdlg.eps │ │ ├── nb7x9lay.gml │ │ ├── nb7x9lay.lay │ │ ├── nb7x9ps.opt │ │ ├── opendlg.eps │ │ ├── picksym.eps │ │ ├── picture.gml │ │ ├── pushicon.eps │ │ ├── readme │ │ ├── refstate.txt │ │ ├── rule7x9.eps │ │ ├── savasdlg.eps │ │ ├── shell.gml │ │ ├── symbols.gml │ │ ├── template.txt │ │ ├── todo │ │ ├── todo.jrr │ │ ├── treemenu.eps │ │ ├── viewsym.eps │ │ └── wbr.gml │ ├── dos386 │ │ └── makefile │ ├── exever.rc │ ├── files.dat │ ├── gen │ │ └── makefile │ ├── h │ │ ├── assure.h │ │ ├── browse.h │ │ ├── brwhelp.h │ │ ├── busyntc.h │ │ ├── chbffile.h │ │ ├── chfile.h │ │ ├── classlat.h │ │ ├── classtyp.h │ │ ├── cmdparse.h │ │ ├── ctrlrect.h │ │ ├── dbmgr.h │ │ ├── death.h │ │ ├── debuglog.h │ │ ├── descpnt.h │ │ ├── descrip.h │ │ ├── dlgscal.h │ │ ├── dtvclass.h │ │ ├── dtvenum.h │ │ ├── dtvfunc.h │ │ ├── dtview.h │ │ ├── dtvsmref.h │ │ ├── dtvsrref.h │ │ ├── dtvsym.h │ │ ├── eddlldg.h │ │ ├── edmodlst.h │ │ ├── edmodule.h │ │ ├── elffile.h │ │ ├── enumstl.h │ │ ├── enumtype.h │ │ ├── fileedit.h │ │ ├── filefilt.h │ │ ├── fileinfo.h │ │ ├── filtflag.h │ │ ├── funcsym.h │ │ ├── gbview.h │ │ ├── gbvlist.h │ │ ├── gbvolcll.h │ │ ├── gbvolinh.h │ │ ├── gbvtrbas.h │ │ ├── gtbase.h │ │ ├── gtclass.h │ │ ├── gtcllopt.h │ │ ├── gtclsopt.h │ │ ├── gtcoord.h │ │ ├── gtcycle.h │ │ ├── gtedges.h │ │ ├── gtfnopt.h │ │ ├── gtfunc.h │ │ ├── gtinhopt.h │ │ ├── gtlnopt.h │ │ ├── gtref.h │ │ ├── gtring.h │ │ ├── gtrootpk.h │ │ ├── gtrootsl.h │ │ ├── gtwin.h │ │ ├── hotlist.h │ │ ├── hotspots.h │ │ ├── icons.h │ │ ├── keysym.h │ │ ├── kludge.h │ │ ├── macrosym.h │ │ ├── mem.h │ │ ├── memfilt.h │ │ ├── mempool.h │ │ ├── menuids.h │ │ ├── menumgr.h │ │ ├── modlist.h │ │ ├── module.h │ │ ├── newdbrdg.h │ │ ├── opdirect.h │ │ ├── opopts.h │ │ ├── opscan.h │ │ ├── opscancm.h │ │ ├── opstream.h │ │ ├── opterms.h │ │ ├── optmgr.h │ │ ├── outdev.h │ │ ├── outline.h │ │ ├── paintinf.h │ │ ├── projmodl.h │ │ ├── prtclass.h │ │ ├── prtfuncs.h │ │ ├── prtsyms.h │ │ ├── prttypes.h │ │ ├── prtvars.h │ │ ├── querycfg.h │ │ ├── queryflt.h │ │ ├── referenc.h │ │ ├── reportdg.h │ │ ├── rxcfg.h │ │ ├── screendv.h │ │ ├── strcview.h │ │ ├── strtable.h │ │ ├── symbol.h │ │ ├── twolist.h │ │ ├── typesym.h │ │ ├── util.h │ │ ├── varsym.h │ │ ├── view.h │ │ ├── viewmgr.h │ │ ├── wbrdefs.h │ │ ├── wbrwin.h │ │ ├── weditdll.h │ │ └── wtime.h │ ├── lang.ctl │ ├── mif │ │ ├── master.mif │ │ └── template.mif │ ├── nt386 │ │ └── makefile │ ├── nt386d │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── os2386d │ │ └── makefile │ ├── res │ │ ├── appmanif.xml │ │ ├── bmp │ │ │ ├── brow_s.bmp │ │ │ ├── checkbx0.bmp │ │ │ ├── checkbx1.bmp │ │ │ ├── checkbx2.bmp │ │ │ ├── checkbx3.bmp │ │ │ ├── class0.bmp │ │ │ ├── class1.bmp │ │ │ ├── class2.bmp │ │ │ ├── class3.bmp │ │ │ ├── edit0.bmp │ │ │ ├── edit1.bmp │ │ │ ├── enum0.bmp │ │ │ ├── enum1.bmp │ │ │ ├── enum2.bmp │ │ │ ├── enum3.bmp │ │ │ ├── func0.bmp │ │ │ ├── func1.bmp │ │ │ ├── func2.bmp │ │ │ ├── func3.bmp │ │ │ ├── invalid.bmp │ │ │ ├── label0.bmp │ │ │ ├── label1.bmp │ │ │ ├── label2.bmp │ │ │ ├── label3.bmp │ │ │ ├── macro0.bmp │ │ │ ├── macro1.bmp │ │ │ ├── macro2.bmp │ │ │ ├── macro3.bmp │ │ │ ├── olcoll0.bmp │ │ │ ├── olcoll1.bmp │ │ │ ├── olexpn0.bmp │ │ │ ├── olexpn1.bmp │ │ │ ├── olleaf0.bmp │ │ │ ├── olleaf1.bmp │ │ │ ├── pindown.bmp │ │ │ ├── pinned.bmp │ │ │ ├── pinup.bmp │ │ │ ├── type0.bmp │ │ │ ├── type1.bmp │ │ │ ├── type2.bmp │ │ │ ├── type3.bmp │ │ │ ├── var0.bmp │ │ │ ├── var1.bmp │ │ │ ├── var2.bmp │ │ │ └── var3.bmp │ │ ├── cur │ │ │ └── bolt.cur │ │ ├── dlg │ │ │ ├── dgcllopt.dlg │ │ │ ├── dgcllopt.h │ │ │ ├── dgeddll.dlg │ │ │ ├── dgeddll.h │ │ │ ├── dgenums.dlg │ │ │ ├── dgenums.h │ │ │ ├── dgfileed.dlg │ │ │ ├── dgfileed.h │ │ │ ├── dggtroot.dlg │ │ │ ├── dggtroot.h │ │ │ ├── dginhopt.dlg │ │ │ ├── dginhopt.h │ │ │ ├── dglinedt.dlg │ │ │ ├── dglinedt.h │ │ │ ├── dgmemflt.dlg │ │ │ ├── dgmemflt.h │ │ │ ├── dgmodlst.dlg │ │ │ ├── dgmodlst.h │ │ │ ├── dgnewdbr.dlg │ │ │ ├── dgnewdbr.h │ │ │ ├── dgprint.dlg │ │ │ ├── dgprint.h │ │ │ ├── dgqrfilt.dlg │ │ │ ├── dgqrfilt.h │ │ │ ├── dgquery.dlg │ │ │ ├── dgquery.h │ │ │ ├── dgreport.dlg │ │ │ ├── dgreport.h │ │ │ ├── dgrxcfg.dlg │ │ │ ├── dgrxcfg.h │ │ │ ├── dgvwsym.dlg │ │ │ └── dgvwsym.h │ │ ├── ico │ │ │ ├── dtclass.ico │ │ │ ├── dtenum.ico │ │ │ ├── dtfunc.ico │ │ │ ├── dtlabel.ico │ │ │ ├── dtmacro.ico │ │ │ ├── dtrefs.ico │ │ │ ├── dttype.ico │ │ │ ├── dtuses.ico │ │ │ ├── dtvar.ico │ │ │ ├── gblist.ico │ │ │ ├── gbstruc.ico │ │ │ ├── gbtree.ico │ │ │ └── wbr.ico │ │ ├── ico_pm │ │ │ ├── dtclass.ico │ │ │ ├── dtenum.ico │ │ │ ├── dtfunc.ico │ │ │ ├── dtlabel.ico │ │ │ ├── dtmacro.ico │ │ │ ├── dtrefs.ico │ │ │ ├── dttype.ico │ │ │ ├── dtuses.ico │ │ │ ├── dtvar.ico │ │ │ ├── gblist.ico │ │ │ ├── gbstruc.ico │ │ │ ├── gbtree.ico │ │ │ └── wbr.ico │ │ ├── wbrw.rc │ │ └── wbrwpm.rc │ ├── test │ │ ├── cfg │ │ │ ├── alltest.wbr │ │ │ ├── classes.wbr │ │ │ └── functns.wbr │ │ ├── out │ │ │ └── makefile │ │ ├── src │ │ │ ├── ccenter.cpp │ │ │ ├── cchildy.cpp │ │ │ ├── ccube.cpp │ │ │ ├── cdiag.cpp │ │ │ ├── cface3.cpp │ │ │ ├── clarry.cpp │ │ │ ├── clattice.cpp │ │ │ ├── cmultlvl.cpp │ │ │ ├── colour.cpp │ │ │ ├── cone.cpp │ │ │ ├── contain.cpp │ │ │ ├── cparenty.cpp │ │ │ ├── cpenta.cpp │ │ │ ├── cpeter.cpp │ │ │ ├── csibw.cpp │ │ │ ├── csimple.cpp │ │ │ ├── cstar.cpp │ │ │ ├── cwide.cpp │ │ │ ├── fcenter.cpp │ │ │ ├── fchildy.cpp │ │ │ ├── fcube.cpp │ │ │ ├── fdiag.cpp │ │ │ ├── fface3.cpp │ │ │ ├── flarry.cpp │ │ │ ├── flattice.cpp │ │ │ ├── fmultlvl.cpp │ │ │ ├── fone.cpp │ │ │ ├── fparenty.cpp │ │ │ ├── fpenta.cpp │ │ │ ├── fpeter.cpp │ │ │ ├── fsibw.cpp │ │ │ ├── fsimple.cpp │ │ │ ├── fstar.cpp │ │ │ ├── fwide.cpp │ │ │ └── ios.cpp │ │ └── tex │ │ │ ├── ccenter.ps │ │ │ ├── ccenter.tex │ │ │ ├── cchildy.ps │ │ │ ├── cchildy.tex │ │ │ ├── ccube.ps │ │ │ ├── ccube.tex │ │ │ ├── cdiag.ps │ │ │ ├── cdiag.tex │ │ │ ├── cface3.ps │ │ │ ├── cface3.tex │ │ │ ├── clarry.ps │ │ │ ├── clarry.tex │ │ │ ├── clattice.ps │ │ │ ├── clattice.tex │ │ │ ├── cparenty.ps │ │ │ ├── cparenty.tex │ │ │ ├── cpeter.ps │ │ │ ├── cpeter.tex │ │ │ ├── csibw.ps │ │ │ ├── csibw.tex │ │ │ ├── csimple.ps │ │ │ ├── csimple.tex │ │ │ ├── cstar.ps │ │ │ ├── cstar.tex │ │ │ ├── cwide.ps │ │ │ ├── cwide.tex │ │ │ └── gtbase.tex │ ├── wini86 │ │ └── makefile │ ├── wini86d │ │ └── makefile │ └── y │ │ └── opgram.y ├── build │ ├── axpnt │ │ ├── readme │ │ └── wlink.lnk │ ├── bin │ │ ├── readme │ │ └── wlink.lnk │ ├── binl │ │ ├── bootstrp.lnk │ │ ├── readme │ │ └── wlink.lnk │ ├── binnt │ │ └── wlink.lnk │ ├── binp │ │ └── wlink.lnk │ ├── lang.ctl │ ├── local │ │ └── local.mif │ ├── mif │ │ ├── arch.wri │ │ ├── bhost.mif │ │ ├── binname.mif │ │ ├── cdirs.mif │ │ ├── cmlfind.mif │ │ ├── cproj.mif │ │ ├── defrule.mif │ │ ├── deftarg.mif │ │ ├── etp_nt.mif │ │ ├── exetarg.mif │ │ ├── idedlls.mif │ │ ├── idemsgs.mif │ │ ├── incdirs.mif │ │ ├── local.mif │ │ ├── preclude.mif │ │ ├── trmem.mif │ │ ├── verrc.mif │ │ ├── wgmlcmd.mif │ │ └── wres.mif │ └── server │ │ ├── Common.pm │ │ ├── compare.pl │ │ ├── config.txt │ │ ├── dobuild.pl │ │ ├── install.txt │ │ ├── owbuild.kpf │ │ ├── pdobuild.cmd │ │ ├── psummary.cmd │ │ ├── readme.txt │ │ ├── rotate.bat │ │ ├── rotate.cmd │ │ ├── rotate.sh │ │ └── summary.pl ├── builder │ ├── boot.ctl │ ├── bootmake │ ├── builder.doc │ ├── c │ │ ├── builder.c │ │ ├── cdsay.c │ │ ├── comstrip.c │ │ ├── diff.c │ │ ├── equals.c │ │ ├── fnmatch.c │ │ ├── genverrc.c │ │ ├── pfileio.c │ │ ├── runit.c │ │ ├── sweep.c │ │ ├── sys.c │ │ ├── sysdos.c │ │ ├── sysdoscd.c │ │ ├── sysnt.c │ │ ├── sysos2.c │ │ ├── sysposix.c │ │ ├── utils.c │ │ ├── wgrep.c │ │ └── wsplice.c │ ├── clean.ctl │ ├── dos386 │ │ └── makefile │ ├── h │ │ ├── builder.h │ │ └── diff.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ ├── makefile │ │ └── readme.txt │ ├── os2386 │ │ └── makefile │ ├── prereq.ctl │ └── test.ctl ├── causeway │ ├── asm │ │ ├── api.asm │ │ ├── cw32.asm │ │ ├── cwdstub.asm │ │ ├── cwkrnl1.asm │ │ ├── cwkrnl2.asm │ │ ├── cwkrnl3.asm │ │ ├── cwkrnl4.asm │ │ ├── decode_c.asm │ │ ├── exceptn.asm │ │ ├── int10h.asm │ │ ├── int21h.asm │ │ ├── int33h.asm │ │ ├── interrup.asm │ │ ├── ldt.asm │ │ ├── load3p.asm │ │ ├── loadle.asm │ │ ├── memory.asm │ │ └── raw_vcpi.asm │ ├── c │ │ └── cwc.c │ ├── cw32 │ │ ├── dos386 │ │ │ └── makefile │ │ ├── dosi86 │ │ │ └── makefile │ │ └── master.mif │ ├── cwc.exe │ ├── cwc │ │ ├── dos386 │ │ │ └── makefile │ │ ├── linux386 │ │ │ └── makefile │ │ ├── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ └── os2386 │ │ │ └── makefile │ ├── dlltest │ │ ├── dll.c │ │ ├── dlltest.c │ │ ├── dos386 │ │ │ └── makefile │ │ └── master.mif │ ├── files.dat │ ├── inc │ │ ├── cw.inc │ │ ├── cwapi.lbc │ │ ├── cwdllfnc.h │ │ ├── strucs.inc │ │ └── system.inc │ ├── lang.ctl │ └── prereq.ctl ├── cc │ ├── a │ │ ├── code386.asm │ │ ├── codei86.asm │ │ └── mkcode.c │ ├── boot386.ctl │ ├── booti86.ctl │ ├── bootppc.ctl │ ├── c │ │ ├── ascii.c │ │ ├── asmalloc.c │ │ ├── asmmsg.c │ │ ├── asmstmt.c │ │ ├── browsio.c │ │ ├── casian.c │ │ ├── caux.c │ │ ├── caux370.c │ │ ├── ccheck.c │ │ ├── ccmain.c │ │ ├── cdata.c │ │ ├── cdebug.c │ │ ├── cdecl1.c │ │ ├── cdecl2.c │ │ ├── cdinit.c │ │ ├── cdrvdll.c │ │ ├── cdump.c │ │ ├── cems.c │ │ ├── cenum.c │ │ ├── cerror.c │ │ ├── cexpr.c │ │ ├── cfedump.c │ │ ├── cfeinfo.c │ │ ├── cfold.c │ │ ├── cgen.c │ │ ├── cgendata.c │ │ ├── cgetch.c │ │ ├── cgstub.c │ │ ├── cinfo.c │ │ ├── cintmain.c │ │ ├── cmac1.c │ │ ├── cmac2.c │ │ ├── cmacadd.c │ │ ├── cmath.c │ │ ├── cmemmgr.c │ │ ├── cmodel.c │ │ ├── cmsg.c │ │ ├── cname.c │ │ ├── coptions.c │ │ ├── cprag370.c │ │ ├── cpragaxp.c │ │ ├── cpragma.c │ │ ├── cpragmps.c │ │ ├── cpragppc.c │ │ ├── cpragx86.c │ │ ├── cpurge.c │ │ ├── cscan.c │ │ ├── csizeof.c │ │ ├── cstats.c │ │ ├── cstmt.c │ │ ├── cstring.c │ │ ├── cstub.c │ │ ├── csym.c │ │ ├── ctimepc.c │ │ ├── ctoken.c │ │ ├── ctype.c │ │ ├── cusage.c │ │ ├── cutil.c │ │ ├── dwarf.c │ │ ├── ebcdic.c │ │ ├── exprtree.c │ │ ├── ftoa.c │ │ ├── ideentry.c │ │ ├── jis2ucod.c │ │ ├── jis2unic.c │ │ ├── maindrv.c │ │ ├── pchdr.c │ │ ├── prag370.c │ │ ├── prag386.c │ │ ├── pragaxp.c │ │ ├── pragi86.c │ │ ├── pragmips.c │ │ ├── pragppc.c │ │ ├── strsave.c │ │ ├── treewalk.c │ │ └── watcom.c │ ├── ccobjs.mif │ ├── cfe.doc │ ├── dnt386.386 │ │ └── makefile │ ├── dnt386.axp │ │ └── makefile │ ├── dnt386.i86 │ │ └── makefile │ ├── dnt386.mps │ │ └── makefile │ ├── dos2386.386 │ │ └── makefile │ ├── dos2386.axp │ │ └── makefile │ ├── dos2386.i86 │ │ └── makefile │ ├── dos2386.mps │ │ └── makefile │ ├── dos2386.ppc │ │ └── makefile │ ├── dos386.386 │ │ └── makefile │ ├── dos386.i86 │ │ └── makefile │ ├── exever.rc │ ├── files.dat │ ├── gml │ │ ├── cerrs.gml │ │ └── msgmacs.gml │ ├── h │ │ ├── 386 │ │ │ └── target.h │ │ ├── asciiout.h │ │ ├── asmstmt.h │ │ ├── axp │ │ │ └── target.h │ │ ├── browsio.h │ │ ├── c.key │ │ ├── cdatatyp.h │ │ ├── cerrs.h │ │ ├── cfcb.h │ │ ├── cgen.h │ │ ├── cmathfun.h │ │ ├── cmemmgr.h │ │ ├── cmsg.h │ │ ├── copcodes.h │ │ ├── copcond.h │ │ ├── cops.h │ │ ├── csegid.h │ │ ├── ctokens.h │ │ ├── ctypes.h │ │ ├── cvars.h │ │ ├── cwngs.h │ │ ├── escchars.h │ │ ├── fesupp.h │ │ ├── i86 │ │ │ └── target.h │ │ ├── iopath.h │ │ ├── macro.h │ │ ├── mps │ │ │ └── target.h │ │ ├── pc.key │ │ ├── pdefn2.h │ │ ├── pdefn370.h │ │ ├── pdefn386.h │ │ ├── pdefnaxp.h │ │ ├── pdefni86.h │ │ ├── pdefnmps.h │ │ ├── pdefnppc.h │ │ ├── ppc │ │ │ └── target.h │ │ ├── pragdefn.h │ │ ├── scan.h │ │ ├── seh.key │ │ ├── sjis2unc.h │ │ ├── standard.h │ │ ├── strsave.h │ │ ├── target16.h │ │ ├── target32.h │ │ ├── togdef.h │ │ ├── toggle.h │ │ ├── tryblock.h │ │ ├── unicode.h │ │ └── weights.h │ ├── jusage.sp │ ├── lang.ctl │ ├── linux386.386 │ │ └── makefile │ ├── linux386.axp │ │ └── makefile │ ├── linux386.i86 │ │ └── makefile │ ├── linux386.mps │ │ └── makefile │ ├── linux386.ppc │ │ └── makefile │ ├── make386 │ ├── makei86 │ ├── makeppc │ ├── master.mif │ ├── nt386.386 │ │ └── makefile │ ├── nt386.axp │ │ └── makefile │ ├── nt386.i86 │ │ └── makefile │ ├── nt386.mps │ │ └── makefile │ ├── nt386.ppc │ │ └── makefile │ ├── nt386dll.386 │ │ └── makefile │ ├── ntaxp.386 │ │ └── makefile │ ├── ntaxp.axp │ │ └── makefile │ ├── ntaxp.i86 │ │ └── makefile │ ├── ntaxp.ppc │ │ └── makefile │ ├── os2386.386 │ │ └── makefile │ ├── os2386.axp │ │ └── makefile │ ├── os2386.i86 │ │ └── makefile │ ├── os2386.mps │ │ └── makefile │ ├── os2386.ppc │ │ └── makefile │ ├── osi386.386 │ │ └── makefile │ ├── osi386.axp │ │ └── makefile │ ├── osi386.i86 │ │ └── makefile │ ├── osi386.ppc │ │ └── makefile │ ├── prereq.ctl │ ├── qnx386.386 │ │ └── makefile │ ├── qnx386.i86 │ │ └── makefile │ ├── r1 │ │ ├── makefile │ │ ├── target.h │ │ └── usage.h │ ├── r2 │ │ ├── makefile │ │ ├── target.h │ │ └── usage.h │ ├── targ_386.mif │ ├── targ_axp.mif │ ├── targ_i86.mif │ ├── targ_mps.mif │ ├── targ_ppc.mif │ ├── usage.sp │ ├── version.rc │ └── wcl │ │ ├── c │ │ ├── clcommon.c │ │ ├── owcc.c │ │ └── wcl.c │ │ ├── dosi86.386 │ │ └── makefile │ │ ├── dosi86.axp │ │ └── makefile │ │ ├── dosi86.i86 │ │ └── makefile │ │ ├── dosi86.ppc │ │ └── makefile │ │ ├── dosi86 │ │ └── makefile │ │ ├── exever.rc │ │ ├── files.dat │ │ ├── h │ │ ├── clcommon.h │ │ ├── wclhelp.h │ │ └── wclmsg.h │ │ ├── lang.ctl │ │ ├── linux386.386 │ │ └── makefile │ │ ├── linux386.axp │ │ └── makefile │ │ ├── linux386.i86 │ │ └── makefile │ │ ├── linux386.mps │ │ └── makefile │ │ ├── linux386.ppc │ │ └── makefile │ │ ├── linux386 │ │ └── makefile │ │ ├── linuxmps.mps │ │ └── makefile │ │ ├── master.mif │ │ ├── nt386.386 │ │ └── makefile │ │ ├── nt386.axp │ │ └── makefile │ │ ├── nt386.i86 │ │ └── makefile │ │ ├── nt386.mps │ │ └── makefile │ │ ├── nt386.ppc │ │ └── makefile │ │ ├── nt386 │ │ └── makefile │ │ ├── ntaxp.386 │ │ └── makefile │ │ ├── ntaxp.axp │ │ └── makefile │ │ ├── ntaxp.i86 │ │ └── makefile │ │ ├── os2386.386 │ │ └── makefile │ │ ├── os2386.axp │ │ └── makefile │ │ ├── os2386.i86 │ │ └── makefile │ │ ├── os2386.mps │ │ └── makefile │ │ ├── os2386.ppc │ │ └── makefile │ │ ├── os2386 │ │ └── makefile │ │ ├── owcchelp.sp │ │ └── prereq.ctl ├── cfloat │ ├── boot.ctl │ ├── bootmake │ ├── c │ │ ├── cfconv.c │ │ ├── cfdiv.c │ │ ├── cfinvers.c │ │ ├── cfmach.c │ │ ├── cfmath.c │ │ ├── cfmem.c │ │ ├── cfmul.c │ │ ├── cftof.c │ │ ├── cfutil.c │ │ └── u32moddi.c │ ├── client.mif │ ├── h │ │ ├── cfloat.h │ │ └── machine.h │ ├── lang.ctl │ ├── master.mif │ ├── osi386 │ │ └── makefile │ ├── osiaxp │ │ └── makefile │ ├── osimps │ │ └── makefile │ └── prereq.ctl ├── cg │ ├── a │ │ ├── blip.asm │ │ ├── getenv.asm │ │ └── timer.asm │ ├── c │ │ ├── addrcnst.c │ │ ├── addrfold.c │ │ ├── be.c │ │ ├── bestub.c │ │ ├── bldcall.c │ │ ├── bldins.c │ │ ├── bldsel.c │ │ ├── blktrim.c │ │ ├── breakrtn.c │ │ ├── cachecon.c │ │ ├── cfutil.c │ │ ├── cg.c │ │ ├── cgaux.c │ │ ├── cgdllcli.c │ │ ├── cgdmain.c │ │ ├── cgmem.c │ │ ├── cgosi.c │ │ ├── cgsrtlst.c │ │ ├── cmatherr.c │ │ ├── comstubs.c │ │ ├── condcode.c │ │ ├── conflict.c │ │ ├── cse.c │ │ ├── cvsyms.c │ │ ├── cvtypes.c │ │ ├── data.c │ │ ├── dataflo.c │ │ ├── dbsupp.c │ │ ├── dbsyms.c │ │ ├── dbtable.c │ │ ├── dbtypes.c │ │ ├── dfsyms.c │ │ ├── dftypes.c │ │ ├── dg.c │ │ ├── display.c │ │ ├── dmpinc.c │ │ ├── doblips.c │ │ ├── dominate.c │ │ ├── dosstubs.c │ │ ├── dump87.c │ │ ├── dumpan.c │ │ ├── dumpblk.c │ │ ├── dumpconf.c │ │ ├── dumpindv.c │ │ ├── dumpins.c │ │ ├── dumpio.c │ │ ├── dumpopt.c │ │ ├── dumpref.c │ │ ├── dumpregt.c │ │ ├── dumpsc.c │ │ ├── dumpschd.c │ │ ├── dumptab.c │ │ ├── dumptree.c │ │ ├── echoapi.c │ │ ├── edge.c │ │ ├── encode.c │ │ ├── envos220.c │ │ ├── envvar.c │ │ ├── expand.c │ │ ├── fixindex.c │ │ ├── flograph.c │ │ ├── flood.c │ │ ├── flowsave.c │ │ ├── foldins.c │ │ ├── freelist.c │ │ ├── generate.c │ │ ├── inline.c │ │ ├── insdead.c │ │ ├── inssched.c │ │ ├── insutil.c │ │ ├── intdef.c │ │ ├── intrface.c │ │ ├── liveinfo.c │ │ ├── loadstor.c │ │ ├── loopopts.c │ │ ├── makeaddr.c │ │ ├── makeblk.c │ │ ├── makeins.c │ │ ├── memlimit.c │ │ ├── memmgr.c │ │ ├── memmgt.c │ │ ├── memtrack.c │ │ ├── memwrap.c │ │ ├── multiply.c │ │ ├── namelist.c │ │ ├── normmain.c │ │ ├── ntblips.c │ │ ├── nullprop.c │ │ ├── object.c │ │ ├── objname.c │ │ ├── onexit.c │ │ ├── optab.c │ │ ├── optask.c │ │ ├── optcom.c │ │ ├── optdata.c │ │ ├── optimize.c │ │ ├── optins.c │ │ ├── optlbl.c │ │ ├── optmain.c │ │ ├── optmkins.c │ │ ├── optpull.c │ │ ├── optpush.c │ │ ├── optq.c │ │ ├── optrel.c │ │ ├── opttell.c │ │ ├── optutil.c │ │ ├── optvlbl.c │ │ ├── overlap.c │ │ ├── parm.c │ │ ├── parmreg.c │ │ ├── patch.c │ │ ├── peepopt.c │ │ ├── pmstubs.c │ │ ├── posixio.c │ │ ├── propind.c │ │ ├── qblip.c │ │ ├── qtimer.c │ │ ├── redefby.c │ │ ├── regalloc.c │ │ ├── regassgn.c │ │ ├── regsave.c │ │ ├── regtree.c │ │ ├── revcond.c │ │ ├── rtcall.c │ │ ├── rtrtn.c │ │ ├── scblock.c │ │ ├── scdata.c │ │ ├── scinfo.c │ │ ├── scins.c │ │ ├── scmain.c │ │ ├── scregs.c │ │ ├── scthrash.c │ │ ├── scutil.c │ │ ├── sczero.c │ │ ├── spawn.c │ │ ├── split.c │ │ ├── splitvar.c │ │ ├── stack.c │ │ ├── stubdata.c │ │ ├── stubs.c │ │ ├── stubutil.c │ │ ├── temps.c │ │ ├── trecurse.c │ │ ├── tree.c │ │ ├── treeconv.c │ │ ├── treefold.c │ │ ├── typemap.c │ │ ├── types.c │ │ ├── u32moddi.c │ │ ├── unroll.c │ │ ├── utils.c │ │ ├── varusage.c │ │ ├── verify.c │ │ └── zoiks.c │ ├── doc │ │ ├── c.dct │ │ ├── cgdlay.gml │ │ ├── cgdoc.gml │ │ ├── cgdoc.html │ │ ├── cgdps.opt │ │ ├── debugcg.html │ │ ├── fmtcgdoc.bat │ │ ├── fmtcgdoc.cmd │ │ ├── index.html │ │ ├── mipsnotes.txt │ │ └── vc.dbg │ ├── h │ │ ├── addrcnst.h │ │ ├── addrfold.h │ │ ├── addrname.h │ │ ├── bckdef.h │ │ ├── bgcall.h │ │ ├── bitset.h │ │ ├── bldcall.h │ │ ├── bldins.h │ │ ├── blips.h │ │ ├── block.h │ │ ├── cg.h │ │ ├── cgapi.h │ │ ├── cgapicvr.h │ │ ├── cgaux.h │ │ ├── cgdefs.h │ │ ├── cgdll.h │ │ ├── cgdllcli.h │ │ ├── cgechoap.h │ │ ├── cgfecvr.h │ │ ├── cgfertns.h │ │ ├── cgfuntab.h │ │ ├── cghwreg.h │ │ ├── cgmem.h │ │ ├── cgmisc.h │ │ ├── cgnoalgn.h │ │ ├── cgprotos.h │ │ ├── cgrealgn.h │ │ ├── cgstd.h │ │ ├── cgstub.h │ │ ├── cgswitch.h │ │ ├── cgsymdbg.h │ │ ├── coderep.h │ │ ├── comarea.h │ │ ├── conflict.h │ │ ├── cvdbg.h │ │ ├── cypfunc.h │ │ ├── data.h │ │ ├── dbbit.h │ │ ├── dbcue.h │ │ ├── dbgstrct.h │ │ ├── dfdbg.h │ │ ├── display.h │ │ ├── dominate.h │ │ ├── dosio.h │ │ ├── dosmem.h │ │ ├── dump.h │ │ ├── echoapi.h │ │ ├── edgestk.h │ │ ├── encode.h │ │ ├── escape.h │ │ ├── far.h │ │ ├── fecvr.h │ │ ├── feidef.h │ │ ├── fejump.h │ │ ├── feprotos.h │ │ ├── findret.h │ │ ├── foldins.h │ │ ├── freelist.h │ │ ├── funits.h │ │ ├── gentype.h │ │ ├── hostsys.h │ │ ├── import.h │ │ ├── indvars.h │ │ ├── inline.h │ │ ├── inslist.h │ │ ├── interrs.h │ │ ├── intout.h │ │ ├── intrface.h │ │ ├── jumps.h │ │ ├── makeaddr.h │ │ ├── makeins.h │ │ ├── mem8086.h │ │ ├── memcheck.h │ │ ├── memout.h │ │ ├── memsydep.h │ │ ├── model.h │ │ ├── name.h │ │ ├── namelist.h │ │ ├── objrep.h │ │ ├── occlasss.h │ │ ├── ocentry.h │ │ ├── opcodes.h │ │ ├── optask.h │ │ ├── optclass.h │ │ ├── optcom.h │ │ ├── optdata.h │ │ ├── optlbl.h │ │ ├── optmac.h │ │ ├── optopts.h │ │ ├── optq.h │ │ ├── optsave.h │ │ ├── optseg.h │ │ ├── optwif.h │ │ ├── patch.h │ │ ├── pattern.h │ │ ├── pccode.h │ │ ├── pcencode.h │ │ ├── procdef.h │ │ ├── ptrint.h │ │ ├── regset.h │ │ ├── rgtbl.h │ │ ├── rttable.h │ │ ├── savcache.h │ │ ├── savcode.h │ │ ├── savings.h │ │ ├── sched.h │ │ ├── score.h │ │ ├── seldef.h │ │ ├── spawn.h │ │ ├── split.h │ │ ├── stack.h │ │ ├── stackok.h │ │ ├── standard.h │ │ ├── stubdata.h │ │ ├── symdbg.h │ │ ├── system.h │ │ ├── targsys.h │ │ ├── tree.h │ │ ├── treeconv.h │ │ ├── treefold.h │ │ ├── treeprot.h │ │ ├── typclass.h │ │ ├── typedef.h │ │ ├── typemap.h │ │ ├── types.h │ │ ├── uldiv.h │ │ ├── useinfo.h │ │ ├── vergen.h │ │ ├── version.h │ │ ├── x87.h │ │ ├── zerobits.h │ │ ├── zeropage.h │ │ └── zoiks.h │ ├── intel │ │ ├── 386 │ │ │ ├── boot.ctl │ │ │ ├── bootmake │ │ │ ├── c │ │ │ │ ├── 386conv.c │ │ │ │ ├── 386ilen.c │ │ │ │ ├── 386opseg.c │ │ │ │ ├── 386optab.c │ │ │ │ ├── 386ptype.c │ │ │ │ ├── 386rgtbl.c │ │ │ │ ├── 386rtrtn.c │ │ │ │ ├── 386score.c │ │ │ │ ├── 386sib.c │ │ │ │ ├── 386splt2.c │ │ │ │ ├── 386table.c │ │ │ │ ├── 386tls.c │ │ │ │ ├── 386type.c │ │ │ │ ├── i86enc32.c │ │ │ │ └── sib.c │ │ │ ├── dos386 │ │ │ │ └── makefile │ │ │ ├── h │ │ │ │ ├── cg386wrg.h │ │ │ │ ├── cgauxa.h │ │ │ │ ├── cgauxc.h │ │ │ │ ├── cgtargsw.h │ │ │ │ ├── deftarg.h │ │ │ │ ├── hwreg.h │ │ │ │ ├── offset.h │ │ │ │ ├── rg.h │ │ │ │ ├── rl.h │ │ │ │ ├── rtclass.h │ │ │ │ ├── tables.h │ │ │ │ ├── targcall.h │ │ │ │ ├── targproc.h │ │ │ │ └── targprol.h │ │ │ ├── linux386 │ │ │ │ └── makefile │ │ │ ├── mif │ │ │ │ ├── 386.mif │ │ │ │ └── master.mif │ │ │ ├── nt386.dbg │ │ │ │ └── makefile │ │ │ ├── nt386.dll │ │ │ │ └── makefile │ │ │ ├── nt386.rtd │ │ │ │ └── makefile │ │ │ ├── nt386 │ │ │ │ └── makefile │ │ │ ├── ntaxp │ │ │ │ └── makefile │ │ │ ├── os2386.dbg │ │ │ │ └── makefile │ │ │ ├── os2386 │ │ │ │ └── makefile │ │ │ ├── osi386 │ │ │ │ └── makefile │ │ │ └── qnx386 │ │ │ │ └── makefile │ │ ├── c │ │ │ ├── 386funit.c │ │ │ ├── 386setcc.c │ │ │ ├── i86base.c │ │ │ ├── i86call.c │ │ │ ├── i86cvsup.c │ │ │ ├── i86data.c │ │ │ ├── i86dbsup.c │ │ │ ├── i86dfsup.c │ │ │ ├── i86enc.c │ │ │ ├── i86enc2.c │ │ │ ├── i86esc.c │ │ │ ├── i86half.c │ │ │ ├── i86index.c │ │ │ ├── i86ldstr.c │ │ │ ├── i86lesds.c │ │ │ ├── i86mul.c │ │ │ ├── i86obj.c │ │ │ ├── i86opcod.c │ │ │ ├── i86proc.c │ │ │ ├── i86reg.c │ │ │ ├── i86regsv.c │ │ │ ├── i86rtlk.c │ │ │ ├── i86segs.c │ │ │ ├── i86sel.c │ │ │ ├── i86split.c │ │ │ ├── i86splt3.c │ │ │ ├── i86stubs.c │ │ │ ├── i86temps.c │ │ │ ├── i86ver.c │ │ │ ├── i87data.c │ │ │ ├── i87exp.c │ │ │ ├── i87opt.c │ │ │ ├── i87reg.c │ │ │ ├── i87sched.c │ │ │ ├── i87table.c │ │ │ ├── i87wait.c │ │ │ ├── wvsyms.c │ │ │ └── wvtypes.c │ │ ├── h │ │ │ ├── cg86auxa.h │ │ │ ├── cg86auxc.h │ │ │ ├── cgi86reg.h │ │ │ ├── cgi86swi.h │ │ │ ├── f.h │ │ │ ├── fppatch.h │ │ │ ├── fppatche.h │ │ │ ├── g.h │ │ │ ├── gen8087.h │ │ │ ├── i86call.h │ │ │ ├── i86obj.h │ │ │ ├── i86proc.h │ │ │ ├── i86prol.h │ │ │ ├── i86segs.h │ │ │ ├── i87sched.h │ │ │ ├── r.h │ │ │ ├── v.h │ │ │ ├── vg.h │ │ │ └── wvdbg.h │ │ ├── i86 │ │ │ ├── boot.ctl │ │ │ ├── bootmake │ │ │ ├── c │ │ │ │ ├── i86conv.c │ │ │ │ ├── i86enc16.c │ │ │ │ ├── i86ilen.c │ │ │ │ ├── i86opseg.c │ │ │ │ ├── i86optab.c │ │ │ │ ├── i86ptype.c │ │ │ │ ├── i86rgtbl.c │ │ │ │ ├── i86rtrtn.c │ │ │ │ ├── i86score.c │ │ │ │ ├── i86sib.c │ │ │ │ ├── i86splt2.c │ │ │ │ ├── i86table.c │ │ │ │ └── i86type.c │ │ │ ├── dos386 │ │ │ │ └── makefile │ │ │ ├── h │ │ │ │ ├── cgauxa.h │ │ │ │ ├── cgauxc.h │ │ │ │ ├── cgi86wrg.h │ │ │ │ ├── cgtargsw.h │ │ │ │ ├── deftarg.h │ │ │ │ ├── hwreg.h │ │ │ │ ├── offset.h │ │ │ │ ├── rg.h │ │ │ │ ├── rl.h │ │ │ │ ├── rtclass.h │ │ │ │ ├── tables.h │ │ │ │ ├── targcall.h │ │ │ │ ├── targproc.h │ │ │ │ └── targprol.h │ │ │ ├── linux386 │ │ │ │ └── makefile │ │ │ ├── mif │ │ │ │ ├── i86.mif │ │ │ │ └── master.mif │ │ │ ├── nt386.dbg │ │ │ │ └── makefile │ │ │ ├── nt386.dll │ │ │ │ └── makefile │ │ │ ├── nt386 │ │ │ │ └── makefile │ │ │ ├── ntaxp │ │ │ │ └── makefile │ │ │ ├── os2386.dbg │ │ │ │ └── makefile │ │ │ ├── os2386 │ │ │ │ └── makefile │ │ │ ├── osi386 │ │ │ │ └── makefile │ │ │ └── qnx386 │ │ │ │ └── makefile │ │ └── mif │ │ │ └── intel.mif │ ├── lang.ctl │ ├── mif │ │ ├── bootstrp.mif │ │ ├── cg.mif │ │ ├── fe.mif │ │ ├── hostos.mif │ │ ├── master.mif │ │ ├── rules.mif │ │ └── target.mif │ ├── mktags.cmd │ ├── prereq.ctl │ ├── risc │ │ ├── axp │ │ │ ├── c │ │ │ │ ├── axpcall.c │ │ │ │ ├── axpconv.c │ │ │ │ ├── axpdfsup.c │ │ │ │ ├── axpenc.c │ │ │ │ ├── axpenc2.c │ │ │ │ ├── axpfunit.c │ │ │ │ ├── axpoptab.c │ │ │ │ ├── axpproc.c │ │ │ │ ├── axpptype.c │ │ │ │ ├── axpreg.c │ │ │ │ ├── axprgtbl.c │ │ │ │ ├── axprtrtn.c │ │ │ │ ├── axpsplit.c │ │ │ │ ├── axpstub.c │ │ │ │ └── axptable.c │ │ │ ├── h │ │ │ │ ├── axpauxa.h │ │ │ │ ├── axpauxc.h │ │ │ │ ├── axpcall.h │ │ │ │ ├── axpproc.h │ │ │ │ ├── axpreg.h │ │ │ │ ├── axpregn.h │ │ │ │ ├── axpswi.h │ │ │ │ ├── cgauxa.h │ │ │ │ ├── cgauxc.h │ │ │ │ ├── cgtargsw.h │ │ │ │ ├── convert.h │ │ │ │ ├── deftarg.h │ │ │ │ ├── f.h │ │ │ │ ├── g.h │ │ │ │ ├── hwreg.h │ │ │ │ ├── r.h │ │ │ │ ├── reloc.h │ │ │ │ ├── rg.h │ │ │ │ ├── rl.h │ │ │ │ ├── rtclass.h │ │ │ │ ├── tables.h │ │ │ │ ├── targcall.h │ │ │ │ ├── targproc.h │ │ │ │ ├── targprol.h │ │ │ │ └── vg.h │ │ │ ├── linux386 │ │ │ │ └── makefile │ │ │ ├── mif │ │ │ │ ├── axp.mif │ │ │ │ └── master.mif │ │ │ ├── nt386.dbg │ │ │ │ └── makefile │ │ │ ├── nt386 │ │ │ │ └── makefile │ │ │ ├── ntaxp │ │ │ │ └── makefile │ │ │ ├── os2386.dbg │ │ │ │ └── makefile │ │ │ ├── os2386 │ │ │ │ └── makefile │ │ │ └── osi386 │ │ │ │ └── makefile │ │ ├── c │ │ │ ├── rcsilen.c │ │ │ ├── rscconst.c │ │ │ ├── rsccvsup.c │ │ │ ├── rscdata.c │ │ │ ├── rscdbg.c │ │ │ ├── rscdebug.c │ │ │ ├── rscdfsup.c │ │ │ ├── rscindex.c │ │ │ ├── rscmul.c │ │ │ ├── rscobj.c │ │ │ ├── rscopt.c │ │ │ ├── rscptype.c │ │ │ ├── rscqueue.c │ │ │ ├── rscregsv.c │ │ │ ├── rscscore.c │ │ │ ├── rscsel.c │ │ │ ├── rscsib.c │ │ │ ├── rscsplit.c │ │ │ ├── rscstubs.c │ │ │ ├── rsctemps.c │ │ │ ├── rsctype.c │ │ │ └── rscver.c │ │ ├── h │ │ │ ├── offset.h │ │ │ ├── rscauxa.h │ │ │ ├── rscauxc.h │ │ │ ├── rscobj.h │ │ │ └── v.h │ │ ├── mif │ │ │ └── risc.mif │ │ ├── mps │ │ │ ├── c │ │ │ │ ├── mpscall.c │ │ │ │ ├── mpsconv.c │ │ │ │ ├── mpsdfsup.c │ │ │ │ ├── mpsenc.c │ │ │ │ ├── mpsenc2.c │ │ │ │ ├── mpsfunit.c │ │ │ │ ├── mpsoptab.c │ │ │ │ ├── mpsparm.c │ │ │ │ ├── mpsproc.c │ │ │ │ ├── mpsptype.c │ │ │ │ ├── mpsreg.c │ │ │ │ ├── mpsrgtbl.c │ │ │ │ ├── mpsrtrtn.c │ │ │ │ ├── mpssetc.c │ │ │ │ ├── mpssplit.c │ │ │ │ ├── mpsstub.c │ │ │ │ └── mpstable.c │ │ │ ├── h │ │ │ │ ├── cgauxa.h │ │ │ │ ├── cgauxc.h │ │ │ │ ├── cgtargsw.h │ │ │ │ ├── convert.h │ │ │ │ ├── deftarg.h │ │ │ │ ├── f.h │ │ │ │ ├── g.h │ │ │ │ ├── hwreg.h │ │ │ │ ├── mips64reg.h │ │ │ │ ├── mipsauxa.h │ │ │ │ ├── mipsauxc.h │ │ │ │ ├── mipscall.h │ │ │ │ ├── mipsproc.h │ │ │ │ ├── mipsreg.h │ │ │ │ ├── mipsregn.h │ │ │ │ ├── mipsswi.h │ │ │ │ ├── r.h │ │ │ │ ├── reloc.h │ │ │ │ ├── rg.h │ │ │ │ ├── rl.h │ │ │ │ ├── rtclass.h │ │ │ │ ├── tables.h │ │ │ │ ├── targcall.h │ │ │ │ ├── targproc.h │ │ │ │ ├── targprol.h │ │ │ │ └── vg.h │ │ │ ├── linux386 │ │ │ │ └── makefile │ │ │ ├── mif │ │ │ │ ├── master.mif │ │ │ │ └── mips.mif │ │ │ ├── nt386.dbg │ │ │ │ └── makefile │ │ │ ├── nt386 │ │ │ │ └── makefile │ │ │ ├── os2386.dbg │ │ │ │ └── makefile │ │ │ └── os2386 │ │ │ │ └── makefile │ │ └── ppc │ │ │ ├── boot.ctl │ │ │ ├── bootmake │ │ │ ├── c │ │ │ ├── ppccall.c │ │ │ ├── ppcconv.c │ │ │ ├── ppcdfsup.c │ │ │ ├── ppcenc.c │ │ │ ├── ppcenc2.c │ │ │ ├── ppcfunit.c │ │ │ ├── ppclbl.c │ │ │ ├── ppcoptab.c │ │ │ ├── ppcparm.c │ │ │ ├── ppcproc.c │ │ │ ├── ppcreg.c │ │ │ ├── ppcrgtbl.c │ │ │ ├── ppcrtrtn.c │ │ │ ├── ppcsplit.c │ │ │ ├── ppcstub.c │ │ │ └── ppctable.c │ │ │ ├── h │ │ │ ├── cgauxa.h │ │ │ ├── cgauxc.h │ │ │ ├── cgtargsw.h │ │ │ ├── convert.h │ │ │ ├── deftarg.h │ │ │ ├── f.h │ │ │ ├── g.h │ │ │ ├── hwreg.h │ │ │ ├── ppcauxa.h │ │ │ ├── ppcauxc.h │ │ │ ├── ppccall.h │ │ │ ├── ppcgen.h │ │ │ ├── ppcparm.h │ │ │ ├── ppcproc.h │ │ │ ├── ppcreg.h │ │ │ ├── ppcregn.h │ │ │ ├── ppcswi.h │ │ │ ├── r.h │ │ │ ├── reloc.h │ │ │ ├── rg.h │ │ │ ├── rl.h │ │ │ ├── rtclass.h │ │ │ ├── tables.h │ │ │ ├── targcall.h │ │ │ ├── targproc.h │ │ │ ├── targprol.h │ │ │ └── vg.h │ │ │ ├── linux386 │ │ │ └── makefile │ │ │ ├── mif │ │ │ ├── master.mif │ │ │ └── ppc.mif │ │ │ ├── nt386 │ │ │ └── makefile │ │ │ ├── os2386.dbg │ │ │ └── makefile │ │ │ ├── os2386 │ │ │ └── makefile │ │ │ └── osi386 │ │ │ └── makefile │ ├── s37 │ │ ├── c │ │ │ ├── atoetbl.c │ │ │ ├── etoatbl.c │ │ │ ├── s37call.c │ │ │ ├── s37conv.c │ │ │ ├── s37data.c │ │ │ ├── s37dbsym.c │ │ │ ├── s37dbtyp.c │ │ │ ├── s37enc.c │ │ │ ├── s37funit.c │ │ │ ├── s37index.c │ │ │ ├── s37io.c │ │ │ ├── s37itype.c │ │ │ ├── s37lbl.c │ │ │ ├── s37mul.c │ │ │ ├── s37obj.c │ │ │ ├── s37opt.c │ │ │ ├── s37optab.c │ │ │ ├── s37page.c │ │ │ ├── s37proc.c │ │ │ ├── s37ptype.c │ │ │ ├── s37reg.c │ │ │ ├── s37regsv.c │ │ │ ├── s37rgtbl.c │ │ │ ├── s37rtrtn.c │ │ │ ├── s37score.c │ │ │ ├── s37sel.c │ │ │ ├── s37sib.c │ │ │ ├── s37split.c │ │ │ ├── s37stubs.c │ │ │ ├── s37table.c │ │ │ ├── s37temps.c │ │ │ ├── s37txt.c │ │ │ ├── s37type.c │ │ │ └── s37ver.c │ │ └── h │ │ │ ├── cg37auxa.h │ │ │ ├── cg37auxc.h │ │ │ ├── cgs37reg.h │ │ │ ├── cgs37swi.h │ │ │ ├── s37call.h │ │ │ └── s37proc.h │ └── test │ │ └── far16 │ │ ├── callee.c │ │ ├── caller.c │ │ └── makefile ├── clib │ ├── _dos │ │ ├── a │ │ │ ├── ddisk086.asm │ │ │ ├── ddisk386.asm │ │ │ ├── drive086.asm │ │ │ ├── drive386.asm │ │ │ ├── error086.asm │ │ │ ├── error386.asm │ │ │ ├── ftime086.asm │ │ │ ├── ftime386.asm │ │ │ ├── gtime086.asm │ │ │ ├── gtime386.asm │ │ │ ├── hrder086.asm │ │ │ ├── hrder386.asm │ │ │ ├── io086.asm │ │ │ ├── io386.asm │ │ │ ├── iow32.asm │ │ │ ├── mem086.asm │ │ │ ├── mem386.asm │ │ │ ├── stime086.asm │ │ │ └── stime386.asm │ │ ├── c │ │ │ ├── _dostest.c │ │ │ ├── allocos2.c │ │ │ ├── allocwnt.c │ │ │ ├── bdos.c │ │ │ ├── break.c │ │ │ ├── creatdos.c │ │ │ ├── creatos2.c │ │ │ ├── creatwnt.c │ │ │ ├── crtnwos2.c │ │ │ ├── crtnwwnt.c │ │ │ ├── d_getvec.c │ │ │ ├── d_keep.c │ │ │ ├── d_setvec.c │ │ │ ├── dosexter.c │ │ │ ├── dosgdf.c │ │ │ ├── dosret.c │ │ │ ├── filedos.c │ │ │ ├── fileos2.c │ │ │ ├── filewnt.c │ │ │ ├── finddos.c │ │ │ ├── findos2.c │ │ │ ├── findwnt.c │ │ │ ├── gdateos2.c │ │ │ ├── gdatewnt.c │ │ │ ├── gdrveos2.c │ │ │ ├── gdrvewnt.c │ │ │ ├── gfattdos.c │ │ │ ├── gfatto16.c │ │ │ ├── gfatto32.c │ │ │ ├── gfattwnt.c │ │ │ ├── gftimos2.c │ │ │ ├── gftimwnt.c │ │ │ ├── gtimeos2.c │ │ │ ├── gtimewnt.c │ │ │ ├── intd086.c │ │ │ ├── intd386.c │ │ │ ├── intdx086.c │ │ │ ├── intdx386.c │ │ │ ├── opendos.c │ │ │ ├── reados2.c │ │ │ ├── readwnt.c │ │ │ ├── sdateos2.c │ │ │ ├── sdatewnt.c │ │ │ ├── sdrveos2.c │ │ │ ├── sdrverdu.c │ │ │ ├── sdrvewnt.c │ │ │ ├── sfattdos.c │ │ │ ├── sfattos2.c │ │ │ ├── sfattwnt.c │ │ │ ├── sftimos2.c │ │ │ ├── sftimwnt.c │ │ │ ├── stimeos2.c │ │ │ ├── stimewnt.c │ │ │ ├── ufind.c │ │ │ ├── writeos2.c │ │ │ └── writewnt.c │ │ ├── library │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── alias │ │ ├── a │ │ │ └── afile │ │ ├── deps.mif │ │ ├── gen │ │ │ ├── aliases.lst │ │ │ └── makefile │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── alpha │ │ ├── a │ │ │ ├── divdat.asm │ │ │ ├── fpcraxp.asm │ │ │ └── otsdiv.asm │ │ ├── c │ │ │ ├── align.c │ │ │ ├── fclexaxp.c │ │ │ └── pdreg.c │ │ ├── library │ │ │ └── winnt.axp │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── bios │ │ ├── a │ │ │ ├── bdisk086.asm │ │ │ ├── bdisk386.asm │ │ │ ├── func086.asm │ │ │ ├── func386.asm │ │ │ ├── tmofd086.asm │ │ │ └── tmofd386.asm │ │ ├── c │ │ │ ├── b_disk.c │ │ │ ├── b_timofd.c │ │ │ ├── biosdisk.c │ │ │ ├── biosequi.c │ │ │ ├── biosfunc.c │ │ │ ├── bioskeyb.c │ │ │ ├── biosmems.c │ │ │ ├── biosprin.c │ │ │ ├── biosseri.c │ │ │ ├── biostest.c │ │ │ └── biostime.c │ │ ├── h │ │ │ └── necibm.h │ │ ├── library │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ └── windows.386 │ │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── bt.mif │ ├── cgsupp │ │ ├── a │ │ │ ├── 7fu8086.asm │ │ │ ├── 7fu8386.asm │ │ │ ├── 7u8f086.asm │ │ │ ├── 7u8f386.asm │ │ │ ├── __copy.asm │ │ │ ├── __stos.asm │ │ │ ├── div386.asm │ │ │ ├── fdc086.asm │ │ │ ├── fdc386.asm │ │ │ ├── fdfs086.asm │ │ │ ├── fdfs386.asm │ │ │ ├── fdi4086.asm │ │ │ ├── fdi4386.asm │ │ │ ├── fdi8086.asm │ │ │ ├── fdi8386.asm │ │ │ ├── fdmath.asm │ │ │ ├── fdmth086.asm │ │ │ ├── fdmth386.asm │ │ │ ├── fdn086.asm │ │ │ ├── fdn386.asm │ │ │ ├── fsc086.asm │ │ │ ├── fsc386.asm │ │ │ ├── fsfd086.asm │ │ │ ├── fsfd386.asm │ │ │ ├── fsi4086.asm │ │ │ ├── fsi4386.asm │ │ │ ├── fsi8086.asm │ │ │ ├── fsi8386.asm │ │ │ ├── fsmth086.asm │ │ │ ├── fsmth386.asm │ │ │ ├── fsn086.asm │ │ │ ├── fsn386.asm │ │ │ ├── fstat086.asm │ │ │ ├── fstat386.asm │ │ │ ├── i4d.asm │ │ │ ├── i4fd086.asm │ │ │ ├── i4fd386.asm │ │ │ ├── i4fs086.asm │ │ │ ├── i4fs386.asm │ │ │ ├── i4m.asm │ │ │ ├── i8d.asm │ │ │ ├── i8d086.asm │ │ │ ├── i8dmps.asm │ │ │ ├── i8f086.asm │ │ │ ├── i8fd086.asm │ │ │ ├── i8fd386.asm │ │ │ ├── i8fs086.asm │ │ │ ├── i8fs386.asm │ │ │ ├── i8ls086.asm │ │ │ ├── i8m086.asm │ │ │ ├── i8m386.asm │ │ │ ├── i8rmps.asm │ │ │ ├── i8rs086.asm │ │ │ ├── i8rs386.asm │ │ │ ├── ldiv086.asm │ │ │ ├── ldiv386.asm │ │ │ ├── lldiv386.asm │ │ │ ├── lrot.asm │ │ │ ├── mcpyaxp.asm │ │ │ ├── mcpymps.asm │ │ │ ├── pca.asm │ │ │ ├── pia.asm │ │ │ ├── ptc.asm │ │ │ ├── pts.asm │ │ │ ├── sard.asm │ │ │ ├── shld.asm │ │ │ ├── shrd.asm │ │ │ ├── stkaxp.asm │ │ │ ├── stkcmps.asm │ │ │ ├── stksmps.asm │ │ │ ├── stkwmps.asm │ │ │ ├── u8d086.asm │ │ │ └── u8rs086.asm │ │ ├── c │ │ │ ├── u64add.c │ │ │ ├── u64div.c │ │ │ ├── u64mul.c │ │ │ └── u64shift.c │ │ ├── deps.mif │ │ ├── h │ │ │ └── csnorm.inc │ │ ├── library │ │ │ ├── generic.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── generic.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── generic.386 │ │ │ │ ├── mc_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ ├── ms_rd │ │ │ │ │ └── makefile │ │ │ │ ├── ms_rp │ │ │ │ │ └── makefile │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_sds │ │ │ │ │ └── makefile │ │ │ │ └── ms_ss │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ ├── objects.mif │ │ └── test │ │ │ └── test_fp.c │ ├── char │ │ ├── c │ │ │ ├── chartest.c │ │ │ ├── isalnum.c │ │ │ ├── isalpha.c │ │ │ ├── isascii.c │ │ │ ├── isblank.c │ │ │ ├── iscntrl.c │ │ │ ├── iscsym.c │ │ │ ├── iscsymf.c │ │ │ ├── isdigit.c │ │ │ ├── isgraph.c │ │ │ ├── islower.c │ │ │ ├── isprint.c │ │ │ ├── ispunct.c │ │ │ ├── isspace.c │ │ │ ├── istable.c │ │ │ ├── isupper.c │ │ │ ├── iswctype.c │ │ │ ├── isxdigit.c │ │ │ ├── tolower.c │ │ │ ├── toupper.c │ │ │ ├── towctrns.c │ │ │ ├── uisalnum.c │ │ │ ├── uisalpha.c │ │ │ ├── uisascii.c │ │ │ ├── uisblank.c │ │ │ ├── uiscntrl.c │ │ │ ├── uiscsym.c │ │ │ ├── uiscsymf.c │ │ │ ├── uisdigit.c │ │ │ ├── uisgraph.c │ │ │ ├── uislower.c │ │ │ ├── uisprint.c │ │ │ ├── uispunct.c │ │ │ ├── uisspace.c │ │ │ ├── uisupper.c │ │ │ ├── uisxdig.c │ │ │ ├── utolower.c │ │ │ ├── utoupper.c │ │ │ ├── wctrans.c │ │ │ └── wctype.c │ │ ├── deps.mif │ │ ├── h │ │ │ ├── intwctrn.h │ │ │ ├── intwctyp.h │ │ │ └── istable.h │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── clean.mif │ ├── clib.txt │ ├── conio │ │ ├── c │ │ │ ├── cgets.c │ │ │ ├── cgetslnx.c │ │ │ ├── cgetsos2.c │ │ │ ├── cgetsqnx.c │ │ │ ├── cgetsrdu.c │ │ │ ├── cgetswnt.c │ │ │ ├── conutwnt.c │ │ │ ├── cprintf.c │ │ │ ├── cputs.c │ │ │ ├── cscanf.c │ │ │ ├── getch.c │ │ │ ├── getchlnx.c │ │ │ ├── getchos2.c │ │ │ ├── getchqnx.c │ │ │ ├── getchrdu.c │ │ │ ├── getchwnt.c │ │ │ ├── gtche.c │ │ │ ├── gtchelnx.c │ │ │ ├── gtcheos2.c │ │ │ ├── gtcheqnx.c │ │ │ ├── gtcherdu.c │ │ │ ├── gtchewnt.c │ │ │ ├── kbhit.c │ │ │ ├── kbhitlnx.c │ │ │ ├── kbhitos2.c │ │ │ ├── kbhitqnx.c │ │ │ ├── kbhitrdu.c │ │ │ ├── kbhitwnt.c │ │ │ ├── putch.c │ │ │ ├── putchlnx.c │ │ │ ├── putchos2.c │ │ │ ├── putchqnx.c │ │ │ ├── putchrdu.c │ │ │ ├── putchwnt.c │ │ │ ├── test_cio.c │ │ │ ├── ungetch.c │ │ │ └── ungetrdu.c │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── convert │ │ ├── a │ │ │ ├── fdmd086.asm │ │ │ ├── fdmd386.asm │ │ │ ├── fsms086.asm │ │ │ ├── fsms386.asm │ │ │ ├── mdfd086.asm │ │ │ ├── mdfd386.asm │ │ │ ├── msfs086.asm │ │ │ └── msfs386.asm │ │ ├── c │ │ │ ├── alphabet.c │ │ │ ├── atoi.c │ │ │ ├── atol.c │ │ │ ├── atoll.c │ │ │ ├── atouni.c │ │ │ ├── itoa.c │ │ │ ├── lltoa.c │ │ │ ├── ltoa.c │ │ │ ├── strtol.c │ │ │ ├── strtoll.c │ │ │ ├── uatoi.c │ │ │ ├── uatol.c │ │ │ ├── uatoll.c │ │ │ ├── uitoa.c │ │ │ ├── ulltoa.c │ │ │ ├── ultoa.c │ │ │ ├── ustrtol.c │ │ │ └── ustrtoll.c │ │ ├── deps.mif │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_clibl.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libcl.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── defwin │ │ ├── c │ │ │ ├── dinitwin.c │ │ │ ├── dwapi.c │ │ │ ├── dwmain.c │ │ │ ├── initwin.c │ │ │ ├── nodefwin.c │ │ │ ├── pmdlg.c │ │ │ ├── pmdlg2.c │ │ │ ├── pmdrvr.c │ │ │ ├── pmlines.c │ │ │ ├── pmmain.c │ │ │ ├── pmmisc.c │ │ │ ├── pmnew.c │ │ │ ├── windisp.c │ │ │ ├── windlg.c │ │ │ ├── windlg2.c │ │ │ ├── windrvr.c │ │ │ ├── wingen.c │ │ │ ├── winglob.c │ │ │ ├── winio.c │ │ │ ├── winkey.c │ │ │ ├── winlines.c │ │ │ ├── winlsem.c │ │ │ ├── winmain.c │ │ │ ├── winmisc.c │ │ │ ├── winmove.c │ │ │ ├── winnew.c │ │ │ ├── winpaint.c │ │ │ ├── winrtns.c │ │ │ ├── wintitle.c │ │ │ └── wmain.c │ │ ├── deps.mif │ │ ├── h │ │ │ ├── mbdefwin.h │ │ │ ├── pmdlg.h │ │ │ ├── pmdlgid.h │ │ │ ├── pmmenu.h │ │ │ ├── win.h │ │ │ └── windlg.h │ │ ├── library │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── direct │ │ ├── c │ │ │ ├── chdir.c │ │ │ ├── chdiros2.c │ │ │ ├── chdirwnt.c │ │ │ ├── chdrive.c │ │ │ ├── dir.c │ │ │ ├── dir_test.c │ │ │ ├── diros2.c │ │ │ ├── dirosi.c │ │ │ ├── dirrd.c │ │ │ ├── dirwnt.c │ │ │ ├── diskfree.c │ │ │ ├── getdcwd.c │ │ │ ├── getdrive.c │ │ │ ├── gtcwd.c │ │ │ ├── gtcwdlnx.c │ │ │ ├── gtcwdos2.c │ │ │ ├── gtcwdwnt.c │ │ │ ├── mkdir.c │ │ │ ├── mkdiros2.c │ │ │ ├── mkdirwnt.c │ │ │ ├── ntdirinf.c │ │ │ ├── rmdir.c │ │ │ ├── rmdiros2.c │ │ │ ├── rmdirwnt.c │ │ │ ├── tmpdir.c │ │ │ ├── uchdr.c │ │ │ ├── uchdros2.c │ │ │ ├── uchdrwnt.c │ │ │ ├── udir.c │ │ │ ├── udiros2.c │ │ │ ├── udirwnt.c │ │ │ ├── ugetdcwd.c │ │ │ ├── ugtcd.c │ │ │ ├── ugtcdos2.c │ │ │ ├── ugtcdwnt.c │ │ │ ├── umkdr.c │ │ │ ├── umkdros2.c │ │ │ ├── umkdrwnt.c │ │ │ ├── untdrinf.c │ │ │ ├── urmdr.c │ │ │ ├── urmdros2.c │ │ │ └── urmdrwnt.c │ │ ├── deps.mif │ │ ├── h │ │ │ └── _direct.h │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── doslfn │ │ ├── c │ │ │ ├── accss.c │ │ │ ├── chdir.c │ │ │ ├── chmod.c │ │ │ ├── creatdos.c │ │ │ ├── dir.c │ │ │ ├── findclos.c │ │ │ ├── finddos.c │ │ │ ├── findfirs.c │ │ │ ├── findnext.c │ │ │ ├── fstat.c │ │ │ ├── fullpath.c │ │ │ ├── gfattdos.c │ │ │ ├── gtcwd.c │ │ │ ├── inirmlfn.c │ │ │ ├── lfntosfn.c │ │ │ ├── mkdir.c │ │ │ ├── open.c │ │ │ ├── opendos.c │ │ │ ├── renam.c │ │ │ ├── rmdir.c │ │ │ ├── searchen.c │ │ │ ├── sfattdos.c │ │ │ ├── split2.c │ │ │ ├── splitpat.c │ │ │ ├── stat.c │ │ │ ├── tempnam.c │ │ │ ├── uaccs.c │ │ │ ├── uchdr.c │ │ │ ├── uchmd.c │ │ │ ├── udir.c │ │ │ ├── ufind.c │ │ │ ├── ufindfir.c │ │ │ ├── ufindnex.c │ │ │ ├── ufulpath.c │ │ │ ├── ugtcd.c │ │ │ ├── umkdr.c │ │ │ ├── unlnk.c │ │ │ ├── uopen.c │ │ │ ├── urenm.c │ │ │ ├── urmdr.c │ │ │ ├── uselfn.c │ │ │ ├── usplit2.c │ │ │ ├── uspltpat.c │ │ │ ├── usrchen.c │ │ │ ├── ustat.c │ │ │ ├── utempnam.c │ │ │ ├── utime.c │ │ │ ├── uunln.c │ │ │ └── uutim.c │ │ ├── deps.mif │ │ ├── library │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ └── msdos.386 │ │ │ │ ├── ms_r │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── environ │ │ ├── c │ │ │ ├── _findenv.c │ │ │ ├── _putenv.c │ │ │ ├── _setenv.c │ │ │ ├── _ufinden.c │ │ │ ├── _uputenv.c │ │ │ ├── _usetenv.c │ │ │ ├── clearenv.c │ │ │ ├── crtwenv.c │ │ │ ├── environ.c │ │ │ ├── envptr.c │ │ │ ├── envtest.c │ │ │ ├── getenv.c │ │ │ ├── getenv_s.c │ │ │ ├── gtcmd.c │ │ │ ├── gtcmddos.c │ │ │ ├── gtcmdrdk.c │ │ │ ├── gtcmdrdu.c │ │ │ ├── gtcmdunx.c │ │ │ ├── gtpid.c │ │ │ ├── gtpidos2.c │ │ │ ├── gtpidrd.c │ │ │ ├── gtpidw32.c │ │ │ ├── gtpidwnt.c │ │ │ ├── isatt.c │ │ │ ├── isattlnx.c │ │ │ ├── isattos2.c │ │ │ ├── isattrd.c │ │ │ ├── isattwnt.c │ │ │ ├── putenv.c │ │ │ ├── searchen.c │ │ │ ├── setenv.c │ │ │ ├── setenvp.c │ │ │ ├── stksize.c │ │ │ ├── ugetenv.c │ │ │ ├── uputenv.c │ │ │ ├── usetenv.c │ │ │ ├── usrchen.c │ │ │ └── wenvptr.c │ │ ├── deps.mif │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── file │ │ ├── c │ │ │ ├── 64findfi.c │ │ │ ├── 64findne.c │ │ │ ├── 64staos2.c │ │ │ ├── 64stat.c │ │ │ ├── 64stawnt.c │ │ │ ├── accss.c │ │ │ ├── accssos2.c │ │ │ ├── accssrd.c │ │ │ ├── accsswnt.c │ │ │ ├── chmod.c │ │ │ ├── chmodos2.c │ │ │ ├── chmodrd.c │ │ │ ├── chmodwnt.c │ │ │ ├── filetest.c │ │ │ ├── findclos.c │ │ │ ├── findfirs.c │ │ │ ├── findnext.c │ │ │ ├── mkstemp.c │ │ │ ├── mktemp.c │ │ │ ├── remove.c │ │ │ ├── remrd.c │ │ │ ├── renam.c │ │ │ ├── renamos2.c │ │ │ ├── renamrd.c │ │ │ ├── renamwnt.c │ │ │ ├── safefile.c │ │ │ ├── stat.c │ │ │ ├── statnov.c │ │ │ ├── statos2.c │ │ │ ├── statrd.c │ │ │ ├── statwnt.c │ │ │ ├── tempnam.c │ │ │ ├── tmpnm.c │ │ │ ├── tmpnm_s.c │ │ │ ├── u64findf.c │ │ │ ├── u64findn.c │ │ │ ├── u64stat.c │ │ │ ├── u64stos2.c │ │ │ ├── u64stwnt.c │ │ │ ├── uaccs.c │ │ │ ├── uaccsos2.c │ │ │ ├── uaccswnt.c │ │ │ ├── uchmd.c │ │ │ ├── uchmdos2.c │ │ │ ├── uchmdwnt.c │ │ │ ├── ufindfir.c │ │ │ ├── ufindnex.c │ │ │ ├── umktemp.c │ │ │ ├── uremove.c │ │ │ ├── urenm.c │ │ │ ├── urenmos2.c │ │ │ ├── urenmwnt.c │ │ │ ├── ustat.c │ │ │ ├── ustatos2.c │ │ │ ├── ustatwnt.c │ │ │ ├── utempnam.c │ │ │ ├── utime.c │ │ │ ├── utimeos2.c │ │ │ ├── utimeosi.c │ │ │ ├── utimerd.c │ │ │ ├── utimewnt.c │ │ │ ├── utmpnm.c │ │ │ ├── utmpnm_s.c │ │ │ ├── uutim.c │ │ │ ├── uutimos2.c │ │ │ └── uutimwnt.c │ │ ├── deps.mif │ │ ├── h │ │ │ ├── dosdir.h │ │ │ └── find.h │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── files.dat │ ├── flags.mif │ ├── fpu │ │ ├── a │ │ │ ├── chipa16.asm │ │ │ ├── chipa32.asm │ │ │ ├── chipd16.asm │ │ │ ├── chipd32.asm │ │ │ ├── chipr16.asm │ │ │ ├── chipr32.asm │ │ │ ├── chipt16.asm │ │ │ ├── chipt32.asm │ │ │ ├── chipvar.asm │ │ │ ├── chipw16.asm │ │ │ ├── chipw32.asm │ │ │ ├── dosinite.asm │ │ │ ├── fpe387.asm │ │ │ ├── fpe87.asm │ │ │ ├── fpedos4g.asm │ │ │ ├── fpeinth.asm │ │ │ ├── fpephar.asm │ │ │ ├── ini87086.asm │ │ │ ├── ini87386.asm │ │ │ └── old87.asm │ │ ├── c │ │ │ ├── cntrl87.c │ │ │ ├── cntrlfp.c │ │ │ ├── fclex387.c │ │ │ ├── fenv.c │ │ │ ├── fpeint.c │ │ │ └── hook387.c │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_clibl.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libcl.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ └── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── h │ │ ├── _defwin.h │ │ ├── _doslfn.h │ │ ├── _environ.h │ │ ├── clearfpe.h │ │ ├── close.h │ │ ├── crwd.h │ │ ├── d2ttime.h │ │ ├── defwin.h │ │ ├── dll.h │ │ ├── env387.inc │ │ ├── env87.inc │ │ ├── exitwmsg.inc │ │ ├── farfunc.h │ │ ├── fileacc.h │ │ ├── filestr.h │ │ ├── heapacc.h │ │ ├── initarg.h │ │ ├── int64.h │ │ ├── iomode.h │ │ ├── libwin32.h │ │ ├── linuxsys.h │ │ ├── lseek.h │ │ ├── mbyte.h │ │ ├── msdos.h │ │ ├── msdos.inc │ │ ├── mthread.h │ │ ├── nonx86.h │ │ ├── openmode.h │ │ ├── os2fil64.h │ │ ├── riscstr.h │ │ ├── rtcheck.h │ │ ├── saferlib.h │ │ ├── scanf.h │ │ ├── setbits.h │ │ ├── seterrno.h │ │ ├── shlib.h │ │ ├── sigtab.h │ │ ├── stacklow.h │ │ ├── sys386.h │ │ ├── syslinux.h │ │ ├── sysmips.h │ │ ├── tinyos2.h │ │ ├── xconio.h │ │ └── xstring.h │ ├── handleio │ │ ├── c │ │ │ ├── 64_lseek.c │ │ │ ├── 64fillen.c │ │ │ ├── 64fstat.c │ │ │ ├── 64fstos2.c │ │ │ ├── 64fstwnt.c │ │ │ ├── 64lseek.c │ │ │ ├── 64tell.c │ │ │ ├── __lseek.c │ │ │ ├── _clse.c │ │ │ ├── _clseos2.c │ │ │ ├── _clsewnt.c │ │ │ ├── binmode.c │ │ │ ├── chsiz.c │ │ │ ├── chsizlnx.c │ │ │ ├── chsizos2.c │ │ │ ├── chsizqnx.c │ │ │ ├── chsizwnt.c │ │ │ ├── close.c │ │ │ ├── comit.c │ │ │ ├── comitos2.c │ │ │ ├── comitwnt.c │ │ │ ├── creat.c │ │ │ ├── d2ttime.c │ │ │ ├── dofilstr.c │ │ │ ├── dup.c │ │ │ ├── dup2.c │ │ │ ├── dup2os2.c │ │ │ ├── dup2wnt.c │ │ │ ├── dupos2.c │ │ │ ├── dupwnt.c │ │ │ ├── eof.c │ │ │ ├── fileinfo.c │ │ │ ├── filelen.c │ │ │ ├── fileno.c │ │ │ ├── filerdk.c │ │ │ ├── filerdu.c │ │ │ ├── finfoptr.c │ │ │ ├── fstat.c │ │ │ ├── fstatos2.c │ │ │ ├── fstatwnt.c │ │ │ ├── fsync.c │ │ │ ├── hdlman.c │ │ │ ├── hdopen.c │ │ │ ├── iomode.c │ │ │ ├── iomodtty.c │ │ │ ├── iotest.c │ │ │ ├── lock.c │ │ │ ├── locking.c │ │ │ ├── locklnx.c │ │ │ ├── lockqnx.c │ │ │ ├── lockwnt.c │ │ │ ├── lseek.c │ │ │ ├── mkfilstr.c │ │ │ ├── open.c │ │ │ ├── openlnx.c │ │ │ ├── openos2.c │ │ │ ├── openwnt.c │ │ │ ├── oshdl.c │ │ │ ├── pipe.c │ │ │ ├── plusfsta.c │ │ │ ├── plusopen.c │ │ │ ├── qread.c │ │ │ ├── qreadunx.c │ │ │ ├── qwrit.c │ │ │ ├── qwritunx.c │ │ │ ├── read.c │ │ │ ├── setmd.c │ │ │ ├── setmdunx.c │ │ │ ├── stiomode.c │ │ │ ├── tell.c │ │ │ ├── txtmode.c │ │ │ ├── ucreat.c │ │ │ ├── umask.c │ │ │ ├── umaskval.c │ │ │ ├── umkfilst.c │ │ │ ├── unlck.c │ │ │ ├── unlcklnx.c │ │ │ ├── unlckqnx.c │ │ │ ├── unlckwnt.c │ │ │ ├── unlnk.c │ │ │ ├── unlnkos2.c │ │ │ ├── unlnkwnt.c │ │ │ ├── uopen.c │ │ │ ├── uopenlnx.c │ │ │ ├── uopenos2.c │ │ │ ├── uopenwnt.c │ │ │ ├── uunln.c │ │ │ ├── uunlnos2.c │ │ │ ├── uunlnwnt.c │ │ │ └── write.c │ │ ├── deps.mif │ │ ├── h │ │ │ └── handleio.h │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_clibl.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libcl.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── heap │ │ ├── c │ │ │ ├── allocseg.c │ │ │ ├── amblksiz.c │ │ │ ├── ambsptr.c │ │ │ ├── bcalloc.c │ │ │ ├── bexpand.c │ │ │ ├── bfree.c │ │ │ ├── bfreeseg.c │ │ │ ├── bheapchk.c │ │ │ ├── bheapmin.c │ │ │ ├── bheapseg.c │ │ │ ├── bheapset.c │ │ │ ├── bheapwal.c │ │ │ ├── bmalloc.c │ │ │ ├── bmsize.c │ │ │ ├── brealloc.c │ │ │ ├── calloc.c │ │ │ ├── chksize.c │ │ │ ├── fcalloc.c │ │ │ ├── fexpand.c │ │ │ ├── ffree.c │ │ │ ├── fheapchk.c │ │ │ ├── fheapmin.c │ │ │ ├── fheapset.c │ │ │ ├── fheapwal.c │ │ │ ├── fmalloc.c │ │ │ ├── fmemneed.c │ │ │ ├── fmsize.c │ │ │ ├── frealloc.c │ │ │ ├── freect.c │ │ │ ├── freeseg.c │ │ │ ├── grownear.c │ │ │ ├── growseg.c │ │ │ ├── haloc.c │ │ │ ├── haloco16.c │ │ │ ├── halocq16.c │ │ │ ├── heapen.c │ │ │ ├── heapgrow.c │ │ │ ├── heapinit.c │ │ │ ├── heapmin.c │ │ │ ├── heapset.c │ │ │ ├── heapwalk.c │ │ │ ├── ma_test.c │ │ │ ├── mem.c │ │ │ ├── memavl.c │ │ │ ├── memmax.c │ │ │ ├── memtest.c │ │ │ ├── minreal.c │ │ │ ├── mrlptr.c │ │ │ ├── ncalloc.c │ │ │ ├── nexpand.c │ │ │ ├── nfree.c │ │ │ ├── nheapchk.c │ │ │ ├── nheapmin.c │ │ │ ├── nheapset.c │ │ │ ├── nheapwal.c │ │ │ ├── nmalloc.c │ │ │ ├── nmemneed.c │ │ │ ├── nmsize.c │ │ │ ├── nrealloc.c │ │ │ ├── qallflgs.c │ │ │ ├── rdfree.c │ │ │ ├── rdmalloc.c │ │ │ ├── sbrk.c │ │ │ ├── sbrk386.c │ │ │ ├── sbrklnx.c │ │ │ ├── sbrkrdu.c │ │ │ ├── sbrkwnt.c │ │ │ ├── wafptr.c │ │ │ ├── wallflgs.c │ │ │ └── wrafptr.c │ │ ├── deps.mif │ │ ├── h │ │ │ └── heap.h │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── include.mif │ ├── intel │ │ ├── a │ │ │ ├── chint086.asm │ │ │ ├── chint386.asm │ │ │ ├── chipvar.asm │ │ │ ├── dointr.asm │ │ │ ├── i64ts286.asm │ │ │ ├── i64ts386.asm │ │ │ ├── intxa386.asm │ │ │ ├── p5psegs.asm │ │ │ └── tlsawnt.asm │ │ ├── c │ │ │ ├── chipbug.c │ │ │ ├── disable.c │ │ │ ├── dp5prof.c │ │ │ ├── dp5prof2.c │ │ │ ├── dprfallo.c │ │ │ ├── enable.c │ │ │ ├── grabfp87.c │ │ │ ├── inp.c │ │ │ ├── inpd.c │ │ │ ├── inpw.c │ │ │ ├── int386.c │ │ │ ├── intltest.c │ │ │ ├── intq16.c │ │ │ ├── intr.c │ │ │ ├── intx086.c │ │ │ ├── intx386.c │ │ │ ├── intxq16.c │ │ │ ├── intxw32.c │ │ │ ├── outp.c │ │ │ ├── outpd.c │ │ │ ├── outpw.c │ │ │ ├── p5prof.c │ │ │ ├── p5prof2.c │ │ │ ├── prfalloc.c │ │ │ ├── profilog.c │ │ │ ├── save8087.c │ │ │ ├── segread.c │ │ │ └── sound.c │ │ ├── deps.mif │ │ ├── export.def │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_clibl.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libcl.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ └── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── kanji │ │ ├── c │ │ │ ├── btom.c │ │ │ ├── chkctype.c │ │ │ ├── fbtom.c │ │ │ ├── fjgetmoj.c │ │ │ ├── fjputmoj.c │ │ │ ├── fjstradv.c │ │ │ ├── fjstrcat.c │ │ │ ├── fjstrchr.c │ │ │ ├── fjstrcmp.c │ │ │ ├── fjstrcsp.c │ │ │ ├── fjstricm.c │ │ │ ├── fjstrlen.c │ │ │ ├── fjstrlwr.c │ │ │ ├── fjstrmat.c │ │ │ ├── fjstrncm.c │ │ │ ├── fjstrncp.c │ │ │ ├── fjstrnic.c │ │ │ ├── fjstrnse.c │ │ │ ├── fjstrrch.c │ │ │ ├── fjstrrev.c │ │ │ ├── fjstrset.c │ │ │ ├── fjstrski.c │ │ │ ├── fjstrspn.c │ │ │ ├── fjstrstr.c │ │ │ ├── fjstrtok.c │ │ │ ├── fjstrupr.c │ │ │ ├── fmtob.c │ │ │ ├── fnthctyp.c │ │ │ ├── hantozen.c │ │ │ ├── hanzentb.c │ │ │ ├── isktable.c │ │ │ ├── ismbdaln.c │ │ │ ├── ismbdalp.c │ │ │ ├── ismbddig.c │ │ │ ├── ismbdgra.c │ │ │ ├── ismbdhir.c │ │ │ ├── ismbdkan.c │ │ │ ├── ismbdlow.c │ │ │ ├── ismbdpri.c │ │ │ ├── ismbdpun.c │ │ │ ├── ismbdspa.c │ │ │ ├── ismbdupp.c │ │ │ ├── ismbdxdi.c │ │ │ ├── jasctime.c │ │ │ ├── jctime.c │ │ │ ├── jgetmoji.c │ │ │ ├── jisalpha.c │ │ │ ├── jisdigit.c │ │ │ ├── jishira.c │ │ │ ├── jiskana.c │ │ │ ├── jiskigou.c │ │ │ ├── jisl0.c │ │ │ ├── jisl1.c │ │ │ ├── jisl2.c │ │ │ ├── jislower.c │ │ │ ├── jisprint.c │ │ │ ├── jisspace.c │ │ │ ├── jistojms.c │ │ │ ├── jisupper.c │ │ │ ├── jiszen.c │ │ │ ├── jmstojis.c │ │ │ ├── jperror.c │ │ │ ├── jputmoji.c │ │ │ ├── jstradv.c │ │ │ ├── jstrcat.c │ │ │ ├── jstrchr.c │ │ │ ├── jstrcmp.c │ │ │ ├── jstrcspn.c │ │ │ ├── jstrerro.c │ │ │ ├── jstricmp.c │ │ │ ├── jstrlen.c │ │ │ ├── jstrlwr.c │ │ │ ├── jstrmatc.c │ │ │ ├── jstrncmp.c │ │ │ ├── jstrncpy.c │ │ │ ├── jstrnicm.c │ │ │ ├── jstrnset.c │ │ │ ├── jstrrchr.c │ │ │ ├── jstrrev.c │ │ │ ├── jstrset.c │ │ │ ├── jstrskip.c │ │ │ ├── jstrspn.c │ │ │ ├── jstrstr.c │ │ │ ├── jstrtok.c │ │ │ ├── jstrupr.c │ │ │ ├── jtohira.c │ │ │ ├── jtokata.c │ │ │ ├── jtolower.c │ │ │ ├── jtoupper.c │ │ │ ├── mbdhanto.c │ │ │ ├── mbdtolow.c │ │ │ ├── mbdtoupp.c │ │ │ ├── mbdzento.c │ │ │ ├── mbisl0.c │ │ │ ├── mbisl1.c │ │ │ ├── mbisl2.c │ │ │ ├── mtob.c │ │ │ ├── nthctype.c │ │ │ └── zenhantb.c │ │ ├── h │ │ │ └── hanzentb.h │ │ ├── library │ │ │ ├── kanji.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── lang.ctl │ ├── lib.mif │ ├── library │ │ ├── c │ │ │ └── timstamp.c │ │ ├── kanji.386 │ │ │ ├── libs.mif │ │ │ ├── ms_r │ │ │ │ └── makefile │ │ │ └── ms_s │ │ │ │ └── makefile │ │ ├── linux.386 │ │ │ ├── libs.mif │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ ├── mf_rd │ │ │ │ └── makefile │ │ │ └── mf_s │ │ │ │ └── makefile │ │ ├── linux.mps │ │ │ ├── _s │ │ │ │ └── makefile │ │ │ └── libs.mif │ │ ├── linux.ppc │ │ │ ├── _s │ │ │ │ └── makefile │ │ │ └── libs.mif │ │ ├── msdos.086 │ │ │ ├── libs.mif │ │ │ ├── mc │ │ │ │ └── makefile │ │ │ ├── mh │ │ │ │ └── makefile │ │ │ ├── ml │ │ │ │ └── makefile │ │ │ ├── ml_ov │ │ │ │ └── makefile │ │ │ ├── mm │ │ │ │ └── makefile │ │ │ ├── mm_ov │ │ │ │ └── makefile │ │ │ └── ms │ │ │ │ └── makefile │ │ ├── msdos.286 │ │ │ ├── libs.mif │ │ │ ├── mc │ │ │ │ └── makefile │ │ │ ├── mh │ │ │ │ └── makefile │ │ │ ├── ml │ │ │ │ └── makefile │ │ │ ├── mm │ │ │ │ └── makefile │ │ │ └── ms │ │ │ │ └── makefile │ │ ├── msdos.386 │ │ │ ├── libs.mif │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ ├── mf_s │ │ │ │ └── makefile │ │ │ ├── ms_r │ │ │ │ └── makefile │ │ │ └── ms_s │ │ │ │ └── makefile │ │ ├── nw_clib.386 │ │ │ ├── libs.mif │ │ │ ├── ms_s │ │ │ │ └── makefile │ │ │ └── ms_sd │ │ │ │ └── makefile │ │ ├── nw_clibl.386 │ │ │ ├── libs.mif │ │ │ ├── ms_s │ │ │ │ └── makefile │ │ │ └── ms_sd │ │ │ │ └── makefile │ │ ├── nw_libc.386 │ │ │ ├── libs.mif │ │ │ ├── ms_s │ │ │ │ └── makefile │ │ │ └── ms_sd │ │ │ │ └── makefile │ │ ├── nw_libcl.386 │ │ │ ├── libs.mif │ │ │ ├── ms_s │ │ │ │ └── makefile │ │ │ └── ms_sd │ │ │ │ └── makefile │ │ ├── objects.mif │ │ ├── os2.286 │ │ │ ├── libs.mif │ │ │ ├── mc │ │ │ │ └── makefile │ │ │ ├── mh │ │ │ │ └── makefile │ │ │ ├── ml │ │ │ │ └── makefile │ │ │ ├── ml_dll │ │ │ │ └── makefile │ │ │ ├── ml_mt │ │ │ │ └── makefile │ │ │ ├── mm │ │ │ │ └── makefile │ │ │ └── ms │ │ │ │ └── makefile │ │ ├── os2.386 │ │ │ ├── libs.mif │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ ├── mf_rd │ │ │ │ └── makefile │ │ │ └── mf_s │ │ │ │ └── makefile │ │ ├── osi.386 │ │ │ ├── libs.mif │ │ │ └── ms_r │ │ │ │ └── makefile │ │ ├── qnx.286 │ │ │ ├── libs.mif │ │ │ ├── mc │ │ │ │ └── makefile │ │ │ ├── mh │ │ │ │ └── makefile │ │ │ ├── ml │ │ │ │ └── makefile │ │ │ ├── ml_sh │ │ │ │ └── makefile │ │ │ ├── mm │ │ │ │ └── makefile │ │ │ └── ms │ │ │ │ └── makefile │ │ ├── qnx.386 │ │ │ ├── libs.mif │ │ │ ├── ms_r │ │ │ │ └── makefile │ │ │ └── ms_s │ │ │ │ └── makefile │ │ ├── rdos.386 │ │ │ ├── libs.mif │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ └── mf_s │ │ │ │ └── makefile │ │ ├── rdosdev.386 │ │ │ ├── libs.mif │ │ │ └── mc_r │ │ │ │ └── makefile │ │ ├── windows.086 │ │ │ ├── libs.mif │ │ │ ├── mc │ │ │ │ └── makefile │ │ │ ├── ml │ │ │ │ └── makefile │ │ │ ├── mm │ │ │ │ └── makefile │ │ │ └── ms │ │ │ │ └── makefile │ │ ├── windows.386 │ │ │ ├── libs.mif │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ └── mf_s │ │ │ │ └── makefile │ │ ├── winnt.386 │ │ │ ├── libs.mif │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ ├── mf_rd │ │ │ │ └── makefile │ │ │ ├── mf_rp │ │ │ │ └── makefile │ │ │ └── mf_s │ │ │ │ └── makefile │ │ └── winnt.axp │ │ │ ├── _s │ │ │ └── makefile │ │ │ └── libs.mif │ ├── libwin32 │ │ ├── c │ │ │ ├── creatdir.c │ │ │ ├── creatfil.c │ │ │ ├── crtproc.c │ │ │ ├── delfile.c │ │ │ ├── ffrstfil.c │ │ │ ├── fgtattr.c │ │ │ ├── fnextfil.c │ │ │ ├── getcdir.c │ │ │ ├── getdtype.c │ │ │ ├── getfattr.c │ │ │ ├── getfulpn.c │ │ │ ├── getmodfn.c │ │ │ ├── movefile.c │ │ │ ├── removdir.c │ │ │ ├── setcdir.c │ │ │ ├── setenvar.c │ │ │ ├── setfattr.c │ │ │ └── ufgtattr.c │ │ ├── library │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ └── winnt.axp │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── linux │ │ ├── c │ │ │ ├── __lseek.c │ │ │ ├── _llseek.c │ │ │ ├── access.c │ │ │ ├── alarm.c │ │ │ ├── chdir.c │ │ │ ├── chmod.c │ │ │ ├── chown.c │ │ │ ├── chroot.c │ │ │ ├── clone.c │ │ │ ├── close.c │ │ │ ├── dup.c │ │ │ ├── dup2.c │ │ │ ├── execve.c │ │ │ ├── fchmod.c │ │ │ ├── fchown.c │ │ │ ├── fcntl.c │ │ │ ├── fork.c │ │ │ ├── fstat.c │ │ │ ├── fstat64.c │ │ │ ├── fsync.c │ │ │ ├── ftrunc.c │ │ │ ├── getdents.c │ │ │ ├── getegid.c │ │ │ ├── geteuid.c │ │ │ ├── getgid.c │ │ │ ├── gethname.c │ │ │ ├── getitimr.c │ │ │ ├── getpgrp.c │ │ │ ├── getpid.c │ │ │ ├── getpname.c │ │ │ ├── getppid.c │ │ │ ├── getrlim.c │ │ │ ├── gettmofd.c │ │ │ ├── getuid.c │ │ │ ├── ioctl.c │ │ │ ├── ioperm.c │ │ │ ├── iopl.c │ │ │ ├── kill.c │ │ │ ├── lchown.c │ │ │ ├── link.c │ │ │ ├── lstat.c │ │ │ ├── lstat64.c │ │ │ ├── mkdir.c │ │ │ ├── mkfifo.c │ │ │ ├── mknod.c │ │ │ ├── mprotect.c │ │ │ ├── nanoslp.c │ │ │ ├── nice.c │ │ │ ├── pause.c │ │ │ ├── pipe.c │ │ │ ├── pipemps.c │ │ │ ├── ptrace.c │ │ │ ├── raise.c │ │ │ ├── read.c │ │ │ ├── readlink.c │ │ │ ├── rename.c │ │ │ ├── rmdir.c │ │ │ ├── schyield.c │ │ │ ├── select.c │ │ │ ├── setegid.c │ │ │ ├── seteuid.c │ │ │ ├── setgid.c │ │ │ ├── setitimr.c │ │ │ ├── setpgid.c │ │ │ ├── setregid.c │ │ │ ├── setreuid.c │ │ │ ├── setrlim.c │ │ │ ├── setsid.c │ │ │ ├── settmofd.c │ │ │ ├── setuid.c │ │ │ ├── sigact.c │ │ │ ├── siginter.c │ │ │ ├── signal.c │ │ │ ├── sigpmask.c │ │ │ ├── sigsusp.c │ │ │ ├── sigtdwai.c │ │ │ ├── sigwait.c │ │ │ ├── sigwinfo.c │ │ │ ├── sockcall.c │ │ │ ├── stat.c │ │ │ ├── stat64.c │ │ │ ├── symlink.c │ │ │ ├── sync.c │ │ │ ├── sys_brk.c │ │ │ ├── sys_exit.c │ │ │ ├── sys_open.c │ │ │ ├── sysmips.c │ │ │ ├── time.c │ │ │ ├── times.c │ │ │ ├── truncate.c │ │ │ ├── umask.c │ │ │ ├── uname.c │ │ │ ├── unlink.c │ │ │ ├── usleep.c │ │ │ ├── utime.c │ │ │ ├── vfork.c │ │ │ ├── wait.c │ │ │ ├── waitpid.c │ │ │ └── write.c │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── linux.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── master.mif │ ├── math │ │ ├── c │ │ │ ├── abs.c │ │ │ ├── div.c │ │ │ ├── hugeval.c │ │ │ ├── hvalptr.c │ │ │ ├── imaxabs.c │ │ │ ├── imaxdiv.c │ │ │ ├── imthtest.c │ │ │ ├── labs.c │ │ │ ├── ldiv.c │ │ │ ├── llabs.c │ │ │ ├── lldiv.c │ │ │ ├── max.c │ │ │ ├── min.c │ │ │ └── rand.c │ │ ├── h │ │ │ └── randnext.h │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── mbyte │ │ ├── c │ │ │ ├── _fmbslen.c │ │ │ ├── _fmbsnin.c │ │ │ ├── _mbslen.c │ │ │ ├── _mbsninc.c │ │ │ ├── btowc.c │ │ │ ├── dbcsnov.c │ │ │ ├── fmbccmp.c │ │ │ ├── fmbccpy.c │ │ │ ├── fmbcicmp.c │ │ │ ├── fmbclen.c │ │ │ ├── fmbconv.c │ │ │ ├── fmbgetco.c │ │ │ ├── fmblen.c │ │ │ ├── fmbputch.c │ │ │ ├── fmbrlen.c │ │ │ ├── fmbrtowc.c │ │ │ ├── fmbsbtyp.c │ │ │ ├── fmbscat.c │ │ │ ├── fmbschr.c │ │ │ ├── fmbscmp.c │ │ │ ├── fmbscpy.c │ │ │ ├── fmbscspn.c │ │ │ ├── fmbsdec.c │ │ │ ├── fmbsdup.c │ │ │ ├── fmbsicmp.c │ │ │ ├── fmbsinc.c │ │ │ ├── fmbslen.c │ │ │ ├── fmbslwr.c │ │ │ ├── fmbsnbca.c │ │ │ ├── fmbsnbcm.c │ │ │ ├── fmbsnbcn.c │ │ │ ├── fmbsnbcp.c │ │ │ ├── fmbsnbic.c │ │ │ ├── fmbsnbst.c │ │ │ ├── fmbsncat.c │ │ │ ├── fmbsnccn.c │ │ │ ├── fmbsncmp.c │ │ │ ├── fmbsncpy.c │ │ │ ├── fmbsnicm.c │ │ │ ├── fmbsninc.c │ │ │ ├── fmbsnset.c │ │ │ ├── fmbsnxtc.c │ │ │ ├── fmbspbrk.c │ │ │ ├── fmbsrchr.c │ │ │ ├── fmbsrev.c │ │ │ ├── fmbsrt_s.c │ │ │ ├── fmbsrtow.c │ │ │ ├── fmbsset.c │ │ │ ├── fmbsspn.c │ │ │ ├── fmbsspnp.c │ │ │ ├── fmbsstr.c │ │ │ ├── fmbsto_s.c │ │ │ ├── fmbstok.c │ │ │ ├── fmbstowc.c │ │ │ ├── fmbsupr.c │ │ │ ├── fmbterm.c │ │ │ ├── fmbtowc.c │ │ │ ├── fwcrto_s.c │ │ │ ├── fwcrtomb.c │ │ │ ├── fwcsrt_s.c │ │ │ ├── fwcsrtom.c │ │ │ ├── fwcsto_s.c │ │ │ ├── fwcstomb.c │ │ │ ├── fwctom_s.c │ │ │ ├── fwctomb.c │ │ │ ├── getmbcp.c │ │ │ ├── ismbbaln.c │ │ │ ├── ismbbalp.c │ │ │ ├── ismbbgra.c │ │ │ ├── ismbbkal.c │ │ │ ├── ismbbkan.c │ │ │ ├── ismbbkpr.c │ │ │ ├── ismbbkpu.c │ │ │ ├── ismbbpri.c │ │ │ ├── ismbbpun.c │ │ │ ├── ismbchir.c │ │ │ ├── ismbckat.c │ │ │ ├── mb2wcqnx.c │ │ │ ├── mbbtombc.c │ │ │ ├── mbbtype.c │ │ │ ├── mbccmp.c │ │ │ ├── mbccpy.c │ │ │ ├── mbcicmp.c │ │ │ ├── mbclen.c │ │ │ ├── mbclower.c │ │ │ ├── mbconv.c │ │ │ ├── mbctombb.c │ │ │ ├── mbcupper.c │ │ │ ├── mbgetcod.c │ │ │ ├── mbinit.c │ │ │ ├── mbisalnu.c │ │ │ ├── mbisalph.c │ │ │ ├── mbiscntr.c │ │ │ ├── mbisdbcs.c │ │ │ ├── mbisdigi.c │ │ │ ├── mbisgrap.c │ │ │ ├── mbislead.c │ │ │ ├── mbislegl.c │ │ │ ├── mbislowe.c │ │ │ ├── mbisprin.c │ │ │ ├── mbispunc.c │ │ │ ├── mbisspac.c │ │ │ ├── mbissymb.c │ │ │ ├── mbistrai.c │ │ │ ├── mbisuppe.c │ │ │ ├── mbisxdig.c │ │ │ ├── mblen.c │ │ │ ├── mbputchr.c │ │ │ ├── mbrlen.c │ │ │ ├── mbrtowc.c │ │ │ ├── mbsbtype.c │ │ │ ├── mbscat.c │ │ │ ├── mbschr.c │ │ │ ├── mbscmp.c │ │ │ ├── mbscpy.c │ │ │ ├── mbscspn.c │ │ │ ├── mbsdec.c │ │ │ ├── mbsdup.c │ │ │ ├── mbsicmp.c │ │ │ ├── mbsinc.c │ │ │ ├── mbsinit.c │ │ │ ├── mbslen.c │ │ │ ├── mbslwr.c │ │ │ ├── mbsnbcat.c │ │ │ ├── mbsnbcmp.c │ │ │ ├── mbsnbcnt.c │ │ │ ├── mbsnbcpy.c │ │ │ ├── mbsnbicm.c │ │ │ ├── mbsnbset.c │ │ │ ├── mbsncat.c │ │ │ ├── mbsnccnt.c │ │ │ ├── mbsncmp.c │ │ │ ├── mbsncpy.c │ │ │ ├── mbsnextc.c │ │ │ ├── mbsnicmp.c │ │ │ ├── mbsninc.c │ │ │ ├── mbsnset.c │ │ │ ├── mbspbrk.c │ │ │ ├── mbsrchr.c │ │ │ ├── mbsrev.c │ │ │ ├── mbsrto_s.c │ │ │ ├── mbsrtowc.c │ │ │ ├── mbsset.c │ │ │ ├── mbsspn.c │ │ │ ├── mbsspnp.c │ │ │ ├── mbsstr.c │ │ │ ├── mbstok.c │ │ │ ├── mbstow_s.c │ │ │ ├── mbstowcs.c │ │ │ ├── mbsupr.c │ │ │ ├── mbterm.c │ │ │ ├── mbtest.c │ │ │ ├── mbtowc.c │ │ │ ├── safembyt.c │ │ │ ├── setmbcp.c │ │ │ ├── sisinit.c │ │ │ ├── utfqnx.c │ │ │ ├── wc2mbqnx.c │ │ │ ├── wcrtom_s.c │ │ │ ├── wcrtomb.c │ │ │ ├── wcsrto_s.c │ │ │ ├── wcsrtomb.c │ │ │ ├── wcstom_s.c │ │ │ ├── wcstombs.c │ │ │ ├── wctob.c │ │ │ ├── wctomb.c │ │ │ ├── wctomb_s.c │ │ │ └── wrlang.c │ │ ├── deps.mif │ │ ├── h │ │ │ ├── mbchar.h │ │ │ ├── mbqnx.h │ │ │ ├── nextftok.h │ │ │ └── nexttok.h │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── memory │ │ ├── c │ │ │ ├── bcmp.c │ │ │ ├── bcopy.c │ │ │ ├── bzero.c │ │ │ ├── fmemccpy.c │ │ │ ├── fmemchr.c │ │ │ ├── fmemcmp.c │ │ │ ├── fmemcpy.c │ │ │ ├── fmemicmp.c │ │ │ ├── fmemmove.c │ │ │ ├── fmemset.c │ │ │ ├── memccpy.c │ │ │ ├── memchr.c │ │ │ ├── memcmp.c │ │ │ ├── memcpy.c │ │ │ ├── memcpy_s.c │ │ │ ├── memicmp.c │ │ │ ├── memmov_s.c │ │ │ ├── memmove.c │ │ │ ├── memset.c │ │ │ ├── memtest.c │ │ │ ├── movedata.c │ │ │ ├── rmemccpy.c │ │ │ ├── rmemchr.c │ │ │ ├── rmemcmp.c │ │ │ ├── rmemcpy.c │ │ │ ├── rmemicmp.c │ │ │ ├── rmemmove.c │ │ │ ├── rmemset.c │ │ │ ├── rswab.c │ │ │ ├── swab.c │ │ │ ├── umemchr.c │ │ │ ├── umemcmp.c │ │ │ ├── umemcp_s.c │ │ │ ├── umemcpy.c │ │ │ ├── umemmov.c │ │ │ ├── umemmv_s.c │ │ │ └── umemset.c │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── misc │ │ ├── c │ │ │ ├── aborthnd.c │ │ │ ├── assert.c │ │ │ ├── assert99.c │ │ │ ├── basename.c │ │ │ ├── dbgbreak.c │ │ │ ├── dbgdata.c │ │ │ ├── dbgrpt.c │ │ │ ├── dbgrptfi.c │ │ │ ├── dbgrptho.c │ │ │ ├── dbgrptmo.c │ │ │ ├── demangl.c │ │ │ ├── dirname.c │ │ │ ├── ffs.c │ │ │ ├── fpathosi.c │ │ │ ├── fpathrdu.c │ │ │ ├── fullpath.c │ │ │ ├── getopt.c │ │ │ ├── hostwin.c │ │ │ ├── ignorhnd.c │ │ │ ├── kernel.c │ │ │ ├── lfntosfn.c │ │ │ ├── locale.c │ │ │ ├── localeco.c │ │ │ ├── lrotl.c │ │ │ ├── lrotr.c │ │ │ ├── makepath.c │ │ │ ├── misctest.c │ │ │ ├── rotl.c │ │ │ ├── rotr.c │ │ │ ├── rtconstr.c │ │ │ ├── rtcshdlr.c │ │ │ ├── rtcswrap.c │ │ │ ├── rterrmsg.c │ │ │ ├── setlocal.c │ │ │ ├── split2.c │ │ │ ├── splitpat.c │ │ │ ├── uassert.c │ │ │ ├── uassrt99.c │ │ │ ├── udivdi3.c │ │ │ ├── ufulpath.c │ │ │ ├── umkpath.c │ │ │ ├── umoddi3.c │ │ │ ├── urtermsg.c │ │ │ ├── usplit2.c │ │ │ ├── uspltpat.c │ │ │ └── ustlocal.c │ │ ├── deps.mif │ │ ├── h │ │ │ ├── dbgdata.h │ │ │ ├── locales.h │ │ │ ├── localset.h │ │ │ └── rterrmsg.h │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_clibl.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libcl.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── mklib.mif │ ├── mktags.cmd │ ├── mrglib.mif │ ├── mthread │ │ ├── a │ │ │ ├── declrdu.asm │ │ │ └── declwnt.asm │ │ ├── c │ │ │ ├── declthrd.c │ │ │ ├── maxthrds.c │ │ │ ├── mthrdini.c │ │ │ ├── mthread.c │ │ │ ├── regdata.c │ │ │ ├── register.c │ │ │ ├── registrx.c │ │ │ ├── semaqnx.c │ │ │ ├── sthrdwnt.c │ │ │ ├── tdhdlwnt.c │ │ │ ├── thnwlibc.c │ │ │ ├── thrdmax.c │ │ │ ├── thrdxwnt.c │ │ │ ├── thredlnx.c │ │ │ ├── thrednov.c │ │ │ ├── thredo16.c │ │ │ ├── thredo32.c │ │ │ ├── thredqnx.c │ │ │ ├── thredrdk.c │ │ │ ├── thredrdu.c │ │ │ ├── thredwnt.c │ │ │ ├── trdalloc.c │ │ │ └── trdlist.c │ │ ├── h │ │ │ ├── cthread.h │ │ │ ├── nw_libc.h │ │ │ ├── semaqnx.h │ │ │ └── trdlist.h │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_clibl.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libcl.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ └── ml_mt │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── objlist.mif │ ├── posix │ │ ├── c │ │ │ ├── accept.c │ │ │ ├── bind.c │ │ │ ├── cfgtospd.c │ │ │ ├── closedir.c │ │ │ ├── connect.c │ │ │ ├── fnmatch.c │ │ │ ├── gthstnam.c │ │ │ ├── gtpronam.c │ │ │ ├── gtscknam.c │ │ │ ├── gtsckopt.c │ │ │ ├── gtsrvnam.c │ │ │ ├── htonl.c │ │ │ ├── htons.c │ │ │ ├── inetaddr.c │ │ │ ├── inetntoa.c │ │ │ ├── listen.c │ │ │ ├── ntohl.c │ │ │ ├── ntohs.c │ │ │ ├── opendir.c │ │ │ ├── readdir.c │ │ │ ├── recv.c │ │ │ ├── recvfrom.c │ │ │ ├── send.c │ │ │ ├── sendto.c │ │ │ ├── shutdown.c │ │ │ ├── sigadset.c │ │ │ ├── sigdlset.c │ │ │ ├── sigemset.c │ │ │ ├── sigflset.c │ │ │ ├── sigismem.c │ │ │ ├── socket.c │ │ │ ├── stsckopt.c │ │ │ ├── tcflush.c │ │ │ ├── tcgattr.c │ │ │ ├── tcgtpgrp.c │ │ │ ├── tcsattr.c │ │ │ └── tcstpgrp.c │ │ ├── h │ │ │ └── dirstrea.h │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── ppc │ │ ├── c │ │ │ └── fclexppc.c │ │ └── objects.mif │ ├── process │ │ ├── a │ │ │ ├── doexec.asm │ │ │ ├── ergospwn.asm │ │ │ ├── spawn086.asm │ │ │ └── spawn386.asm │ │ ├── c │ │ │ ├── _povrlay.c │ │ │ ├── _raise.c │ │ │ ├── _slashc.c │ │ │ ├── _uslashc.c │ │ │ ├── cenvarg.c │ │ │ ├── cwaitos2.c │ │ │ ├── cwaitwnt.c │ │ │ ├── delay.c │ │ │ ├── delayos2.c │ │ │ ├── delayrd.c │ │ │ ├── delayw32.c │ │ │ ├── delaywnt.c │ │ │ ├── doexerdu.c │ │ │ ├── dospnos2.c │ │ │ ├── dospnrdu.c │ │ │ ├── dospnwnt.c │ │ │ ├── exaddos2.c │ │ │ ├── exaddrdu.c │ │ │ ├── exaddwnt.c │ │ │ ├── excptrdu.c │ │ │ ├── excptwnt.c │ │ │ ├── execaddr.c │ │ │ ├── exl.c │ │ │ ├── exle.c │ │ │ ├── exleqnx.c │ │ │ ├── exlp.c │ │ │ ├── exlpe.c │ │ │ ├── exlpeqnx.c │ │ │ ├── exlpqnx.c │ │ │ ├── exlqnx.c │ │ │ ├── exv.c │ │ │ ├── exve.c │ │ │ ├── exveos2.c │ │ │ ├── exveqnx.c │ │ │ ├── exverdu.c │ │ │ ├── exvewnt.c │ │ │ ├── exvp.c │ │ │ ├── exvpe.c │ │ │ ├── exvpeqnx.c │ │ │ ├── exvpqnx.c │ │ │ ├── exvqnx.c │ │ │ ├── exvrdu.c │ │ │ ├── exwc2mb.c │ │ │ ├── proctest.c │ │ │ ├── raise.c │ │ │ ├── raisep.c │ │ │ ├── sigfpe.c │ │ │ ├── sigjmp.c │ │ │ ├── signl.c │ │ │ ├── signlo16.c │ │ │ ├── signlo32.c │ │ │ ├── signlq16.c │ │ │ ├── signlrdu.c │ │ │ ├── signlwnt.c │ │ │ ├── sigsy.c │ │ │ ├── sigsyo16.c │ │ │ ├── sigtab.c │ │ │ ├── sleep.c │ │ │ ├── sleeplnx.c │ │ │ ├── sleepos2.c │ │ │ ├── sleeprd.c │ │ │ ├── sleepwnt.c │ │ │ ├── spl.c │ │ │ ├── sple.c │ │ │ ├── spleunx.c │ │ │ ├── splp.c │ │ │ ├── splpe.c │ │ │ ├── splpeunx.c │ │ │ ├── splpunx.c │ │ │ ├── splunx.c │ │ │ ├── spv.c │ │ │ ├── spve.c │ │ │ ├── spvelnx.c │ │ │ ├── spveqnx.c │ │ │ ├── spverdu.c │ │ │ ├── spvp.c │ │ │ ├── spvpe.c │ │ │ ├── spvpeunx.c │ │ │ ├── spvpunx.c │ │ │ ├── spvunx.c │ │ │ ├── system.c │ │ │ ├── systemlx.c │ │ │ ├── systrdu.c │ │ │ ├── ucenvarg.c │ │ │ ├── udospwnt.c │ │ │ ├── uexl.c │ │ │ ├── uexle.c │ │ │ ├── uexlp.c │ │ │ ├── uexlpe.c │ │ │ ├── uexv.c │ │ │ ├── uexve.c │ │ │ ├── uexvp.c │ │ │ ├── uexvpe.c │ │ │ ├── uspl.c │ │ │ ├── usple.c │ │ │ ├── usplp.c │ │ │ ├── usplpe.c │ │ │ ├── uspv.c │ │ │ ├── uspve.c │ │ │ ├── uspvp.c │ │ │ ├── uspvpe.c │ │ │ ├── usystem.c │ │ │ ├── waitos2.c │ │ │ └── waitwnt.c │ │ ├── deps.mif │ │ ├── h │ │ │ ├── _int23.h │ │ │ ├── _process.h │ │ │ ├── excptrdu.h │ │ │ ├── excptwnt.h │ │ │ ├── exe.h │ │ │ ├── exwc2mb.h │ │ │ ├── fcb.h │ │ │ ├── fpusig.h │ │ │ ├── memblk.h │ │ │ ├── psp.h │ │ │ ├── sigfunc.h │ │ │ ├── signlrdu.h │ │ │ └── signlwnt.h │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── qa │ │ ├── bios │ │ │ └── makefile │ │ ├── char │ │ │ └── makefile │ │ ├── direct │ │ │ └── makefile │ │ ├── dos.bat │ │ ├── dos │ │ │ └── makefile │ │ ├── environ │ │ │ └── makefile │ │ ├── file │ │ │ └── makefile │ │ ├── fmtint │ │ │ └── makefile │ │ ├── fmttest │ │ │ └── makefile │ │ ├── handleio │ │ │ └── makefile │ │ ├── heap │ │ │ └── makefile │ │ ├── heap2 │ │ │ └── makefile │ │ ├── intel │ │ │ └── makefile │ │ ├── intmath │ │ │ └── makefile │ │ ├── mbyte │ │ │ └── makefile │ │ ├── memory │ │ │ └── makefile │ │ ├── mif │ │ │ ├── clean.mif │ │ │ └── master.mif │ │ ├── misc │ │ │ └── makefile │ │ ├── ntthrd │ │ │ ├── makefile │ │ │ └── tstrtnt1.c │ │ ├── os2.cmd │ │ ├── os2thrd │ │ │ ├── makefile │ │ │ ├── test1.c │ │ │ └── test2.c │ │ ├── process │ │ │ └── makefile │ │ ├── safefile │ │ │ └── makefile │ │ ├── safefmt │ │ │ └── makefile │ │ ├── safeio │ │ │ └── makefile │ │ ├── safembyt │ │ │ └── makefile │ │ ├── safesrch │ │ │ └── makefile │ │ ├── safestr │ │ │ └── makefile │ │ ├── safwstr │ │ │ └── makefile │ │ ├── safwtime │ │ │ └── makefile │ │ ├── search │ │ │ └── makefile │ │ ├── startup │ │ │ └── makefile │ │ ├── streamio │ │ │ └── makefile │ │ ├── string │ │ │ └── makefile │ │ ├── testall.bat │ │ ├── testall.cmd │ │ ├── time │ │ │ └── makefile │ │ ├── windows.bat │ │ ├── winlst.vi │ │ ├── winos2.cmd │ │ └── wnt.bat │ ├── rdos │ │ ├── c │ │ │ └── rdos.c │ │ ├── library │ │ │ └── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── rdosdev │ │ ├── c │ │ │ └── rdosdev.c │ │ ├── library │ │ │ └── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ └── makefile │ │ └── objects.mif │ ├── rtdll │ │ ├── os2.386 │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ ├── mf_rd │ │ │ │ └── makefile │ │ │ ├── mf_s │ │ │ │ └── makefile │ │ │ └── objs.mif │ │ └── winnt.386 │ │ │ ├── mf_r │ │ │ └── makefile │ │ │ ├── mf_rd │ │ │ └── makefile │ │ │ ├── mf_rp │ │ │ └── makefile │ │ │ ├── mf_s │ │ │ └── makefile │ │ │ ├── objs.mif │ │ │ └── verinfo.rc │ ├── search │ │ ├── c │ │ │ ├── bsearch.c │ │ │ ├── bsrch_s.c │ │ │ ├── lfind.c │ │ │ ├── lsearch.c │ │ │ ├── qsort.c │ │ │ ├── qsort_s.c │ │ │ ├── qsortr_s.c │ │ │ ├── qsortrtn.c │ │ │ ├── safesrch.c │ │ │ └── srchtest.c │ │ ├── deps.mif │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── startup │ │ ├── a │ │ │ ├── _8087086.asm │ │ │ ├── _8087386.asm │ │ │ ├── _getds.asm │ │ │ ├── adiestrt.asm │ │ │ ├── adifstrt.asm │ │ │ ├── adsstart.asm │ │ │ ├── adstart.asm │ │ │ ├── chk.asm │ │ │ ├── cmodel.asm │ │ │ ├── crwd086.asm │ │ │ ├── crwd386.asm │ │ │ ├── cstrt086.asm │ │ │ ├── cstrt386.asm │ │ │ ├── cstrtaxp.asm │ │ │ ├── cstrtiny.asm │ │ │ ├── cstrtl32.asm │ │ │ ├── cstrtlmp.asm │ │ │ ├── cstrto16.asm │ │ │ ├── cstrto32.asm │ │ │ ├── cstrtosi.asm │ │ │ ├── cstrtq16.asm │ │ │ ├── cstrtq32.asm │ │ │ ├── cstrtrdk.asm │ │ │ ├── cstrtrdu.asm │ │ │ ├── cstrtw16.asm │ │ │ ├── cstrtw32.asm │ │ │ ├── cstrtwnt.asm │ │ │ ├── cstrtx32.asm │ │ │ ├── cstrwaxp.asm │ │ │ ├── cstrwo32.asm │ │ │ ├── cstrwwnt.asm │ │ │ ├── d16msels.asm │ │ │ ├── dgroup.asm │ │ │ ├── dllstart.asm │ │ │ ├── dos16m.asm │ │ │ ├── dstrt386.asm │ │ │ ├── dstrtaxp.asm │ │ │ ├── getds.asm │ │ │ ├── kererr.asm │ │ │ ├── lgjmpaxp.asm │ │ │ ├── lgjmpmps.asm │ │ │ ├── libentry.asm │ │ │ ├── msgcpyrt.inc │ │ │ ├── msgrt16.inc │ │ │ ├── msgrt32.inc │ │ │ ├── osinf086.asm │ │ │ ├── osinf386.asm │ │ │ ├── resstub.asm │ │ │ ├── seg086.asm │ │ │ ├── seg16.asm │ │ │ ├── seg386.asm │ │ │ ├── segdefns.asm │ │ │ ├── segq16.asm │ │ │ ├── segq32.asm │ │ │ ├── seh386.asm │ │ │ ├── seh386v2.asm │ │ │ ├── stjmp086.asm │ │ │ ├── stjmp386.asm │ │ │ ├── stjmpaxp.asm │ │ │ ├── stjmpmps.asm │ │ │ ├── stjpxaxp.asm │ │ │ ├── stk086.asm │ │ │ ├── stk386.asm │ │ │ ├── stk_libc.asm │ │ │ ├── stkl32.asm │ │ │ ├── stko16.asm │ │ │ ├── stko32.asm │ │ │ ├── stkq16.asm │ │ │ ├── stkq32.asm │ │ │ ├── stkrdk.asm │ │ │ ├── stkrdu.asm │ │ │ ├── stkwnt.asm │ │ │ ├── tnkcdo32.asm │ │ │ ├── tnksto32.asm │ │ │ ├── winnull.asm │ │ │ ├── wstrtaxp.asm │ │ │ ├── wstrtwnt.asm │ │ │ ├── wstrwaxp.asm │ │ │ ├── wstrwwnt.asm │ │ │ └── xiyi.asm │ │ ├── c │ │ │ ├── 8087cw.c │ │ │ ├── _8087osi.c │ │ │ ├── ___argc.c │ │ │ ├── ___wargc.c │ │ │ ├── _exit.c │ │ │ ├── abort.c │ │ │ ├── argcv.c │ │ │ ├── atexit.c │ │ │ ├── chk8087.c │ │ │ ├── cinit.c │ │ │ ├── clibdo32.c │ │ │ ├── clibdwnt.c │ │ │ ├── cmain086.c │ │ │ ├── cmain386.c │ │ │ ├── cmainlnx.c │ │ │ ├── cmainqnx.c │ │ │ ├── cmdname.c │ │ │ ├── cmnw386.c │ │ │ ├── commode.c │ │ │ ├── crtinit.c │ │ │ ├── crwdaxp.c │ │ │ ├── cstrtwna.c │ │ │ ├── cstrwwna.c │ │ │ ├── cvtbuf.c │ │ │ ├── dcinit.c │ │ │ ├── ddgrpo32.c │ │ │ ├── ddgrpwnt.c │ │ │ ├── detosinf.c │ │ │ ├── dinitarg.c │ │ │ ├── diniwarg.c │ │ │ ├── dllmncwd.c │ │ │ ├── dllmno32.c │ │ │ ├── dllnmwnt.c │ │ │ ├── dmaincwd.c │ │ │ ├── dmaino16.c │ │ │ ├── dmaino32.c │ │ │ ├── dmainrdu.c │ │ │ ├── dmainwnt.c │ │ │ ├── dmndo32.c │ │ │ ├── dmndwnt.c │ │ │ ├── dpmihost.c │ │ │ ├── dstrtwna.c │ │ │ ├── emainrdu.c │ │ │ ├── enterdb.c │ │ │ ├── errno.c │ │ │ ├── errnovar.c │ │ │ ├── exit.c │ │ │ ├── fltuse80.c │ │ │ ├── fltused.c │ │ │ ├── fpexcept.c │ │ │ ├── getdsint.c │ │ │ ├── histsplt.c │ │ │ ├── hookfpe.c │ │ │ ├── hpgrw086.c │ │ │ ├── imthread.c │ │ │ ├── inirmsel.c │ │ │ ├── initargv.c │ │ │ ├── initerrn.c │ │ │ ├── initrtns.c │ │ │ ├── initwarg.c │ │ │ ├── ioexit.c │ │ │ ├── itsto32.c │ │ │ ├── lgjpxaxp.c │ │ │ ├── liballoc.c │ │ │ ├── libcstrt.c │ │ │ ├── libmno16.c │ │ │ ├── libmno32.c │ │ │ ├── libterm.c │ │ │ ├── ljmphdl.c │ │ │ ├── lmaino32.c │ │ │ ├── lmainrdu.c │ │ │ ├── lmainwnt.c │ │ │ ├── lmn2wnt.c │ │ │ ├── main2o32.c │ │ │ ├── main2wnt.c │ │ │ ├── main3o32.c │ │ │ ├── main3wnt.c │ │ │ ├── main4o32.c │ │ │ ├── main4wnt.c │ │ │ ├── main5o32.c │ │ │ ├── main5wnt.c │ │ │ ├── mainlnx.c │ │ │ ├── maino16.c │ │ │ ├── maino32.c │ │ │ ├── mainqnx.c │ │ │ ├── mainrdk.c │ │ │ ├── mainrdu.c │ │ │ ├── mainwnt.c │ │ │ ├── mtype.c │ │ │ ├── nomem.c │ │ │ ├── nullargv.c │ │ │ ├── onexit.c │ │ │ ├── os2fil64.c │ │ │ ├── osbdptr.c │ │ │ ├── osmdptr.c │ │ │ ├── osmjptr.c │ │ │ ├── osmnptr.c │ │ │ ├── osvrptr.c │ │ │ ├── pgmptr.c │ │ │ ├── pgmptr_s.c │ │ │ ├── pgmptra.c │ │ │ ├── prelude.c │ │ │ ├── pspptr.c │ │ │ ├── rdllmwnt.c │ │ │ ├── rtcntrl.c │ │ │ ├── seterrno.c │ │ │ ├── stack086.c │ │ │ ├── stack386.c │ │ │ ├── stacklnx.c │ │ │ ├── stackwnt.c │ │ │ ├── startest.c │ │ │ ├── stklmwnt.c │ │ │ ├── stubwep.c │ │ │ ├── uselfn.c │ │ │ ├── wargcv.c │ │ │ ├── wep.c │ │ │ ├── wildargv.c │ │ │ ├── wildwarg.c │ │ │ ├── wmainwnt.c │ │ │ ├── wmndwnt.c │ │ │ ├── wmndwwnt.c │ │ │ ├── wmnwwnt.c │ │ │ ├── wnmjptr.c │ │ │ ├── wnmnptr.c │ │ │ ├── wnvrptr.c │ │ │ ├── wpgmptr.c │ │ │ ├── wpgmptra.c │ │ │ ├── wpgmptrs.c │ │ │ ├── wstrtwna.c │ │ │ ├── wstrwwna.c │ │ │ ├── xmsg.c │ │ │ ├── xmsglnx.c │ │ │ ├── xmsgnov.c │ │ │ ├── xmsgo16.c │ │ │ ├── xmsgo32.c │ │ │ ├── xmsgosi.c │ │ │ ├── xmsgqnx.c │ │ │ ├── xmsgrdk.c │ │ │ ├── xmsgrdu.c │ │ │ ├── xmsgwin.c │ │ │ └── xmsgwnt.c │ │ ├── deps.mif │ │ ├── export.def │ │ ├── h │ │ │ ├── commode.h │ │ │ └── initfini.h │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_clibl.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libcl.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── register.def │ │ │ │ └── stack.def │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ ├── objects.mif │ │ ├── register.def │ │ └── stack.def │ ├── streamio │ │ ├── c │ │ │ ├── 64fseek.c │ │ │ ├── 64ftell.c │ │ │ ├── allocfp.c │ │ │ ├── chktty.c │ │ │ ├── clearerr.c │ │ │ ├── comtflag.c │ │ │ ├── dsetefg.c │ │ │ ├── fclose.c │ │ │ ├── fdopen.c │ │ │ ├── feof.c │ │ │ ├── ferror.c │ │ │ ├── fflush.c │ │ │ ├── fgetc.c │ │ │ ├── fgetchar.c │ │ │ ├── fgetpos.c │ │ │ ├── fgets.c │ │ │ ├── flush.c │ │ │ ├── flushall.c │ │ │ ├── fmdptr.c │ │ │ ├── fmtitest.c │ │ │ ├── fmttest.c │ │ │ ├── fopen.c │ │ │ ├── fopen_s.c │ │ │ ├── fprintf.c │ │ │ ├── fprntf_s.c │ │ │ ├── fprtf.c │ │ │ ├── fprtf_s.c │ │ │ ├── fputc.c │ │ │ ├── fputchar.c │ │ │ ├── fputs.c │ │ │ ├── fread.c │ │ │ ├── freefp.c │ │ │ ├── freop_s.c │ │ │ ├── fscanf.c │ │ │ ├── fscanf_s.c │ │ │ ├── fseek.c │ │ │ ├── fsetpos.c │ │ │ ├── ftell.c │ │ │ ├── fwide.c │ │ │ ├── fwrite.c │ │ │ ├── getc.c │ │ │ ├── getchar.c │ │ │ ├── gets.c │ │ │ ├── gets_s.c │ │ │ ├── getw.c │ │ │ ├── initfile.c │ │ │ ├── ioalloc.c │ │ │ ├── iob.c │ │ │ ├── iobaddr.c │ │ │ ├── iobptr.c │ │ │ ├── iotest.c │ │ │ ├── noefgfmt.c │ │ │ ├── ntfio.c │ │ │ ├── pclose.c │ │ │ ├── perror.c │ │ │ ├── popen.c │ │ │ ├── printf.c │ │ │ ├── printf_s.c │ │ │ ├── prtf.c │ │ │ ├── prtf_s.c │ │ │ ├── putc.c │ │ │ ├── putchar.c │ │ │ ├── puts.c │ │ │ ├── putw.c │ │ │ ├── rewind.c │ │ │ ├── safefmt.c │ │ │ ├── safeio.c │ │ │ ├── safewfmt.c │ │ │ ├── scanf.c │ │ │ ├── scanf_s.c │ │ │ ├── scnf.c │ │ │ ├── scnf_s.c │ │ │ ├── setbuf.c │ │ │ ├── setefg.c │ │ │ ├── setvbuf.c │ │ │ ├── tmpfl.c │ │ │ ├── tmpfl_s.c │ │ │ ├── tmpflunx.c │ │ │ ├── tmputil.c │ │ │ ├── ufdopen.c │ │ │ ├── ufgetc.c │ │ │ ├── ufgetcha.c │ │ │ ├── ufgets.c │ │ │ ├── ufopen.c │ │ │ ├── ufopen_s.c │ │ │ ├── ufprintf.c │ │ │ ├── ufprnt_s.c │ │ │ ├── ufprtf.c │ │ │ ├── ufprtf_s.c │ │ │ ├── ufputc.c │ │ │ ├── ufputcha.c │ │ │ ├── ufputs.c │ │ │ ├── ufreop_s.c │ │ │ ├── ufscanf.c │ │ │ ├── ufscnf_s.c │ │ │ ├── ugetc.c │ │ │ ├── ugetchar.c │ │ │ ├── ugets.c │ │ │ ├── ungetc.c │ │ │ ├── uperror.c │ │ │ ├── upopen.c │ │ │ ├── uprintf.c │ │ │ ├── uprntf_s.c │ │ │ ├── uprtf.c │ │ │ ├── uprtf_s.c │ │ │ ├── uputc.c │ │ │ ├── uputchar.c │ │ │ ├── uputs.c │ │ │ ├── uscanf.c │ │ │ ├── uscanf_s.c │ │ │ ├── uscnf.c │ │ │ ├── uscnf_s.c │ │ │ ├── uungetc.c │ │ │ ├── uvfprint.c │ │ │ ├── uvfprt_s.c │ │ │ ├── uvfscn_s.c │ │ │ ├── uvprintf.c │ │ │ ├── uvprtf_s.c │ │ │ ├── uvscnf_s.c │ │ │ ├── vfprintf.c │ │ │ ├── vfprnt_s.c │ │ │ ├── vfscnf_s.c │ │ │ ├── vprintf.c │ │ │ ├── vprntf_s.c │ │ │ └── vscanf_s.c │ │ ├── deps.mif │ │ ├── h │ │ │ ├── fixpoint.h │ │ │ ├── flush.h │ │ │ ├── fmode.h │ │ │ ├── fprtf.h │ │ │ ├── fprtf_s.h │ │ │ ├── ftos.h │ │ │ ├── orient.h │ │ │ ├── prtscncf.h │ │ │ ├── qread.h │ │ │ ├── qwrite.h │ │ │ ├── streamio.h │ │ │ └── tmpfname.h │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_clibl.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libcl.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── string │ │ ├── a │ │ │ └── cmp386.asm │ │ ├── c │ │ │ ├── bits.c │ │ │ ├── bprintf.c │ │ │ ├── fsetbits.c │ │ │ ├── fstrcat.c │ │ │ ├── fstrchr.c │ │ │ ├── fstrcmp.c │ │ │ ├── fstrcpy.c │ │ │ ├── fstrcspn.c │ │ │ ├── fstrdup.c │ │ │ ├── fstricmp.c │ │ │ ├── fstrlen.c │ │ │ ├── fstrlwr.c │ │ │ ├── fstrncat.c │ │ │ ├── fstrncmp.c │ │ │ ├── fstrncpy.c │ │ │ ├── fstrnicm.c │ │ │ ├── fstrnset.c │ │ │ ├── fstrpbrk.c │ │ │ ├── fstrrchr.c │ │ │ ├── fstrrev.c │ │ │ ├── fstrset.c │ │ │ ├── fstrspn.c │ │ │ ├── fstrspnp.c │ │ │ ├── fstrstr.c │ │ │ ├── fstrtok.c │ │ │ ├── fstrupr.c │ │ │ ├── rstrcat.c │ │ │ ├── rstrchr.c │ │ │ ├── rstrcmp.c │ │ │ ├── rstrcpy.c │ │ │ ├── rstrdata.c │ │ │ ├── rstricmp.c │ │ │ ├── rstrlen.c │ │ │ ├── rstrlwr.c │ │ │ ├── rstrncat.c │ │ │ ├── rstrncmp.c │ │ │ ├── rstrncpy.c │ │ │ ├── rstrnicm.c │ │ │ ├── rstrnset.c │ │ │ ├── rstrpbrk.c │ │ │ ├── rstrrchr.c │ │ │ ├── rstrset.c │ │ │ ├── rstrstr.c │ │ │ ├── rstrupr.c │ │ │ ├── safestr.c │ │ │ ├── safwstr.c │ │ │ ├── selptr.c │ │ │ ├── setbits.c │ │ │ ├── sneptr.c │ │ │ ├── snprintf.c │ │ │ ├── snprtf_s.c │ │ │ ├── sprintf.c │ │ │ ├── sprntf_s.c │ │ │ ├── sscanf.c │ │ │ ├── sscanf_s.c │ │ │ ├── stncat_s.c │ │ │ ├── stncpy_s.c │ │ │ ├── strcat.c │ │ │ ├── strcat_s.c │ │ │ ├── strchr.c │ │ │ ├── strcmp.c │ │ │ ├── strcoll.c │ │ │ ├── strcpy.c │ │ │ ├── strcpy_s.c │ │ │ ├── strcspn.c │ │ │ ├── strdup.c │ │ │ ├── streln_s.c │ │ │ ├── strerr_s.c │ │ │ ├── strerror.c │ │ │ ├── stricmp.c │ │ │ ├── strlcat.c │ │ │ ├── strlcpy.c │ │ │ ├── strlen.c │ │ │ ├── strlwr.c │ │ │ ├── strncat.c │ │ │ ├── strncmp.c │ │ │ ├── strncpy.c │ │ │ ├── strnicmp.c │ │ │ ├── strnln_s.c │ │ │ ├── strnset.c │ │ │ ├── strpbrk.c │ │ │ ├── strrchr.c │ │ │ ├── strrev.c │ │ │ ├── strset.c │ │ │ ├── strspn.c │ │ │ ├── strspnp.c │ │ │ ├── strstr.c │ │ │ ├── strtest.c │ │ │ ├── strtok.c │ │ │ ├── strtok_s.c │ │ │ ├── strupr.c │ │ │ ├── strxfrm.c │ │ │ ├── ubprintf.c │ │ │ ├── urstrcat.c │ │ │ ├── urstrchr.c │ │ │ ├── urstrcmp.c │ │ │ ├── urstrcpy.c │ │ │ ├── urstrdat.c │ │ │ ├── urstricm.c │ │ │ ├── urstrlen.c │ │ │ ├── urstrlwr.c │ │ │ ├── urstrnca.c │ │ │ ├── urstrncm.c │ │ │ ├── urstrncp.c │ │ │ ├── urstrnic.c │ │ │ ├── urstrnse.c │ │ │ ├── urstrpbr.c │ │ │ ├── urstrrch.c │ │ │ ├── urstrset.c │ │ │ ├── urstrstr.c │ │ │ ├── urstrupr.c │ │ │ ├── usnprt_s.c │ │ │ ├── usprintf.c │ │ │ ├── usprtf_s.c │ │ │ ├── usscanf.c │ │ │ ├── usscnf_s.c │ │ │ ├── ustcat_s.c │ │ │ ├── ustncp_s.c │ │ │ ├── ustnct_s.c │ │ │ ├── ustnln_s.c │ │ │ ├── ustrcat.c │ │ │ ├── ustrchr.c │ │ │ ├── ustrcmp.c │ │ │ ├── ustrcoll.c │ │ │ ├── ustrcp_s.c │ │ │ ├── ustrcpy.c │ │ │ ├── ustrcspn.c │ │ │ ├── ustrdup.c │ │ │ ├── ustrel_s.c │ │ │ ├── ustrer_s.c │ │ │ ├── ustrerro.c │ │ │ ├── ustrerrp.c │ │ │ ├── ustricmp.c │ │ │ ├── ustrlcat.c │ │ │ ├── ustrlcpy.c │ │ │ ├── ustrlen.c │ │ │ ├── ustrlwr.c │ │ │ ├── ustrncat.c │ │ │ ├── ustrncmp.c │ │ │ ├── ustrncpy.c │ │ │ ├── ustrnicm.c │ │ │ ├── ustrnset.c │ │ │ ├── ustrpbrk.c │ │ │ ├── ustrrchr.c │ │ │ ├── ustrrev.c │ │ │ ├── ustrset.c │ │ │ ├── ustrspn.c │ │ │ ├── ustrspnp.c │ │ │ ├── ustrstr.c │ │ │ ├── ustrtk_s.c │ │ │ ├── ustrtok.c │ │ │ ├── ustrupr.c │ │ │ ├── ustrxfrm.c │ │ │ ├── uvsnpr_s.c │ │ │ ├── uvsprint.c │ │ │ ├── uvsprt_s.c │ │ │ ├── uvsscn_s.c │ │ │ ├── vsnprt_s.c │ │ │ ├── vsprintf.c │ │ │ ├── vsprtf_s.c │ │ │ └── vsscnf_s.c │ │ ├── deps.mif │ │ ├── h │ │ │ ├── errstr.h │ │ │ ├── nextftok.h │ │ │ ├── nexttok.h │ │ │ └── nextwtok.h │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── time │ │ ├── c │ │ │ ├── asctim_s.c │ │ │ ├── asctime.c │ │ │ ├── clock.c │ │ │ ├── clockdos.c │ │ │ ├── clocko16.c │ │ │ ├── clocko32.c │ │ │ ├── clockrd.c │ │ │ ├── clockwin.c │ │ │ ├── ctime_s.c │ │ │ ├── dyltptr.c │ │ │ ├── ftime.c │ │ │ ├── ftimelnx.c │ │ │ ├── ftimeqnx.c │ │ │ ├── gmtime.c │ │ │ ├── gmtime_s.c │ │ │ ├── gtctm.c │ │ │ ├── gtctmos2.c │ │ │ ├── gtctmrd.c │ │ │ ├── gtctmwnt.c │ │ │ ├── lcltim_s.c │ │ │ ├── leapyear.c │ │ │ ├── localtim.c │ │ │ ├── locmktim.c │ │ │ ├── mktime.c │ │ │ ├── safetime.c │ │ │ ├── safwtime.c │ │ │ ├── strdate.c │ │ │ ├── strftime.c │ │ │ ├── strtime.c │ │ │ ├── time.c │ │ │ ├── timetest.c │ │ │ ├── timeutil.c │ │ │ ├── tmznptr.c │ │ │ ├── tzfile.c │ │ │ ├── tznmptr.c │ │ │ ├── tzset.c │ │ │ ├── uasctime.c │ │ │ ├── uasctm_s.c │ │ │ ├── uctime_s.c │ │ │ ├── ustrdate.c │ │ │ ├── ustrftim.c │ │ │ └── ustrtime.c │ │ ├── deps.mif │ │ ├── h │ │ │ ├── _time.h │ │ │ ├── asctime.h │ │ │ ├── country.h │ │ │ ├── thetime.h │ │ │ └── timedata.h │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_ov │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ ├── mm_ov │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── nw_clib.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── nw_libc.386 │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_sd │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_dll │ │ │ │ │ └── makefile │ │ │ │ ├── ml_mt │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── osi.386 │ │ │ │ └── ms_r │ │ │ │ │ └── makefile │ │ │ ├── qnx.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── ml_sh │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── rdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── rdosdev.386 │ │ │ │ └── mc_r │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ └── win386 │ │ ├── a │ │ ├── inv16bf.asm │ │ ├── mklcl32.asm │ │ └── wincb32.asm │ │ ├── c │ │ ├── alloc16.c │ │ ├── alloch16.c │ │ ├── cb.c │ │ ├── cdchclr.c │ │ ├── cdchfnt.c │ │ ├── cdfndtxt.c │ │ ├── cdgofn.c │ │ ├── cdgsfn.c │ │ ├── cdlg.c │ │ ├── cdlgi.c │ │ ├── cdlgip.c │ │ ├── cdlgp.c │ │ ├── cdprtdlg.c │ │ ├── cdreptxt.c │ │ ├── dbox.c │ │ ├── dboxi.c │ │ ├── dboxip.c │ │ ├── dboxp.c │ │ ├── ddeml.c │ │ ├── defp16.c │ │ ├── enumcw.c │ │ ├── enumf.c │ │ ├── enumff.c │ │ ├── enummf.c │ │ ├── enumobj.c │ │ ├── enumprop.c │ │ ├── enumtw.c │ │ ├── enumwin.c │ │ ├── escape.c │ │ ├── getp16.c │ │ ├── glblnfy.c │ │ ├── graystr.c │ │ ├── indir.c │ │ ├── libent.c │ │ ├── linedda.c │ │ ├── mapa2f.c │ │ ├── mmiiop.c │ │ ├── mmsyp.c │ │ ├── mmsystem.c │ │ ├── mmtse.c │ │ ├── mmwio.c │ │ ├── mmwoo.c │ │ ├── ole.c │ │ ├── penwin.c │ │ ├── pwcorwr.c │ │ ├── pwdics.c │ │ ├── pwes.c │ │ ├── pwprwr.c │ │ ├── pwrec.c │ │ ├── pwrecdat.c │ │ ├── pwsph.c │ │ ├── pwtrink.c │ │ ├── regclass.c │ │ ├── relp16.c │ │ ├── sendmsg.c │ │ ├── setcl.c │ │ ├── setrh.c │ │ ├── settimer.c │ │ ├── setwh.c │ │ ├── setwhx.c │ │ ├── setwl.c │ │ ├── snddimsg.c │ │ ├── thnfyreg.c │ │ ├── tryalias.c │ │ ├── udpdat.c │ │ ├── unhookwh.c │ │ └── w32rallc.c │ │ ├── h │ │ ├── alloc.h │ │ └── cover.h │ │ ├── library │ │ └── windows.386 │ │ │ ├── mf_r │ │ │ └── makefile │ │ │ └── mf_s │ │ │ └── makefile │ │ └── objects.mif ├── cmdedit │ ├── cmdalias.c │ ├── cmddata.c │ ├── cmddata.h │ ├── cmddir.c │ ├── cmdedit.c │ ├── cmdedit.doc │ ├── cmdedit.h │ ├── cmdedit.txt │ ├── cmdfile.c │ ├── cmdio.c │ ├── cmdmain.c │ ├── cmdsave.c │ ├── cmdscrn.c │ ├── cmdshell.c │ ├── cmdstart.asm │ ├── cmdstub.c │ ├── cmdutil.c │ ├── cmdutil.h │ ├── dcmdedit.c │ ├── dcmdstar.asm │ ├── dosi86 │ │ └── makefile │ ├── dosstart.asm │ ├── files.dat │ ├── ftos.c │ ├── lang.ctl │ ├── makedoc.bat │ ├── master.mif │ ├── os22edit.c │ ├── os2edit.c │ └── os2i86 │ │ └── makefile ├── commonui │ ├── asm │ │ ├── inth.asm │ │ └── segmem.asm │ ├── c │ │ ├── about.c │ │ ├── alias.c │ │ ├── bitmap.c │ │ ├── ctl3d32.c │ │ ├── ctl3dcvr.c │ │ ├── dbg386.c │ │ ├── desknt.c │ │ ├── dlgmod.c │ │ ├── font.c │ │ ├── fontstr.c │ │ ├── getcsip.c │ │ ├── getsaddr.c │ │ ├── hint.c │ │ ├── inipath.c │ │ ├── intdata.c │ │ ├── ismod32.c │ │ ├── jdlg.c │ │ ├── ldstr.c │ │ ├── loadcc.c │ │ ├── log.c │ │ ├── mark.c │ │ ├── mem.c │ │ ├── memwnd.c │ │ ├── memwndcd.c │ │ ├── mythelp.c │ │ ├── palette.c │ │ ├── pushwin.c │ │ ├── savelbox.c │ │ ├── sdkasm.c │ │ ├── seginfo.c │ │ ├── segmem2.c │ │ ├── srchmsg.c │ │ ├── statwnd.c │ │ ├── strsup.c │ │ ├── toolbr.c │ │ ├── wmdisim.c │ │ └── wwinhelp.c │ ├── commonui.msg │ ├── h │ │ ├── about.dlg │ │ ├── about.h │ │ ├── about.msg │ │ ├── aboutdlg.h │ │ ├── aboutj.dlg │ │ ├── alias.h │ │ ├── alias.msg │ │ ├── alias.rc │ │ ├── bitmap.h │ │ ├── ctl3dcvr.h │ │ ├── descript.h │ │ ├── desknt.h │ │ ├── di386.h │ │ ├── dlgmod.h │ │ ├── font.h │ │ ├── fontstr.h │ │ ├── getcsip.h │ │ ├── getsaddr.h │ │ ├── hdlinfo.dlg │ │ ├── hdlinfo.h │ │ ├── hint.h │ │ ├── hint.msg │ │ ├── inipath.h │ │ ├── intdata.h │ │ ├── ismod32.h │ │ ├── jdlg.h │ │ ├── ldstr.h │ │ ├── loadcc.h │ │ ├── log.h │ │ ├── log.msg │ │ ├── log.rc │ │ ├── mark.h │ │ ├── mark.rc │ │ ├── mem.h │ │ ├── memwnd.h │ │ ├── memwnd.msg │ │ ├── memwnd.rc │ │ ├── mythelp.h │ │ ├── offset.dlg │ │ ├── offset.h │ │ ├── palette.h │ │ ├── precomp.h │ │ ├── pushwin.h │ │ ├── savelbox.h │ │ ├── savelbox.msg │ │ ├── sdkasm.h │ │ ├── seginfo.dlg │ │ ├── seginfo.h │ │ ├── segmem.h │ │ ├── selinfo.dlg │ │ ├── selinfo.h │ │ ├── srchmsg.h │ │ ├── statwnd.h │ │ ├── toolbr.h │ │ ├── types.h │ │ ├── watini.h │ │ ├── wmdisim.h │ │ └── wwinhelp.h │ ├── lang.ctl │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── os2i86 │ │ └── makefile │ ├── win386 │ │ └── makefile │ └── wini86 │ │ └── makefile ├── comp_cfg │ ├── h │ │ ├── compcfg.h │ │ ├── fe_cfg.h │ │ ├── java_cfg.h │ │ ├── langenv.h │ │ ├── langenv.inc │ │ ├── langenvd.h │ │ └── targdef.h │ └── lang.ctl ├── cpp │ ├── dosi86 │ │ └── makefile │ ├── dumpmac.c │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── master.mif │ ├── mkmk.c │ ├── nt386 │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── ppexpr.c │ ├── ppmacro.c │ ├── ppmem.c │ ├── preproc.c │ ├── preproc.h │ ├── prereq.ctl │ ├── testpp.c │ └── wcpp.c ├── ctest │ ├── c │ │ └── chk_exec.c │ ├── makefile │ └── regress │ │ ├── callconv │ │ ├── error.chk │ │ ├── makefile │ │ ├── onetest.cmd │ │ ├── source │ │ │ ├── callconv.mif │ │ │ ├── fail.h │ │ │ └── obj.c │ │ ├── sym38600.chk │ │ ├── sym38601.chk │ │ ├── sym38602.chk │ │ ├── sym38603.chk │ │ ├── sym38604.chk │ │ ├── sym38605.chk │ │ ├── sym38606.chk │ │ ├── sym38607.chk │ │ ├── sym38608.chk │ │ ├── sym38609.chk │ │ ├── symi8600.chk │ │ ├── symi8601.chk │ │ ├── symi8602.chk │ │ ├── symi8603.chk │ │ ├── symi8604.chk │ │ ├── symi8605.chk │ │ ├── symi8606.chk │ │ ├── symi8607.chk │ │ ├── symi8608.chk │ │ ├── symi8609.chk │ │ └── testrun.cmd │ │ ├── codegen │ │ ├── error.chk │ │ ├── makefile │ │ ├── onetest.cmd │ │ ├── readme.txt │ │ ├── source │ │ │ ├── bin_i.h │ │ │ ├── bin_i_f.h │ │ │ ├── cgtypes.h │ │ │ ├── codegen.mif │ │ │ ├── fail.h │ │ │ ├── op_add.c │ │ │ ├── op_add2.c │ │ │ ├── op_add3.c │ │ │ ├── op_and.c │ │ │ ├── op_div.c │ │ │ ├── op_div2.c │ │ │ ├── op_div3.c │ │ │ ├── op_mod.c │ │ │ ├── op_mul.c │ │ │ ├── op_mul2.c │ │ │ ├── op_mul3.c │ │ │ ├── op_or.c │ │ │ ├── op_sub.c │ │ │ ├── op_sub2.c │ │ │ ├── op_sub3.c │ │ │ ├── op_xor.c │ │ │ ├── oplshift.c │ │ │ └── oprshift.c │ │ └── testrun.cmd │ │ ├── diagnose │ │ ├── diag0000.chk │ │ ├── diff0000.chk │ │ ├── fixpath.sed │ │ ├── makefile │ │ ├── onetest.cmd │ │ ├── source │ │ │ ├── catfile.c │ │ │ ├── diag0001.c │ │ │ ├── diag0002.c │ │ │ ├── diag0003.c │ │ │ ├── diag0004.c │ │ │ ├── diag0005.c │ │ │ ├── diag0006.c │ │ │ ├── diag0007.c │ │ │ ├── diag0008.c │ │ │ ├── diag0009.c │ │ │ ├── diag0010.c │ │ │ ├── diag0011.c │ │ │ ├── diag0012.c │ │ │ ├── diag0013.c │ │ │ ├── diag0014.c │ │ │ ├── diag0015.c │ │ │ ├── diag0016.c │ │ │ ├── diag0017.c │ │ │ ├── diag0018.c │ │ │ ├── diag0019.c │ │ │ ├── diag0020.c │ │ │ ├── diag0021.c │ │ │ ├── diag0022.c │ │ │ ├── diagnose.mif │ │ │ ├── inc1.h │ │ │ └── inc2.h │ │ └── testrun.cmd │ │ ├── environ.mif │ │ ├── inline │ │ ├── error.chk │ │ ├── inline.mif │ │ ├── makefile │ │ ├── onetest.cmd │ │ └── testrun.cmd │ │ ├── makefile │ │ ├── onetest.cmd │ │ ├── positive │ │ ├── error.chk │ │ ├── makefile │ │ ├── onetest.cmd │ │ ├── source │ │ │ ├── alias.h │ │ │ ├── alias01.c │ │ │ ├── asm01.c │ │ │ ├── asm02.c │ │ │ ├── asm03.c │ │ │ ├── asm04.c │ │ │ ├── asm05.c │ │ │ ├── asm06.c │ │ │ ├── asm07.c │ │ │ ├── asm08.c │ │ │ ├── asm09.c │ │ │ ├── based01.c │ │ │ ├── based02.c │ │ │ ├── based03.c │ │ │ ├── based04.c │ │ │ ├── bf01.c │ │ │ ├── bf02.c │ │ │ ├── bf03.c │ │ │ ├── bool01.c │ │ │ ├── bool02.c │ │ │ ├── callc01.c │ │ │ ├── cmp01.c │ │ │ ├── cmp02.c │ │ │ ├── conv02.c │ │ │ ├── conv03.c │ │ │ ├── conv04.c │ │ │ ├── enum01.c │ │ │ ├── enum02.c │ │ │ ├── enum03.c │ │ │ ├── enum04.c │ │ │ ├── expr01.c │ │ │ ├── expr02.c │ │ │ ├── fail.h │ │ │ ├── far1601.c │ │ │ ├── float01.c │ │ │ ├── float02.c │ │ │ ├── float03.c │ │ │ ├── float04.c │ │ │ ├── hdr1.h │ │ │ ├── hdr2.h │ │ │ ├── hdr3.h │ │ │ ├── i6402.c │ │ │ ├── i6403.c │ │ │ ├── i6404.c │ │ │ ├── i6405.c │ │ │ ├── i6407.c │ │ │ ├── i6408.c │ │ │ ├── i64cmp.c │ │ │ ├── i64cnv.c │ │ │ ├── i64op.c │ │ │ ├── init01.c │ │ │ ├── init02.c │ │ │ ├── init03.c │ │ │ ├── init04.c │ │ │ ├── init05.c │ │ │ ├── init06.c │ │ │ ├── init07.c │ │ │ ├── init08.c │ │ │ ├── init09.c │ │ │ ├── init10.c │ │ │ ├── init11.c │ │ │ ├── init12.c │ │ │ ├── init13.c │ │ │ ├── init14.c │ │ │ ├── init15.c │ │ │ ├── init16.c │ │ │ ├── init17.c │ │ │ ├── init18.c │ │ │ ├── init19.c │ │ │ ├── init20.c │ │ │ ├── init21.c │ │ │ ├── init22.c │ │ │ ├── init23.c │ │ │ ├── inline01.c │ │ │ ├── inline04.c │ │ │ ├── int01.c │ │ │ ├── intel01.c │ │ │ ├── opt01.c │ │ │ ├── opt02.c │ │ │ ├── opt03.c │ │ │ ├── opt04.c │ │ │ ├── opt05.c │ │ │ ├── opt06.c │ │ │ ├── opt07.c │ │ │ ├── opt08.c │ │ │ ├── opt09.c │ │ │ ├── opt10.c │ │ │ ├── opt11.c │ │ │ ├── opt12.c │ │ │ ├── opt14.c │ │ │ ├── opt15.c │ │ │ ├── opt16.c │ │ │ ├── opt17.c │ │ │ ├── opt18.c │ │ │ ├── opt19.c │ │ │ ├── opt20.c │ │ │ ├── opt21.c │ │ │ ├── opt24.c │ │ │ ├── opt25.c │ │ │ ├── opt26.c │ │ │ ├── opt27.c │ │ │ ├── opt28.c │ │ │ ├── opt29.c │ │ │ ├── opt30.c │ │ │ ├── opt31.c │ │ │ ├── opt32.c │ │ │ ├── opt34.c │ │ │ ├── opt35.c │ │ │ ├── opt36.c │ │ │ ├── opt37.c │ │ │ ├── opt38.c │ │ │ ├── opt39.c │ │ │ ├── opt40.c │ │ │ ├── opt41.c │ │ │ ├── opt42.c │ │ │ ├── opt43.c │ │ │ ├── opt44.c │ │ │ ├── opt45.c │ │ │ ├── opt46.c │ │ │ ├── opt47.c │ │ │ ├── opt48.c │ │ │ ├── opt49.c │ │ │ ├── opt50.c │ │ │ ├── pack01.c │ │ │ ├── pack02.c │ │ │ ├── pack03.c │ │ │ ├── pack04.c │ │ │ ├── pack05.c │ │ │ ├── parm01.c │ │ │ ├── parm02.c │ │ │ ├── pch01.c │ │ │ ├── pch01.h │ │ │ ├── pch02.c │ │ │ ├── pch03.c │ │ │ ├── pch03.h │ │ │ ├── pch04.c │ │ │ ├── pch05.c │ │ │ ├── pch06.c │ │ │ ├── pch06.h │ │ │ ├── pch07.c │ │ │ ├── pch08.c │ │ │ ├── pch08.h │ │ │ ├── pch09.c │ │ │ ├── pch10.c │ │ │ ├── pch11.c │ │ │ ├── positive.mif │ │ │ ├── pp01.c │ │ │ ├── pp02.c │ │ │ ├── pp03.c │ │ │ ├── pp04.c │ │ │ ├── pp05.c │ │ │ ├── pp06.c │ │ │ ├── pp07.c │ │ │ ├── pp08.c │ │ │ ├── pp09.c │ │ │ ├── pp10.c │ │ │ ├── pp11.c │ │ │ ├── pp12.c │ │ │ ├── pp13.c │ │ │ ├── pp14.c │ │ │ ├── pp15.c │ │ │ ├── pp16.c │ │ │ ├── pp17.c │ │ │ ├── pp18.c │ │ │ ├── pp18.h │ │ │ ├── pp19.c │ │ │ ├── pp20.c │ │ │ ├── pp21.c │ │ │ ├── pp22.c │ │ │ ├── pp23.c │ │ │ ├── pp24.c │ │ │ ├── pp25.c │ │ │ ├── pp26.c │ │ │ ├── pp27.c │ │ │ ├── pp28.c │ │ │ ├── pp29.c │ │ │ ├── pp30.c │ │ │ ├── pp31.c │ │ │ ├── prag01.c │ │ │ ├── prag02.c │ │ │ ├── prep01.p │ │ │ ├── quest01.c │ │ │ ├── quest02.c │ │ │ ├── ret01.c │ │ │ ├── ret02.c │ │ │ ├── ret03.c │ │ │ ├── ret04.c │ │ │ ├── seh01.c │ │ │ ├── sizeof01.c │ │ │ ├── sizeof02.c │ │ │ ├── src01.c │ │ │ ├── src01.h │ │ │ ├── str01.c │ │ │ ├── str02.c │ │ │ ├── switch01.c │ │ │ ├── thread01.c │ │ │ └── thread02.c │ │ └── testrun.cmd │ │ └── testrun.cmd ├── cvpack │ ├── cpp │ │ ├── common.cpp │ │ ├── cssymbol.cpp │ │ ├── cverror.cpp │ │ ├── cvpack.cpp │ │ ├── foo.cpp │ │ ├── makeexe.cpp │ │ ├── packtype.cpp │ │ ├── retrieve.cpp │ │ ├── subsect.cpp │ │ ├── symdis.cpp │ │ ├── typearay.cpp │ │ ├── typemap.cpp │ │ └── typercrd.cpp │ ├── dos386 │ │ └── makefile │ ├── files.dat │ ├── hpp │ │ ├── common.hpp │ │ ├── cssymbol.hpp │ │ ├── cverror.hpp │ │ ├── cvpack.hpp │ │ ├── makeexe.hpp │ │ ├── myvector.hpp │ │ ├── packtype.hpp │ │ ├── retrieve.hpp │ │ ├── subsect.hpp │ │ ├── symdis.hpp │ │ ├── typearay.hpp │ │ ├── typemap.hpp │ │ └── typercrd.hpp │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── outline.txt │ └── qnx386 │ │ └── makefile ├── d16api │ └── include │ │ ├── dos16.h │ │ └── dosgen.h ├── dig │ ├── c │ │ ├── dipman.c │ │ ├── dos │ │ │ └── trpld.c │ │ ├── dsx │ │ │ ├── dipld.c │ │ │ ├── ldimp.h │ │ │ └── madld.c │ │ ├── dumb.c │ │ ├── linux │ │ │ ├── dipld.c │ │ │ ├── dipld_so.c │ │ │ ├── madld.c │ │ │ ├── madld_so.c │ │ │ ├── pe.h │ │ │ ├── peloader.c │ │ │ ├── peloader.h │ │ │ ├── trpld.c │ │ │ ├── trpld_pe.c │ │ │ └── trpld_so.c │ │ ├── madman.c │ │ ├── nlm │ │ │ └── trpld.c │ │ ├── nt │ │ │ ├── dipld.c │ │ │ ├── madld.c │ │ │ ├── pillld.c │ │ │ └── trpld.c │ │ ├── nto │ │ │ └── trpld.c │ │ ├── os2 │ │ │ ├── dipld.c │ │ │ ├── madld.c │ │ │ ├── pillld.c │ │ │ └── trpld.c │ │ ├── os2v2 │ │ │ ├── dipld.c │ │ │ ├── madld.c │ │ │ └── trpld.c │ │ ├── osx │ │ │ ├── dipld.c │ │ │ ├── madld.c │ │ │ └── trpld.c │ │ ├── pillman.c │ │ ├── pillsupp.c │ │ ├── pilpkt.c │ │ ├── qnx │ │ │ ├── dipld.c │ │ │ ├── madld.c │ │ │ ├── pillld.c │ │ │ ├── qnxload.h │ │ │ └── trpld.c │ │ ├── rdos │ │ │ ├── dipld.c │ │ │ ├── madld.c │ │ │ ├── pillld.c │ │ │ └── trpld.c │ │ ├── trpsupp.c │ │ └── win │ │ │ ├── dipld.c │ │ │ ├── madld.c │ │ │ └── trpld.c │ ├── h │ │ ├── digcli.h │ │ ├── digpck.h │ │ ├── digtypes.h │ │ ├── digunpck.h │ │ ├── dip.h │ │ ├── dipcli.h │ │ ├── dipimp.h │ │ ├── diptypes.h │ │ ├── mad.h │ │ ├── mad.str │ │ ├── madarch.h │ │ ├── madaxp.h │ │ ├── madcli.h │ │ ├── madimp.h │ │ ├── madjvm.h │ │ ├── madmips.h │ │ ├── mados.h │ │ ├── madppc.h │ │ ├── madregs.h │ │ ├── madstr.h │ │ ├── madtypes.h │ │ ├── madx86.h │ │ ├── pcreq.h │ │ ├── pcres.h │ │ ├── pilcore.h │ │ ├── pillcli.h │ │ ├── pillctrl.h │ │ ├── pillimp.h │ │ ├── pillink.h │ │ ├── pillsupp.h │ │ ├── pilltrig.h │ │ ├── pilpkt.h │ │ ├── piltypes.h │ │ ├── srvcdbg.h │ │ ├── tcerr.h │ │ ├── trapbrk.h │ │ ├── trpasync.h │ │ ├── trpcapb.h │ │ ├── trpcore.h │ │ ├── trpenv.h │ │ ├── trpfile.h │ │ ├── trpfinfo.h │ │ ├── trpimp.h │ │ ├── trpovl.h │ │ ├── trpqimp.h │ │ ├── trprfx.h │ │ ├── trprtrd.h │ │ ├── trpthrd.h │ │ └── trptypes.h │ ├── lang.ctl │ └── mif │ │ ├── dipcli.mif │ │ ├── madcli.mif │ │ └── trpcli.mif ├── dip │ ├── boot.ctl │ ├── c │ │ └── dipimp.c │ ├── codeview │ │ ├── bootmake │ │ ├── c │ │ │ ├── cvcue.c │ │ │ ├── cvld.c │ │ │ ├── cvloc.c │ │ │ ├── cvmisc.c │ │ │ ├── cvmod.c │ │ │ ├── cvsym.c │ │ │ ├── cvtype.c │ │ │ └── cvvirt.c │ │ ├── codeview.mif │ │ ├── dos386 │ │ │ └── makefile │ │ ├── h │ │ │ └── cvinfo.h │ │ ├── linux386 │ │ │ └── makefile │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── qnx386 │ │ │ └── makefile │ │ ├── version.rc │ │ └── wini86 │ │ │ └── makefile │ ├── cvpos2.c │ ├── dipdump │ │ ├── c │ │ │ ├── digcli.c │ │ │ ├── dipcli.c │ │ │ └── dipdump.c │ │ ├── dipdump.mif │ │ ├── nt386 │ │ │ └── makefile │ │ └── os2386 │ │ │ └── makefile │ ├── doc │ │ ├── dip.doc │ │ └── mod.doc │ ├── dwarf │ │ ├── bootmake │ │ ├── c │ │ │ ├── dfaddr.c │ │ │ ├── dfaddsym.c │ │ │ ├── dfcue.c │ │ │ ├── dfhash.c │ │ │ ├── dfld.c │ │ │ ├── dfline.c │ │ │ ├── dfloc.c │ │ │ ├── dfmisc.c │ │ │ ├── dfmod.c │ │ │ ├── dfmodbld.c │ │ │ ├── dfscope.c │ │ │ ├── dfsegs.c │ │ │ ├── dfsym.c │ │ │ ├── dftype.c │ │ │ └── stub.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── dwarf.mif │ │ ├── h │ │ │ ├── dfaddr.h │ │ │ ├── dfaddsym.h │ │ │ ├── dfclean.h │ │ │ ├── dfcue.h │ │ │ ├── dfcuelst.h │ │ │ ├── dfdip.h │ │ │ ├── dfhash.h │ │ │ ├── dfld.h │ │ │ ├── dfline.h │ │ │ ├── dfloc.h │ │ │ ├── dfmisc.h │ │ │ ├── dfmod.h │ │ │ ├── dfmodbld.h │ │ │ ├── dfmodinf.h │ │ │ ├── dfscope.h │ │ │ ├── dfscplst.h │ │ │ ├── dfseglst.h │ │ │ ├── dfsegs.h │ │ │ ├── dfsym.h │ │ │ └── dftype.h │ │ ├── linux386 │ │ │ └── makefile │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── qnx386 │ │ │ └── makefile │ │ ├── rdos386 │ │ │ └── makefile │ │ ├── version.rc │ │ └── wini86 │ │ │ └── makefile │ ├── export │ │ ├── bootmake │ │ ├── c │ │ │ ├── expcue.c │ │ │ ├── expld.c │ │ │ ├── expmisc.c │ │ │ ├── expmod.c │ │ │ ├── expsym.c │ │ │ └── exptype.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── export.mif │ │ ├── h │ │ │ └── exp.h │ │ ├── linux386 │ │ │ └── makefile │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── qnx386 │ │ │ └── makefile │ │ ├── version.rc │ │ └── wini86 │ │ │ └── makefile │ ├── files.dat │ ├── hllcv │ │ ├── bootmake │ │ ├── c │ │ │ ├── hllcue.c │ │ │ ├── hllld.c │ │ │ ├── hllloc.c │ │ │ ├── hllmisc.c │ │ │ ├── hllmod.c │ │ │ ├── hllsym.c │ │ │ ├── hlltype.c │ │ │ └── hllvirt.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── h │ │ │ └── hllinfo.h │ │ ├── hll_cv_types.txt │ │ ├── hllcv.mif │ │ ├── linux386 │ │ │ └── makefile │ │ ├── nt386 │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── version.rc │ │ └── wini86 │ │ │ └── makefile │ ├── imp.mif │ ├── javavm │ │ ├── c │ │ │ ├── jvmcue.c │ │ │ ├── jvmld.c │ │ │ ├── jvmmisc.c │ │ │ ├── jvmmod.c │ │ │ ├── jvmsupp.c │ │ │ ├── jvmsym.c │ │ │ └── jvmtype.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── h │ │ │ └── jvmdip.h │ │ ├── javavm.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── qnxi86 │ │ │ └── makefile │ │ └── wini86 │ │ │ └── makefile │ ├── lang.ctl │ ├── mapsym │ │ ├── bootmake │ │ ├── c │ │ │ ├── msymcue.c │ │ │ ├── msymld.c │ │ │ ├── msymmisc.c │ │ │ ├── msymmod.c │ │ │ ├── msymsym.c │ │ │ └── msymtype.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── h │ │ │ └── msym.h │ │ ├── linux386 │ │ │ └── makefile │ │ ├── mapsym.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── rdos386 │ │ │ └── makefile │ │ ├── util │ │ │ ├── dump.mif │ │ │ ├── nt386 │ │ │ │ └── makefile │ │ │ ├── os2386 │ │ │ │ └── makefile │ │ │ └── symdump.c │ │ ├── version.rc │ │ └── wini86 │ │ │ └── makefile │ ├── skel │ │ ├── c │ │ │ ├── skelcue.c │ │ │ ├── skelld.c │ │ │ ├── skelmisc.c │ │ │ ├── skelmod.c │ │ │ ├── skelsym.c │ │ │ └── skeltype.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── h │ │ │ └── skel.h │ │ ├── linux386 │ │ │ └── makefile │ │ ├── nt386 │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── qnx386 │ │ │ └── makefile │ │ ├── skel.mif │ │ └── wini86 │ │ │ └── makefile │ └── watcom │ │ ├── bootmake │ │ ├── c │ │ ├── wataddr.c │ │ ├── watdmnd.c │ │ ├── watgbl.c │ │ ├── watlcl.c │ │ ├── watldsym.c │ │ ├── watlnum.c │ │ ├── watloc.c │ │ ├── watmisc.c │ │ ├── watmod.c │ │ └── wattype.c │ │ ├── dos386 │ │ └── makefile │ │ ├── h │ │ ├── dbcue.h │ │ ├── dbginfo.h │ │ ├── dipwat.h │ │ ├── watlcl.h │ │ ├── watloc.h │ │ └── wattype.h │ │ ├── linux386 │ │ └── makefile │ │ ├── nt386 │ │ └── makefile │ │ ├── ntaxp │ │ └── makefile │ │ ├── os2386 │ │ └── makefile │ │ ├── os2i86 │ │ └── makefile │ │ ├── qnx386 │ │ └── makefile │ │ ├── rdos386 │ │ └── makefile │ │ ├── version.rc │ │ ├── watcom.mif │ │ └── wini86 │ │ └── makefile ├── dmpobj │ ├── boot.ctl │ ├── bootmake │ ├── c │ │ ├── dmpobj.c │ │ ├── objread.c │ │ ├── output.c │ │ └── process.c │ ├── dosi86 │ │ └── makefile │ ├── exever.rc │ ├── files.dat │ ├── h │ │ └── dmpobj.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── linuxmps │ │ └── makefile │ ├── master.mif │ ├── notes.txt │ ├── nt386 │ │ └── makefile │ └── os2386 │ │ └── makefile ├── dwarf │ ├── dr │ │ ├── c │ │ │ ├── drarange.c │ │ │ ├── drdecnam.c │ │ │ ├── drenum.c │ │ │ ├── drfdkids.c │ │ │ ├── drgetref.c │ │ │ ├── drgettab.c │ │ │ ├── drinfo.c │ │ │ ├── drinit.c │ │ │ ├── drline.c │ │ │ ├── drloc.c │ │ │ ├── drpubnam.c │ │ │ ├── drscope.c │ │ │ ├── drsearch.c │ │ │ ├── drstack.c │ │ │ ├── drtype.c │ │ │ ├── drutils.c │ │ │ ├── virtmem.c │ │ │ └── virtstub.c │ │ ├── client.mif │ │ ├── dr.mif │ │ ├── h │ │ │ ├── dr.h │ │ │ ├── drarange.h │ │ │ ├── drdecnam.h │ │ │ ├── drenum.h │ │ │ ├── drfdkids.h │ │ │ ├── drgetref.h │ │ │ ├── drgettab.h │ │ │ ├── drinfo.h │ │ │ ├── drinit.h │ │ │ ├── drline.h │ │ │ ├── drloc.h │ │ │ ├── drmod.h │ │ │ ├── drpriv.h │ │ │ ├── drpubnam.h │ │ │ ├── drrtns.h │ │ │ ├── drscope.h │ │ │ ├── drsearch.h │ │ │ ├── drsrchdf.h │ │ │ ├── drstack.h │ │ │ ├── drtype.h │ │ │ ├── drutils.h │ │ │ ├── stack.h │ │ │ └── virtmem.h │ │ ├── master.mif │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── osi386 │ │ │ └── makefile │ │ ├── osi386vm │ │ │ └── makefile │ │ ├── osiaxp │ │ │ └── makefile │ │ ├── osiaxpvm │ │ │ └── makefile │ │ ├── qnx386 │ │ │ └── makefile │ │ └── wini86 │ │ │ └── makefile │ ├── dw │ │ ├── boot.ctl │ │ ├── bootmake │ │ ├── c │ │ │ ├── dwabbrev.c │ │ │ ├── dwarange.c │ │ │ ├── dwcarve.c │ │ │ ├── dwdecl.c │ │ │ ├── dwdie.c │ │ │ ├── dwgen.c │ │ │ ├── dwhandle.c │ │ │ ├── dwinfo.c │ │ │ ├── dwline.c │ │ │ ├── dwlngen.c │ │ │ ├── dwloc.c │ │ │ ├── dwmac.c │ │ │ ├── dwmakeab.c │ │ │ ├── dwmem.c │ │ │ ├── dwname.c │ │ │ ├── dwrefer.c │ │ │ ├── dwsym.c │ │ │ ├── dwtype.c │ │ │ ├── dwutils.c │ │ │ ├── testcli.c │ │ │ └── testtest.c │ │ ├── client.mif │ │ ├── doc │ │ │ ├── c.dct │ │ │ ├── cgdlay.gml │ │ │ ├── cgdps.opt │ │ │ ├── dwdoc.gml │ │ │ ├── extensio.txt │ │ │ ├── fmtcgdoc.bat │ │ │ ├── head.ps │ │ │ ├── pr.bat │ │ │ ├── refstate.txt │ │ │ └── tail.ps │ │ ├── dosi86 │ │ │ └── makefile │ │ ├── dw.mif │ │ ├── h │ │ │ ├── dw.h │ │ │ ├── dwabbrev.h │ │ │ ├── dwabort.h │ │ │ ├── dwarange.h │ │ │ ├── dwassert.h │ │ │ ├── dwcarve.h │ │ │ ├── dwcnf.h │ │ │ ├── dwdecl.h │ │ │ ├── dwdie.h │ │ │ ├── dwhandle.h │ │ │ ├── dwinfo.h │ │ │ ├── dwline.h │ │ │ ├── dwloc.h │ │ │ ├── dwmac.h │ │ │ ├── dwmem.h │ │ │ ├── dwname.h │ │ │ ├── dwpriv.h │ │ │ ├── dwrefer.h │ │ │ ├── dwsym.h │ │ │ ├── dwtype.h │ │ │ ├── dwutils.h │ │ │ └── testcli.h │ │ ├── nt386.dll │ │ │ └── makefile │ │ ├── ntaxp.dll │ │ │ └── makefile │ │ ├── osi386 │ │ │ └── makefile │ │ ├── osiaxp │ │ │ └── makefile │ │ ├── osimps │ │ │ └── makefile │ │ └── todo.lst │ ├── lang.ctl │ ├── prereq.ctl │ └── util │ │ ├── c │ │ ├── build.c │ │ ├── dwdump.c │ │ ├── hexit.c │ │ ├── main.c │ │ └── testdump.c │ │ ├── h │ │ └── client.h │ │ ├── linux386 │ │ └── makefile │ │ ├── nt386 │ │ └── makefile │ │ ├── os2386 │ │ └── makefile │ │ └── util.mif ├── editdll │ ├── apptest │ │ ├── apptest.c │ │ ├── apptest.lnk │ │ └── makefile │ ├── cw │ │ ├── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── version.rc │ │ ├── weditcw.c │ │ ├── weditcw.h │ │ └── wini86 │ │ │ └── makefile │ ├── epm │ │ ├── epmlink.c │ │ ├── epmspy.c │ │ ├── epmtest.c │ │ └── makefile │ ├── files.dat │ ├── lang.ctl │ ├── viw │ │ ├── mif │ │ │ └── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── version.rc │ │ ├── weditviw.c │ │ └── wini86 │ │ │ └── makefile │ ├── wedit.doc │ └── wedit.h ├── emu │ ├── asm │ │ ├── 386inite.asm │ │ ├── 386stub.asm │ │ ├── emu387.asm │ │ ├── fdld386.asm │ │ ├── flda386.asm │ │ ├── fldc386.asm │ │ ├── fldd386.asm │ │ ├── fldm386.asm │ │ ├── fsld386.asm │ │ ├── i4ld386.asm │ │ ├── i8ld386.asm │ │ ├── ldfd386.asm │ │ ├── ldfs386.asm │ │ ├── ldi4386.asm │ │ ├── ldi8386.asm │ │ └── sqrt386.asm │ ├── dos386 │ │ └── makefile │ ├── files.dat │ ├── h │ │ └── emu.h │ ├── inc │ │ ├── 386atan.inc │ │ ├── 386f2xm1.inc │ │ ├── 386fpemu.inc │ │ ├── 386fprem.inc │ │ ├── 386fxam.inc │ │ ├── 386log.inc │ │ ├── 386poly.inc │ │ ├── 386round.inc │ │ ├── 386sind.inc │ │ ├── 386trig.inc │ │ ├── consts.inc │ │ ├── fpconsts.inc │ │ ├── fpubits.inc │ │ ├── fpucc.inc │ │ ├── memops.inc │ │ ├── stkops.inc │ │ ├── tagtab.inc │ │ ├── tentab.inc │ │ ├── win30vxd.inc │ │ └── xception.inc │ ├── lang.ctl │ ├── master.mif │ ├── qnx386 │ │ └── makefile │ ├── stub386 │ │ └── makefile │ └── win386 │ │ └── makefile ├── emu86 │ ├── asm │ │ ├── dosinit.asm │ │ ├── emu8087.asm │ │ ├── emustub.asm │ │ ├── fdld086.asm │ │ ├── flda086.asm │ │ ├── fldc086.asm │ │ ├── fldd086.asm │ │ ├── fldm086.asm │ │ ├── fpe86.asm │ │ ├── fsld086.asm │ │ ├── i4ld086.asm │ │ ├── i8ld086.asm │ │ ├── initemu.asm │ │ ├── initemu2.asm │ │ ├── initemuq.asm │ │ ├── initemuw.asm │ │ ├── ldfd086.asm │ │ ├── ldfs086.asm │ │ ├── ldi4086.asm │ │ ├── ldi8086.asm │ │ └── sqrt086.asm │ ├── c │ │ ├── fpeqnx.c │ │ ├── hook8087.c │ │ ├── qemu87.c │ │ └── qnxemu87.c │ ├── dosi86 │ │ └── makefile │ ├── emu87.u │ ├── files.dat │ ├── h │ │ └── emu.h │ ├── inc │ │ ├── cmpconst.inc │ │ ├── e86atan.inc │ │ ├── e86f2xm1.inc │ │ ├── e86fprem.inc │ │ ├── e86fxam.inc │ │ ├── e86log.inc │ │ ├── e86poly.inc │ │ ├── e86round.inc │ │ ├── e86sin.inc │ │ ├── fpe86.inc │ │ ├── memops.inc │ │ ├── sindata.inc │ │ └── stkops.inc │ ├── lang.ctl │ ├── master.mif │ ├── os2i86 │ │ └── makefile │ ├── qnx386 │ │ └── makefile │ ├── qnxi86 │ │ └── makefile │ ├── stubi86 │ │ └── makefile │ └── wini86 │ │ └── makefile ├── exedump │ ├── boot.ctl │ ├── bootmake │ ├── c │ │ ├── coff.c │ │ ├── d16mexe.c │ │ ├── dosexe.c │ │ ├── dumpcv.c │ │ ├── dumphll.c │ │ ├── dumpwv.c │ │ ├── elfexe.c │ │ ├── machoexe.c │ │ ├── novexe.c │ │ ├── os2exe.c │ │ ├── peexe.c │ │ ├── pharexe.c │ │ ├── qnxexe.c │ │ ├── typewv.c │ │ ├── wdata.c │ │ ├── wdfix.c │ │ ├── wdglb.c │ │ ├── wdio.c │ │ ├── wdmp.c │ │ ├── wdprs.c │ │ ├── wdres.c │ │ ├── wdseg.c │ │ ├── wdtab.c │ │ ├── wdwarf.c │ │ ├── wline.c │ │ ├── wperes.c │ │ ├── wpetbls.c │ │ └── wsect.c │ ├── dosi86 │ │ └── makefile │ ├── exever.rc │ ├── files.dat │ ├── h │ │ ├── dumpwv.h │ │ ├── wdfunc.h │ │ └── wdglb.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── linuxmps │ │ └── makefile │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ └── os2386 │ │ └── makefile ├── f77 │ ├── asmaxp │ │ └── intovfrt.asm │ ├── asmi86 │ │ └── i4mul.asm │ ├── c │ │ ├── blderr.c │ │ ├── btraps.c │ │ ├── chinese.c │ │ ├── csetinfo.c │ │ ├── dbcsutil.c │ │ ├── english.c │ │ ├── errincl.c │ │ ├── errrsrc.c │ │ ├── errrtns.c │ │ ├── errutil.c │ │ ├── fmtboth.c │ │ ├── fmtcnvt.c │ │ ├── fmtscan.c │ │ ├── hexcnv.c │ │ ├── intarith.c │ │ ├── japanese.c │ │ ├── korean.c │ │ ├── lexcmp.c │ │ ├── posback.c │ │ ├── poscc.c │ │ ├── posdat.c │ │ ├── posdel.c │ │ ├── poserr.c │ │ ├── posflush.c │ │ ├── posget.c │ │ ├── posopen.c │ │ ├── posput.c │ │ ├── posrew.c │ │ ├── posseek.c │ │ ├── postrunc.c │ │ ├── sdfile.c │ │ ├── spawn.c │ │ ├── subscr.c │ │ └── substr.c │ ├── f77lib │ │ ├── asm386 │ │ │ ├── c16div7.asm │ │ │ ├── c8div7.asm │ │ │ ├── coread.asm │ │ │ ├── cortns.asm │ │ │ ├── cowrite.asm │ │ │ └── hdr386s.h │ │ ├── asmaxp │ │ │ ├── coread.asm │ │ │ ├── cortns.asm │ │ │ └── cowrite.asm │ │ ├── asmi86 │ │ │ ├── c16div7.asm │ │ │ ├── c8div7.asm │ │ │ ├── coread.asm │ │ │ ├── cortns.asm │ │ │ ├── cowrite.asm │ │ │ ├── cplxabs.asm │ │ │ └── cplxdiv.asm │ │ ├── asmppc │ │ │ ├── coread.asm │ │ │ ├── cortns.asm │ │ │ └── cowrite.asm │ │ ├── c │ │ │ ├── _matherr.c │ │ │ ├── aalloc.c │ │ │ ├── arrayio.c │ │ │ ├── cctrl.c │ │ │ ├── chrutils.c │ │ │ ├── deffname.c │ │ │ ├── errgrp.c │ │ │ ├── errmsg.c │ │ │ ├── errmsg.rc │ │ │ ├── exback.c │ │ │ ├── exclose.c │ │ │ ├── exendf.c │ │ │ ├── exinq.c │ │ │ ├── exopen.c │ │ │ ├── expchk.c │ │ │ ├── exread.c │ │ │ ├── exrew.c │ │ │ ├── exutil.c │ │ │ ├── exwrite.c │ │ │ ├── fdllinit.c │ │ │ ├── fdllterm.c │ │ │ ├── fdutil.c │ │ │ ├── finitdll.c │ │ │ ├── finittrd.c │ │ │ ├── fiosem.c │ │ │ ├── flt86.c │ │ │ ├── fmtrtns.c │ │ │ ├── fptraps.c │ │ │ ├── freein.c │ │ │ ├── freeout.c │ │ │ ├── ftermdll.c │ │ │ ├── ftermtrd.c │ │ │ ├── fthrdini.c │ │ │ ├── ftrdinit.c │ │ │ ├── ftrdterm.c │ │ │ ├── fwinmain.c │ │ │ ├── ifile.c │ │ │ ├── ifns │ │ │ │ ├── ifabs.c │ │ │ │ ├── ifacos.c │ │ │ │ ├── ifaimag.c │ │ │ │ ├── ifaint.c │ │ │ │ ├── ifalgama.c │ │ │ │ ├── ifalog.c │ │ │ │ ├── ifalog10.c │ │ │ │ ├── ifamax0.c │ │ │ │ ├── ifamax1.c │ │ │ │ ├── ifamin0.c │ │ │ │ ├── ifamin1.c │ │ │ │ ├── ifamod.c │ │ │ │ ├── ifanint.c │ │ │ │ ├── ifasin.c │ │ │ │ ├── ifatan.c │ │ │ │ ├── ifatan2.c │ │ │ │ ├── ifbtest.c │ │ │ │ ├── ifcabs.c │ │ │ │ ├── ifccos.c │ │ │ │ ├── ifcdabs.c │ │ │ │ ├── ifcdcos.c │ │ │ │ ├── ifcdexp.c │ │ │ │ ├── ifcdlog.c │ │ │ │ ├── ifcdsin.c │ │ │ │ ├── ifcdsqrt.c │ │ │ │ ├── ifcexp.c │ │ │ │ ├── ifchar.c │ │ │ │ ├── ifclog.c │ │ │ │ ├── ifconjg.c │ │ │ │ ├── ifcos.c │ │ │ │ ├── ifcosh.c │ │ │ │ ├── ifcotan.c │ │ │ │ ├── ifcqabs.c │ │ │ │ ├── ifcqcos.c │ │ │ │ ├── ifcqexp.c │ │ │ │ ├── ifcqlog.c │ │ │ │ ├── ifcqsin.c │ │ │ │ ├── ifcqsqrt.c │ │ │ │ ├── ifcsin.c │ │ │ │ ├── ifcsqrt.c │ │ │ │ ├── ifdabs.c │ │ │ │ ├── ifdacos.c │ │ │ │ ├── ifdasin.c │ │ │ │ ├── ifdatan.c │ │ │ │ ├── ifdatan2.c │ │ │ │ ├── ifdconjg.c │ │ │ │ ├── ifdcos.c │ │ │ │ ├── ifdcosh.c │ │ │ │ ├── ifdcotan.c │ │ │ │ ├── ifddim.c │ │ │ │ ├── ifderf.c │ │ │ │ ├── ifderfc.c │ │ │ │ ├── ifderfdt.c │ │ │ │ ├── ifdexp.c │ │ │ │ ├── ifdgamma.c │ │ │ │ ├── ifdim.c │ │ │ │ ├── ifdimag.c │ │ │ │ ├── ifdint.c │ │ │ │ ├── ifdlgama.c │ │ │ │ ├── ifdlog.c │ │ │ │ ├── ifdlog10.c │ │ │ │ ├── ifdmax1.c │ │ │ │ ├── ifdmin1.c │ │ │ │ ├── ifdmod.c │ │ │ │ ├── ifdnint.c │ │ │ │ ├── ifdprod.c │ │ │ │ ├── ifdsign.c │ │ │ │ ├── ifdsin.c │ │ │ │ ├── ifdsinh.c │ │ │ │ ├── ifdsqrt.c │ │ │ │ ├── ifdtan.c │ │ │ │ ├── ifdtanh.c │ │ │ │ ├── iferf.c │ │ │ │ ├── iferfc.c │ │ │ │ ├── ifexp.c │ │ │ │ ├── ifgamma.c │ │ │ │ ├── ifi1abs.c │ │ │ │ ├── ifi1and.c │ │ │ │ ├── ifi1bchg.c │ │ │ │ ├── ifi1bclr.c │ │ │ │ ├── ifi1bset.c │ │ │ │ ├── ifi1btst.c │ │ │ │ ├── ifi1dim.c │ │ │ │ ├── ifi1eor.c │ │ │ │ ├── ifi1lshf.c │ │ │ │ ├── ifi1max0.c │ │ │ │ ├── ifi1min0.c │ │ │ │ ├── ifi1mod.c │ │ │ │ ├── ifi1not.c │ │ │ │ ├── ifi1or.c │ │ │ │ ├── ifi1rshf.c │ │ │ │ ├── ifi1sha.c │ │ │ │ ├── ifi1shc.c │ │ │ │ ├── ifi1shft.c │ │ │ │ ├── ifi1shl.c │ │ │ │ ├── ifi1sign.c │ │ │ │ ├── ifi2abs.c │ │ │ │ ├── ifi2and.c │ │ │ │ ├── ifi2bchg.c │ │ │ │ ├── ifi2bclr.c │ │ │ │ ├── ifi2bset.c │ │ │ │ ├── ifi2btst.c │ │ │ │ ├── ifi2dim.c │ │ │ │ ├── ifi2eor.c │ │ │ │ ├── ifi2lshf.c │ │ │ │ ├── ifi2max0.c │ │ │ │ ├── ifi2min0.c │ │ │ │ ├── ifi2mod.c │ │ │ │ ├── ifi2not.c │ │ │ │ ├── ifi2or.c │ │ │ │ ├── ifi2rshf.c │ │ │ │ ├── ifi2sha.c │ │ │ │ ├── ifi2shc.c │ │ │ │ ├── ifi2shft.c │ │ │ │ ├── ifi2shl.c │ │ │ │ ├── ifi2sign.c │ │ │ │ ├── ifiabs.c │ │ │ │ ├── ifiand.c │ │ │ │ ├── ifibchng.c │ │ │ │ ├── ifibclr.c │ │ │ │ ├── ifibset.c │ │ │ │ ├── ifichar.c │ │ │ │ ├── ifidim.c │ │ │ │ ├── ifidnint.c │ │ │ │ ├── ifieor.c │ │ │ │ ├── ifindex.c │ │ │ │ ├── ifior.c │ │ │ │ ├── ifiqnint.c │ │ │ │ ├── ifisha.c │ │ │ │ ├── ifishc.c │ │ │ │ ├── ifishft.c │ │ │ │ ├── ifishl.c │ │ │ │ ├── ifisign.c │ │ │ │ ├── iflen.c │ │ │ │ ├── iflentrm.c │ │ │ │ ├── iflge.c │ │ │ │ ├── iflgt.c │ │ │ │ ├── iflle.c │ │ │ │ ├── ifllt.c │ │ │ │ ├── iflshift.c │ │ │ │ ├── ifmax0.c │ │ │ │ ├── ifmax1.c │ │ │ │ ├── ifmin0.c │ │ │ │ ├── ifmin1.c │ │ │ │ ├── ifmod.c │ │ │ │ ├── ifnint.c │ │ │ │ ├── ifnot.c │ │ │ │ ├── ifqabs.c │ │ │ │ ├── ifqacos.c │ │ │ │ ├── ifqasin.c │ │ │ │ ├── ifqatan.c │ │ │ │ ├── ifqatan2.c │ │ │ │ ├── ifqconjg.c │ │ │ │ ├── ifqcos.c │ │ │ │ ├── ifqcosh.c │ │ │ │ ├── ifqcotan.c │ │ │ │ ├── ifqdim.c │ │ │ │ ├── ifqerf.c │ │ │ │ ├── ifqerfc.c │ │ │ │ ├── ifqerfdt.c │ │ │ │ ├── ifqexp.c │ │ │ │ ├── ifqgamma.c │ │ │ │ ├── ifqimag.c │ │ │ │ ├── ifqint.c │ │ │ │ ├── ifqlgama.c │ │ │ │ ├── ifqlog.c │ │ │ │ ├── ifqlog10.c │ │ │ │ ├── ifqmax1.c │ │ │ │ ├── ifqmin1.c │ │ │ │ ├── ifqmod.c │ │ │ │ ├── ifqnint.c │ │ │ │ ├── ifqprod.c │ │ │ │ ├── ifqsign.c │ │ │ │ ├── ifqsin.c │ │ │ │ ├── ifqsinh.c │ │ │ │ ├── ifqsqrt.c │ │ │ │ ├── ifqtan.c │ │ │ │ ├── ifqtanh.c │ │ │ │ ├── ifrshift.c │ │ │ │ ├── ifsign.c │ │ │ │ ├── ifsin.c │ │ │ │ ├── ifsinh.c │ │ │ │ ├── ifsqrt.c │ │ │ │ ├── iftan.c │ │ │ │ ├── iftanh.c │ │ │ │ ├── xfamax0.c │ │ │ │ ├── xfamax1.c │ │ │ │ ├── xfamin0.c │ │ │ │ ├── xfamin1.c │ │ │ │ ├── xfdmax1.c │ │ │ │ ├── xfdmin1.c │ │ │ │ ├── xfi1max0.c │ │ │ │ ├── xfi1min0.c │ │ │ │ ├── xfi2max0.c │ │ │ │ ├── xfi2min0.c │ │ │ │ ├── xfmax0.c │ │ │ │ ├── xfmax1.c │ │ │ │ ├── xfmin0.c │ │ │ │ ├── xfmin1.c │ │ │ │ ├── xfqmax1.c │ │ │ │ └── xfqmin1.c │ │ │ ├── initcc.c │ │ │ ├── initchi.c │ │ │ ├── initcoma.c │ │ │ ├── initeng.c │ │ │ ├── initerr.c │ │ │ ├── initff.c │ │ │ ├── initftrd.c │ │ │ ├── initjap.c │ │ │ ├── initkor.c │ │ │ ├── initrsrc.c │ │ │ ├── inqbsize.c │ │ │ ├── ioerr.c │ │ │ ├── ioinit.c │ │ │ ├── iomain.c │ │ │ ├── logfile.c │ │ │ ├── math │ │ │ │ ├── divc16.c │ │ │ │ ├── divc20.c │ │ │ │ ├── divc8.c │ │ │ │ ├── mulc16.c │ │ │ │ ├── mulc20.c │ │ │ │ ├── mulc8.c │ │ │ │ ├── powc16.c │ │ │ │ ├── powc20.c │ │ │ │ ├── powc8.c │ │ │ │ ├── powic16.c │ │ │ │ ├── powic32.c │ │ │ │ ├── powic8.c │ │ │ │ ├── powii.c │ │ │ │ ├── powri.c │ │ │ │ ├── powrr.c │ │ │ │ └── powxi.c │ │ │ ├── nmlio.c │ │ │ ├── pause.c │ │ │ ├── rcat.c │ │ │ ├── rdata.c │ │ │ ├── rdutils.c │ │ │ ├── rdwr.c │ │ │ ├── realvec.c │ │ │ ├── rfmtemit.c │ │ │ ├── rfmterr.c │ │ │ ├── rfmtexec.c │ │ │ ├── rfmtinit.c │ │ │ ├── rfmtlog.c │ │ │ ├── rfmttab.c │ │ │ ├── rfmtutil.c │ │ │ ├── rmemmgr.c │ │ │ ├── rmove.c │ │ │ ├── rmsgproc.c │ │ │ ├── rstdio.c │ │ │ ├── rsubscr.c │ │ │ ├── rsubstr.c │ │ │ ├── rtcat.c │ │ │ ├── rterr.c │ │ │ ├── rtinit.c │ │ │ ├── rtinq.c │ │ │ ├── rtlbmain.c │ │ │ ├── rtmain.c │ │ │ ├── rtsysutl.c │ │ │ ├── rttraps.c │ │ │ ├── rtutls.c │ │ │ ├── runmain.c │ │ │ ├── setacc.c │ │ │ ├── setactn.c │ │ │ ├── setblnk.c │ │ │ ├── setbsize.c │ │ │ ├── setcctrl.c │ │ │ ├── setdir.c │ │ │ ├── setend.c │ │ │ ├── seterr.c │ │ │ ├── setexst.c │ │ │ ├── setfile.c │ │ │ ├── setfmt.c │ │ │ ├── setfmtd.c │ │ │ ├── setform.c │ │ │ ├── setintl.c │ │ │ ├── setiocb.c │ │ │ ├── setioflg.c │ │ │ ├── setios.c │ │ │ ├── setlen.c │ │ │ ├── setname.c │ │ │ ├── setnmd.c │ │ │ ├── setnml.c │ │ │ ├── setnofmt.c │ │ │ ├── setnrec.c │ │ │ ├── setnumb.c │ │ │ ├── setopen.c │ │ │ ├── setrec.c │ │ │ ├── setrecfm.c │ │ │ ├── setrecl.c │ │ │ ├── setseq.c │ │ │ ├── setshare.c │ │ │ ├── setstat.c │ │ │ ├── settrace.c │ │ │ ├── setunfmt.c │ │ │ ├── setunit.c │ │ │ ├── stdio.c │ │ │ ├── stop.c │ │ │ ├── stracc.c │ │ │ ├── sysinq.c │ │ │ ├── thrdutil.c │ │ │ ├── ufns │ │ │ │ ├── fargs.c │ │ │ │ ├── fdefwin.c │ │ │ │ ├── fexit.c │ │ │ │ ├── fgetcmd.c │ │ │ │ ├── fgetenv.c │ │ │ │ ├── fgrowhdl.c │ │ │ │ ├── fhandle.c │ │ │ │ ├── filesize.c │ │ │ │ ├── fintr.c │ │ │ │ ├── flushuni.c │ │ │ │ ├── fnxtrecl.c │ │ │ │ ├── fsignal.c │ │ │ │ ├── fspawn.c │ │ │ │ ├── fsystem.c │ │ │ │ ├── fthread.c │ │ │ │ ├── ftracebk.c │ │ │ │ ├── getdat.c │ │ │ │ ├── gettim.c │ │ │ │ ├── seekunit.c │ │ │ │ ├── urand.c │ │ │ │ └── winapi.c │ │ │ ├── undefcg.c │ │ │ ├── unfmtin.c │ │ │ ├── unfmtout.c │ │ │ ├── unfmtutl.c │ │ │ └── wrutils.c │ │ ├── flags.mif │ │ ├── h │ │ │ ├── deffname.h │ │ │ ├── errcod.h │ │ │ ├── fapptype.h │ │ │ ├── flagdefn.h │ │ │ ├── fmath.h │ │ │ ├── fmthcode.h │ │ │ ├── ifenv.h │ │ │ ├── iotype.h │ │ │ ├── lgadv.h │ │ │ ├── pgmacc.h │ │ │ ├── ptypes.h │ │ │ ├── ptypes.inc │ │ │ ├── rmemmgr.h │ │ │ ├── rundat.h │ │ │ ├── rundefn.h │ │ │ ├── switch.h │ │ │ ├── trcback.h │ │ │ └── undefrtn.h │ │ ├── include.mif │ │ ├── lang.ctl │ │ ├── linux.386 │ │ │ ├── mf_r │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ └── mf_s │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── linux.387 │ │ │ ├── mf_r │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ └── mf_s │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── linux.ppc │ │ │ └── _s │ │ │ │ └── makefile │ │ ├── master.mif │ │ ├── msdos.086 │ │ │ ├── ml │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ └── mm │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── msdos.087 │ │ │ ├── ml │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ └── mm │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── msdos.386 │ │ │ ├── ms_r │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ └── ms_s │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── msdos.387 │ │ │ ├── ms_r │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ └── ms_s │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── netware.386 │ │ │ └── ms_s │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── netware.387 │ │ │ └── ms_s │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── objects.mif │ │ ├── objlist.mif │ │ ├── os2.286 │ │ │ ├── ml │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ ├── ml_mt │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ └── mm │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── os2.287 │ │ │ ├── ml │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ └── mm │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── os2.386 │ │ │ ├── mf_r │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ └── mf_s │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── os2.387 │ │ │ ├── mf_r │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ └── mf_s │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── os2.ppc │ │ │ └── _s │ │ │ │ └── makefile │ │ ├── windows.086 │ │ │ ├── ml │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ └── mm │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── windows.087 │ │ │ ├── ml │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ └── mm │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── windows.386 │ │ │ ├── mf_r │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ └── mf_s │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── windows.387 │ │ │ ├── mf_r │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ └── mf_s │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── winnt.386 │ │ │ ├── mf_r │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ └── mf_s │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── winnt.387 │ │ │ ├── mf_r │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ │ └── mf_s │ │ │ │ ├── makefile │ │ │ │ └── model.inc │ │ ├── winnt.axp │ │ │ └── _s │ │ │ │ └── makefile │ │ └── winnt.ppc │ │ │ └── _s │ │ │ └── makefile │ ├── files.dat │ ├── h │ │ ├── axp_regs.h │ │ ├── cioconst.h │ │ ├── csetinfo.h │ │ ├── dattyp.h │ │ ├── ems.h │ │ ├── errrtns.h │ │ ├── falloc.h │ │ ├── fio.h │ │ ├── fltcnv.h │ │ ├── fmtdat.h │ │ ├── fmtdef.h │ │ ├── fmtdefn.h │ │ ├── fmterr.h │ │ ├── fmtstg.h │ │ ├── fmttab.h │ │ ├── format.h │ │ ├── ftextfun.h │ │ ├── ftextvar.h │ │ ├── fthread.h │ │ ├── ftnio.h │ │ ├── ftnstd.h │ │ ├── intcnv.h │ │ ├── macro.h │ │ ├── nmlinfo.h │ │ ├── posio.h │ │ ├── ppc_regs.h │ │ ├── prmtypes.h │ │ ├── ptypdefn.h │ │ ├── rtenv.h │ │ ├── scan.h │ │ ├── scb.h │ │ ├── sdfile.h │ │ ├── sdmacro.h │ │ ├── standard.h │ │ ├── symdefs.h │ │ ├── sysbuff.h │ │ ├── target.h │ │ ├── tddattyp.h │ │ ├── undef.h │ │ ├── units.h │ │ └── xfflags.h │ ├── help │ │ ├── f77ext.doc │ │ └── fortran.hlp │ ├── lang.ctl │ ├── regress │ │ ├── c │ │ │ └── chk_exec.c │ │ ├── environ.mif │ │ ├── makefile │ │ └── nist │ │ │ ├── error.chk │ │ │ ├── expected │ │ │ ├── fm001.exp │ │ │ ├── fm002.exp │ │ │ ├── fm003.exp │ │ │ ├── fm004.exp │ │ │ ├── fm005.exp │ │ │ ├── fm006.exp │ │ │ ├── fm007.exp │ │ │ ├── fm008.exp │ │ │ ├── fm009.exp │ │ │ ├── fm010.exp │ │ │ ├── fm011.exp │ │ │ ├── fm012.exp │ │ │ ├── fm013.exp │ │ │ ├── fm014.exp │ │ │ ├── fm016.exp │ │ │ ├── fm017.exp │ │ │ ├── fm018.exp │ │ │ ├── fm019.exp │ │ │ ├── fm020.exp │ │ │ ├── fm021.exp │ │ │ ├── fm022.exp │ │ │ ├── fm023.exp │ │ │ ├── fm024.exp │ │ │ ├── fm025.exp │ │ │ ├── fm026.exp │ │ │ ├── fm028.exp │ │ │ ├── fm030.exp │ │ │ ├── fm031.exp │ │ │ ├── fm032.exp │ │ │ ├── fm033.exp │ │ │ ├── fm034.exp │ │ │ ├── fm035.exp │ │ │ ├── fm036.exp │ │ │ ├── fm037.exp │ │ │ ├── fm038.exp │ │ │ ├── fm039.exp │ │ │ ├── fm040.exp │ │ │ ├── fm041.exp │ │ │ ├── fm042.exp │ │ │ ├── fm043.exp │ │ │ ├── fm044.exp │ │ │ ├── fm045.exp │ │ │ ├── fm050.exp │ │ │ ├── fm056.exp │ │ │ ├── fm060.exp │ │ │ ├── fm061.exp │ │ │ ├── fm062.exp │ │ │ ├── fm080.exp │ │ │ ├── fm097.exp │ │ │ ├── fm098.exp │ │ │ ├── fm099.exp │ │ │ ├── fm100.exp │ │ │ ├── fm101.exp │ │ │ ├── fm102.exp │ │ │ ├── fm103.exp │ │ │ ├── fm104.exp │ │ │ ├── fm105.exp │ │ │ ├── fm106.exp │ │ │ ├── fm107.exp │ │ │ ├── fm108.exp │ │ │ ├── fm109.exp │ │ │ ├── fm110.exp │ │ │ ├── fm111.exp │ │ │ ├── fm200.exp │ │ │ ├── fm201.exp │ │ │ ├── fm202.exp │ │ │ ├── fm203.exp │ │ │ ├── fm204.exp │ │ │ ├── fm205.exp │ │ │ ├── fm251.exp │ │ │ ├── fm252.exp │ │ │ ├── fm253.exp │ │ │ ├── fm254.exp │ │ │ ├── fm255.exp │ │ │ ├── fm256.exp │ │ │ ├── fm257.exp │ │ │ ├── fm258.exp │ │ │ ├── fm259.exp │ │ │ ├── fm260.exp │ │ │ ├── fm261.exp │ │ │ ├── fm300.exp │ │ │ ├── fm301.exp │ │ │ ├── fm302.exp │ │ │ ├── fm306.exp │ │ │ ├── fm307.exp │ │ │ ├── fm308.exp │ │ │ ├── fm311.exp │ │ │ ├── fm317.exp │ │ │ ├── fm328.exp │ │ │ ├── fm351.exp │ │ │ ├── fm352.exp │ │ │ ├── fm353.exp │ │ │ ├── fm354.exp │ │ │ ├── fm355.exp │ │ │ ├── fm356.exp │ │ │ ├── fm357.exp │ │ │ ├── fm359.exp │ │ │ ├── fm360.exp │ │ │ ├── fm361.exp │ │ │ ├── fm362.exp │ │ │ ├── fm363.exp │ │ │ ├── fm364.exp │ │ │ ├── fm368.exp │ │ │ ├── fm369.exp │ │ │ ├── fm370.exp │ │ │ ├── fm371.exp │ │ │ ├── fm372.exp │ │ │ ├── fm373.exp │ │ │ ├── fm374.exp │ │ │ ├── fm375.exp │ │ │ ├── fm376.exp │ │ │ ├── fm377.exp │ │ │ ├── fm378.exp │ │ │ ├── fm379.exp │ │ │ ├── fm401.exp │ │ │ ├── fm402.exp │ │ │ ├── fm403.exp │ │ │ ├── fm404.exp │ │ │ ├── fm405.exp │ │ │ ├── fm406.exp │ │ │ ├── fm407.exp │ │ │ ├── fm411.exp │ │ │ ├── fm413.exp │ │ │ ├── fm500.exp │ │ │ ├── fm503.exp │ │ │ ├── fm506.exp │ │ │ ├── fm509.exp │ │ │ ├── fm514.exp │ │ │ ├── fm517.exp │ │ │ ├── fm520.exp │ │ │ ├── fm700.exp │ │ │ ├── fm701.exp │ │ │ ├── fm710.exp │ │ │ ├── fm711.exp │ │ │ ├── fm715.exp │ │ │ ├── fm718.exp │ │ │ ├── fm719.exp │ │ │ ├── fm722.exp │ │ │ ├── fm800.exp │ │ │ ├── fm801.exp │ │ │ ├── fm802.exp │ │ │ ├── fm803.exp │ │ │ ├── fm804.exp │ │ │ ├── fm805.exp │ │ │ ├── fm806.exp │ │ │ ├── fm807.exp │ │ │ ├── fm808.exp │ │ │ ├── fm809.exp │ │ │ ├── fm810.exp │ │ │ ├── fm811.exp │ │ │ ├── fm812.exp │ │ │ ├── fm813.exp │ │ │ ├── fm814.exp │ │ │ ├── fm815.exp │ │ │ ├── fm816.exp │ │ │ ├── fm817.exp │ │ │ ├── fm818.exp │ │ │ ├── fm819.exp │ │ │ ├── fm820.exp │ │ │ ├── fm821.exp │ │ │ ├── fm822.exp │ │ │ ├── fm823.exp │ │ │ ├── fm824.exp │ │ │ ├── fm825.exp │ │ │ ├── fm826.exp │ │ │ ├── fm827.exp │ │ │ ├── fm828.exp │ │ │ ├── fm829.exp │ │ │ ├── fm830.exp │ │ │ ├── fm831.exp │ │ │ ├── fm832.exp │ │ │ ├── fm833.exp │ │ │ ├── fm834.exp │ │ │ ├── fm900.exp │ │ │ ├── fm901.exp │ │ │ ├── fm903.exp │ │ │ ├── fm905.exp │ │ │ ├── fm906.exp │ │ │ ├── fm907.exp │ │ │ ├── fm908.exp │ │ │ ├── fm909.exp │ │ │ ├── fm910.exp │ │ │ ├── fm912.exp │ │ │ ├── fm914.exp │ │ │ ├── fm915.exp │ │ │ ├── fm916.exp │ │ │ ├── fm917.exp │ │ │ ├── fm919.exp │ │ │ ├── fm920.exp │ │ │ ├── fm921.exp │ │ │ ├── fm922.exp │ │ │ └── fm923.exp │ │ │ ├── failed │ │ │ └── fm257.for │ │ │ ├── fm110.dat │ │ │ ├── fm111.dat │ │ │ ├── fm403.dat │ │ │ ├── fm404.dat │ │ │ ├── fm900.dat │ │ │ ├── fm901.dat │ │ │ ├── fm903.dat │ │ │ ├── fm906.dat │ │ │ ├── fm923.dat │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── source │ │ │ ├── fm001.for │ │ │ ├── fm002.for │ │ │ ├── fm003.for │ │ │ ├── fm004.for │ │ │ ├── fm005.for │ │ │ ├── fm006.for │ │ │ ├── fm007.for │ │ │ ├── fm008.for │ │ │ ├── fm009.for │ │ │ ├── fm010.for │ │ │ ├── fm011.for │ │ │ ├── fm012.for │ │ │ ├── fm013.for │ │ │ ├── fm014.for │ │ │ ├── fm016.for │ │ │ ├── fm017.for │ │ │ ├── fm018.for │ │ │ ├── fm019.for │ │ │ ├── fm020.for │ │ │ ├── fm021.for │ │ │ ├── fm022.for │ │ │ ├── fm023.for │ │ │ ├── fm024.for │ │ │ ├── fm025.for │ │ │ ├── fm026.for │ │ │ ├── fm028.for │ │ │ ├── fm030.for │ │ │ ├── fm031.for │ │ │ ├── fm032.for │ │ │ ├── fm033.for │ │ │ ├── fm034.for │ │ │ ├── fm035.for │ │ │ ├── fm036.for │ │ │ ├── fm037.for │ │ │ ├── fm038.for │ │ │ ├── fm039.for │ │ │ ├── fm040.for │ │ │ ├── fm041.for │ │ │ ├── fm042.for │ │ │ ├── fm043.for │ │ │ ├── fm044.for │ │ │ ├── fm045.for │ │ │ ├── fm050.for │ │ │ ├── fm056.for │ │ │ ├── fm060.for │ │ │ ├── fm061.for │ │ │ ├── fm062.for │ │ │ ├── fm080.for │ │ │ ├── fm097.for │ │ │ ├── fm098.for │ │ │ ├── fm099.for │ │ │ ├── fm100.for │ │ │ ├── fm101.for │ │ │ ├── fm102.for │ │ │ ├── fm103.for │ │ │ ├── fm104.for │ │ │ ├── fm105.for │ │ │ ├── fm106.for │ │ │ ├── fm107.for │ │ │ ├── fm108.for │ │ │ ├── fm109.for │ │ │ ├── fm110.for │ │ │ ├── fm111.for │ │ │ ├── fm200.for │ │ │ ├── fm201.for │ │ │ ├── fm202.for │ │ │ ├── fm203.for │ │ │ ├── fm204.for │ │ │ ├── fm205.for │ │ │ ├── fm251.for │ │ │ ├── fm252.for │ │ │ ├── fm253.for │ │ │ ├── fm254.for │ │ │ ├── fm255.for │ │ │ ├── fm256.for │ │ │ ├── fm258.for │ │ │ ├── fm259.for │ │ │ ├── fm260.for │ │ │ ├── fm261.for │ │ │ ├── fm300.for │ │ │ ├── fm301.for │ │ │ ├── fm302.for │ │ │ ├── fm306.for │ │ │ ├── fm307.for │ │ │ ├── fm308.for │ │ │ ├── fm311.for │ │ │ ├── fm317.for │ │ │ ├── fm328.for │ │ │ ├── fm351.for │ │ │ ├── fm352.for │ │ │ ├── fm353.for │ │ │ ├── fm354.for │ │ │ ├── fm355.for │ │ │ ├── fm356.for │ │ │ ├── fm357.for │ │ │ ├── fm359.for │ │ │ ├── fm360.for │ │ │ ├── fm361.for │ │ │ ├── fm362.for │ │ │ ├── fm363.for │ │ │ ├── fm364.for │ │ │ ├── fm368.for │ │ │ ├── fm369.for │ │ │ ├── fm370.for │ │ │ ├── fm371.for │ │ │ ├── fm372.for │ │ │ ├── fm373.for │ │ │ ├── fm374.for │ │ │ ├── fm375.for │ │ │ ├── fm376.for │ │ │ ├── fm377.for │ │ │ ├── fm378.for │ │ │ ├── fm379.for │ │ │ ├── fm401.for │ │ │ ├── fm402.for │ │ │ ├── fm403.for │ │ │ ├── fm404.for │ │ │ ├── fm405.for │ │ │ ├── fm406.for │ │ │ ├── fm407.for │ │ │ ├── fm411.for │ │ │ ├── fm413.for │ │ │ ├── fm500.for │ │ │ ├── fm503.for │ │ │ ├── fm506.for │ │ │ ├── fm509.for │ │ │ ├── fm514.for │ │ │ ├── fm517.for │ │ │ ├── fm520.for │ │ │ ├── fm700.for │ │ │ ├── fm701.for │ │ │ ├── fm710.for │ │ │ ├── fm711.for │ │ │ ├── fm715.for │ │ │ ├── fm718.for │ │ │ ├── fm719.for │ │ │ ├── fm722.for │ │ │ ├── fm800.for │ │ │ ├── fm801.for │ │ │ ├── fm802.for │ │ │ ├── fm803.for │ │ │ ├── fm804.for │ │ │ ├── fm805.for │ │ │ ├── fm806.for │ │ │ ├── fm807.for │ │ │ ├── fm808.for │ │ │ ├── fm809.for │ │ │ ├── fm810.for │ │ │ ├── fm811.for │ │ │ ├── fm812.for │ │ │ ├── fm813.for │ │ │ ├── fm814.for │ │ │ ├── fm815.for │ │ │ ├── fm816.for │ │ │ ├── fm817.for │ │ │ ├── fm818.for │ │ │ ├── fm819.for │ │ │ ├── fm820.for │ │ │ ├── fm821.for │ │ │ ├── fm822.for │ │ │ ├── fm823.for │ │ │ ├── fm824.for │ │ │ ├── fm825.for │ │ │ ├── fm826.for │ │ │ ├── fm827.for │ │ │ ├── fm828.for │ │ │ ├── fm829.for │ │ │ ├── fm830.for │ │ │ ├── fm831.for │ │ │ ├── fm832.for │ │ │ ├── fm833.for │ │ │ ├── fm834.for │ │ │ ├── fm900.for │ │ │ ├── fm901.for │ │ │ ├── fm903.for │ │ │ ├── fm905.for │ │ │ ├── fm906.for │ │ │ ├── fm907.for │ │ │ ├── fm908.for │ │ │ ├── fm909.for │ │ │ ├── fm910.for │ │ │ ├── fm912.for │ │ │ ├── fm914.for │ │ │ ├── fm915.for │ │ │ ├── fm916.for │ │ │ ├── fm917.for │ │ │ ├── fm919.for │ │ │ ├── fm920.for │ │ │ ├── fm921.for │ │ │ ├── fm922.for │ │ │ ├── fm923.for │ │ │ └── positive.mif │ │ │ └── testrun.cmd │ ├── samples │ │ ├── clock │ │ │ ├── clock.fi │ │ │ ├── clock.for │ │ │ └── makefile │ │ ├── clover │ │ │ └── clover.for │ │ ├── colocave │ │ │ ├── aamain.for │ │ │ ├── advdat │ │ │ ├── advent.doc │ │ │ ├── asetup.for │ │ │ ├── asubs.for │ │ │ ├── iors.for │ │ │ ├── makefile │ │ │ ├── makefile.ms │ │ │ ├── newread.txt │ │ │ └── readme │ │ ├── dll │ │ │ ├── dllinit.for │ │ │ ├── dllsamp.for │ │ │ ├── dlltest.for │ │ │ ├── os2 │ │ │ │ └── makefile │ │ │ └── win32 │ │ │ │ └── makefile │ │ ├── files.dat │ │ ├── lang.ctl │ │ ├── life │ │ │ ├── about.dlg │ │ │ ├── about.for │ │ │ ├── array.for │ │ │ ├── blink1.lif │ │ │ ├── blink10.lif │ │ │ ├── blink11.lif │ │ │ ├── blink13.lif │ │ │ ├── blink14.lif │ │ │ ├── blink15.lif │ │ │ ├── blink2.lif │ │ │ ├── blink3.lif │ │ │ ├── blink4.lif │ │ │ ├── blink5.lif │ │ │ ├── blink6.lif │ │ │ ├── blink7.lif │ │ │ ├── blink8.lif │ │ │ ├── blink9.lif │ │ │ ├── blit.for │ │ │ ├── blitbit.for │ │ │ ├── blnkship.lif │ │ │ ├── chktimer.for │ │ │ ├── doio.for │ │ │ ├── dotimer.for │ │ │ ├── double.lif │ │ │ ├── dpuffer.lif │ │ │ ├── error.for │ │ │ ├── escort1.lif │ │ │ ├── escort2.lif │ │ │ ├── filename.for │ │ │ ├── finiarr.fi │ │ │ ├── galaxy.lif │ │ │ ├── getps.for │ │ │ ├── gldrgun.lif │ │ │ ├── glider.lif │ │ │ ├── gui.fi │ │ │ ├── huge.bmp │ │ │ ├── initarr.fi │ │ │ ├── initbd.for │ │ │ ├── initbit.for │ │ │ ├── initmenu.for │ │ │ ├── large.bmp │ │ │ ├── life.fi │ │ │ ├── life.for │ │ │ ├── life.ico │ │ │ ├── life.rc │ │ │ ├── line.lif │ │ │ ├── loadpat.for │ │ │ ├── maindriv.for │ │ │ ├── makefile │ │ │ ├── med.bmp │ │ │ ├── menu.fi │ │ │ ├── menu.h │ │ │ ├── menuitem.for │ │ │ ├── mouse.for │ │ │ ├── name.dlg │ │ │ ├── patmenu.for │ │ │ ├── pattern.for │ │ │ ├── pingpong.lif │ │ │ ├── puffer.lif │ │ │ ├── quad.lif │ │ │ ├── random.for │ │ │ ├── readapat.for │ │ │ ├── readpat.for │ │ │ ├── redraw.for │ │ │ ├── relinq.for │ │ │ ├── rep1.lif │ │ │ ├── repaint.for │ │ │ ├── rules.dlg │ │ │ ├── rules.fi │ │ │ ├── rules.for │ │ │ ├── rules.h │ │ │ ├── seed1.lif │ │ │ ├── seed2.lif │ │ │ ├── seed3.lif │ │ │ ├── seed4.lif │ │ │ ├── setcap.for │ │ │ ├── small.bmp │ │ │ ├── swengine.lif │ │ │ ├── timer.for │ │ │ ├── tiny.bmp │ │ │ ├── triple.lif │ │ │ ├── writpat.for │ │ │ ├── xform.for │ │ │ └── xorreg.for │ │ ├── makefile │ │ ├── mtdll │ │ │ ├── dllsamp.c │ │ │ ├── dllsamp.for │ │ │ ├── load.c │ │ │ ├── makefile │ │ │ ├── mthread.c │ │ │ ├── mthread.for │ │ │ └── testmemb.h │ │ ├── mthread │ │ │ ├── makefile.nt │ │ │ ├── makefile.os2 │ │ │ ├── mthrdnt.for │ │ │ └── mthrdos2.for │ │ ├── os2 │ │ │ ├── calendar.for │ │ │ ├── comm.for │ │ │ ├── fshapes.fi │ │ │ ├── fshapes.for │ │ │ └── rexx │ │ │ │ ├── func1.for │ │ │ │ ├── func2.for │ │ │ │ ├── funcload.fi │ │ │ │ ├── funcload.for │ │ │ │ ├── makefile │ │ │ │ ├── readme.txt │ │ │ │ ├── rxsutils.fi │ │ │ │ ├── rxsutils.for │ │ │ │ └── testdll.cmd │ │ ├── primes │ │ │ ├── makefile │ │ │ ├── primes.dlg │ │ │ ├── primes.fi │ │ │ ├── primes.for │ │ │ ├── primes.h │ │ │ └── read.me │ │ ├── win │ │ │ ├── ellipse.for │ │ │ ├── fwcopy.fi │ │ │ ├── fwcopy.for │ │ │ └── makefile │ │ └── windll │ │ │ ├── cover16.c │ │ │ ├── gen16.for │ │ │ ├── gen16v.for │ │ │ ├── gen32.for │ │ │ ├── gen32v.for │ │ │ ├── makefile │ │ │ ├── vbdll32.for │ │ │ ├── windll.for │ │ │ └── windllv.for │ ├── src │ │ ├── _mark_.fi │ │ ├── _matherr.for │ │ ├── ads │ │ │ ├── adscodes.fi │ │ │ ├── adslib.fi │ │ │ ├── fact.for │ │ │ ├── ol_errno.fi │ │ │ └── rel12 │ │ │ │ ├── ads.fi │ │ │ │ ├── adsapi.fi │ │ │ │ ├── adscodes.fi │ │ │ │ ├── adsdlg.fi │ │ │ │ ├── adsdlgap.fi │ │ │ │ ├── adslib.fi │ │ │ │ ├── cal.fi │ │ │ │ ├── dlgtest.for │ │ │ │ ├── fact.for │ │ │ │ ├── malloc.fi │ │ │ │ ├── ol_errno.fi │ │ │ │ ├── stdlib.fi │ │ │ │ └── string.fi │ │ ├── blackjac.for │ │ ├── blackjac.jpn │ │ ├── dos │ │ │ ├── ansi.for │ │ │ ├── calendar.for │ │ │ ├── dos.fi │ │ │ ├── graph.fi │ │ │ ├── graphapi.fi │ │ │ ├── grdemo1.for │ │ │ ├── grdemo2.for │ │ │ ├── pg.fi │ │ │ ├── pgapi.fi │ │ │ ├── pgdemo.fi │ │ │ └── pgdemo.for │ │ ├── files.dat │ │ ├── fsignal.fi │ │ ├── fsublib.fi │ │ ├── knight.for │ │ ├── knight.jpn │ │ ├── markstub.fi │ │ ├── mathcode.fi │ │ ├── os2 │ │ │ ├── basedef.fi │ │ │ ├── basemid.fi │ │ │ ├── bse.fap │ │ │ ├── bse.fi │ │ │ ├── bsedev.fi │ │ │ ├── bsedos.fap │ │ │ ├── bsedos.fi │ │ │ ├── bseerr.fi │ │ │ ├── bsememf.fi │ │ │ ├── bseord.fi │ │ │ ├── bsesub.fap │ │ │ ├── bsesub.fi │ │ │ ├── bsetib.fi │ │ │ ├── bsexcpt.fi │ │ │ ├── cnrtree.fap │ │ │ ├── cnrtree.fi │ │ │ ├── hmtailor.fi │ │ │ ├── mi.fi │ │ │ ├── os2.fap │ │ │ ├── os2.fi │ │ │ ├── os2def.fap │ │ │ ├── os2def.fi │ │ │ ├── os2nls.fap │ │ │ ├── os2nls.fi │ │ │ ├── pm.fap │ │ │ ├── pm.fi │ │ │ ├── pmbitmap.fi │ │ │ ├── pmddim.fap │ │ │ ├── pmddim.fi │ │ │ ├── pmddim.for │ │ │ ├── pmdev.fap │ │ │ ├── pmdev.fi │ │ │ ├── pmfont.fi │ │ │ ├── pmgpi.fap │ │ │ ├── pmgpi.fi │ │ │ ├── pmgpierr.fi │ │ │ ├── pmhelp.fap │ │ │ ├── pmhelp.fi │ │ │ ├── pmmle.fi │ │ │ ├── pmocodes.fi │ │ │ ├── pmord.fap │ │ │ ├── pmord.fi │ │ │ ├── pmord.for │ │ │ ├── pmpic.fap │ │ │ ├── pmpic.fi │ │ │ ├── pmpicerr.fi │ │ │ ├── pmsei.fap │ │ │ ├── pmsei.fi │ │ │ ├── pmshl.fap │ │ │ ├── pmshl.fi │ │ │ ├── pmshlerr.fi │ │ │ ├── pmspl.fap │ │ │ ├── pmspl.fi │ │ │ ├── pmsplerr.fi │ │ │ ├── pmstddlg.fap │ │ │ ├── pmstddlg.fi │ │ │ ├── pmtypes.fi │ │ │ ├── pmwin.fap │ │ │ ├── pmwin.fi │ │ │ ├── pmwin.for │ │ │ ├── pmwinerr.fi │ │ │ ├── pmwp.fap │ │ │ ├── pmwp.fi │ │ │ ├── pmwperr.fi │ │ │ ├── rexxsaa.fap │ │ │ ├── rexxsaa.fi │ │ │ ├── rexxsaa.for │ │ │ └── rxstring.fi │ │ ├── setjmp.fi │ │ ├── setjmp.for │ │ ├── sieve.for │ │ ├── thread.fi │ │ ├── wc.fi │ │ └── win │ │ │ ├── commdlg.fi │ │ │ ├── win386.fi │ │ │ ├── win3api.fi │ │ │ ├── winapi.fi │ │ │ ├── winatom.fi │ │ │ ├── winbmap.fi │ │ │ ├── wincaret.fi │ │ │ ├── winclip.fi │ │ │ ├── winclpbd.fi │ │ │ ├── wincomm.fi │ │ │ ├── wincoord.fi │ │ │ ├── wincreat.fi │ │ │ ├── wincurs.fi │ │ │ ├── windattr.fi │ │ │ ├── windc.fi │ │ │ ├── windde.fi │ │ │ ├── windebug.fi │ │ │ ├── windefn.fi │ │ │ ├── windev.fi │ │ │ ├── windisp.fi │ │ │ ├── windlg.fi │ │ │ ├── windows.fi │ │ │ ├── windraw.fi │ │ │ ├── windrvr.fi │ │ │ ├── windtool.fi │ │ │ ├── winellps.fi │ │ │ ├── winenv.fi │ │ │ ├── winerror.fi │ │ │ ├── winesc.fi │ │ │ ├── winexec.fi │ │ │ ├── winfile.fi │ │ │ ├── winfont.fi │ │ │ ├── wingdi.fi │ │ │ ├── winhdwr.fi │ │ │ ├── winhook.fi │ │ │ ├── wininfo.fi │ │ │ ├── winini.fi │ │ │ ├── wininput.fi │ │ │ ├── winkanji.fi │ │ │ ├── winline.fi │ │ │ ├── winmap.fi │ │ │ ├── winmem.fi │ │ │ ├── winmenu.fi │ │ │ ├── winmeta.fi │ │ │ ├── winmgr.fi │ │ │ ├── winmodul.fi │ │ │ ├── winmsg.fi │ │ │ ├── winmsgs.fi │ │ │ ├── winoem.fi │ │ │ ├── winopt.fi │ │ │ ├── winpaint.fi │ │ │ ├── winpalet.fi │ │ │ ├── winprop.fi │ │ │ ├── winrect.fi │ │ │ ├── winresrc.fi │ │ │ ├── winrgn.fi │ │ │ ├── winscrol.fi │ │ │ ├── winseg.fi │ │ │ ├── winsound.fi │ │ │ ├── winssi.fi │ │ │ ├── winstr.fi │ │ │ ├── winsysm.fi │ │ │ ├── wintask.fi │ │ │ ├── wintext.fi │ │ │ └── winutil.fi │ ├── utils │ │ ├── c │ │ │ ├── cerrdoc.for │ │ │ ├── errdoc.for │ │ │ └── errsrc.c │ │ ├── h2fi │ │ │ ├── convert.bat │ │ │ ├── pass1.awk │ │ │ ├── pass1.bat │ │ │ ├── pass2.awk │ │ │ ├── pass2.bat │ │ │ ├── pmddim.awk │ │ │ ├── read.me │ │ │ ├── run1.bat │ │ │ ├── run2.bat │ │ │ ├── special.awk │ │ │ ├── stripcmt.awk │ │ │ └── xlat.awk │ │ └── obj │ │ │ ├── error.msg │ │ │ ├── makefile │ │ │ └── msgcmp.bat │ ├── wfc │ │ ├── 386files.mif │ │ ├── axpfiles.mif │ │ ├── c │ │ │ ├── _matherr.c │ │ │ ├── aentry.c │ │ │ ├── allocate.c │ │ │ ├── argchk.c │ │ │ ├── arglist.c │ │ │ ├── arutls.c │ │ │ ├── asgnop.c │ │ │ ├── asmalloc.c │ │ │ ├── asmmsg.c │ │ │ ├── auxlook.c │ │ │ ├── binops.c │ │ │ ├── blips.c │ │ │ ├── boot77.c │ │ │ ├── browscli.c │ │ │ ├── brseinfo.c │ │ │ ├── cbsize.c │ │ │ ├── cfmttab.c │ │ │ ├── cftable.c │ │ │ ├── cgformat.c │ │ │ ├── cgmagic.c │ │ │ ├── chain.c │ │ │ ├── cle.c │ │ │ ├── cmsgproc.c │ │ │ ├── cnvd2s.c │ │ │ ├── comdump.c │ │ │ ├── comio.c │ │ │ ├── common.c │ │ │ ├── compprog.c │ │ │ ├── compstmt.c │ │ │ ├── convert.c │ │ │ ├── cpmisc.c │ │ │ ├── cpsubpgm.c │ │ │ ├── cptraps.c │ │ │ ├── csatend.c │ │ │ ├── cscycle.c │ │ │ ├── csdep.c │ │ │ ├── csexit.c │ │ │ ├── csgoto.c │ │ │ ├── csguess.c │ │ │ ├── csif.c │ │ │ ├── csloops.c │ │ │ ├── cspawn.c │ │ │ ├── csquit.c │ │ │ ├── csremblk.c │ │ │ ├── csselect.c │ │ │ ├── csutls.c │ │ │ ├── data.c │ │ │ ├── declare.c │ │ │ ├── detach.c │ │ │ ├── docle.c │ │ │ ├── downscan.c │ │ │ ├── dsname.c │ │ │ ├── dumpnode.c │ │ │ ├── emit.c │ │ │ ├── emschk.c │ │ │ ├── emsfini.c │ │ │ ├── emslib.c │ │ │ ├── equiv.c │ │ │ ├── errgrp.c │ │ │ ├── errinit.c │ │ │ ├── errmsg.c │ │ │ ├── errmsg.rc │ │ │ ├── error.c │ │ │ ├── exprutil.c │ │ │ ├── external.c │ │ │ ├── fcalloc.c │ │ │ ├── fcbinary.c │ │ │ ├── fcbits.c │ │ │ ├── fccall.c │ │ │ ├── fccmplx.c │ │ │ ├── fccnvt.c │ │ │ ├── fcdata.c │ │ │ ├── fcdbg.c │ │ │ ├── fcdo.c │ │ │ ├── fcfield.c │ │ │ ├── fcflow.c │ │ │ ├── fcformat.c │ │ │ ├── fcgmain.c │ │ │ ├── fcifns.c │ │ │ ├── fcio.c │ │ │ ├── fcjmptab.c │ │ │ ├── fclogic.c │ │ │ ├── fcmisc.c │ │ │ ├── fcrelops.c │ │ │ ├── fcrtns.c │ │ │ ├── fcsel.c │ │ │ ├── fcstack.c │ │ │ ├── fcstring.c │ │ │ ├── fcstruct.c │ │ │ ├── fcsubscr.c │ │ │ ├── fcsyms.c │ │ │ ├── fctemp.c │ │ │ ├── fctypes.c │ │ │ ├── fieldops.c │ │ │ ├── filescan.c │ │ │ ├── fltused.c │ │ │ ├── fmacros.c │ │ │ ├── fmeminit.c │ │ │ ├── fmemmgr.c │ │ │ ├── fmtemit.c │ │ │ ├── fmterr.c │ │ │ ├── fmtinit.c │ │ │ ├── forcstat.c │ │ │ ├── frl.c │ │ │ ├── galloc.c │ │ │ ├── gcnvt.c │ │ │ ├── gdata.c │ │ │ ├── gdbginfo.c │ │ │ ├── gdo.c │ │ │ ├── gflow.c │ │ │ ├── gio.c │ │ │ ├── global.c │ │ │ ├── gsegs.c │ │ │ ├── gsfunc.c │ │ │ ├── gstring.c │ │ │ ├── gsublist.c │ │ │ ├── gsubprog.c │ │ │ ├── gsubscr.c │ │ │ ├── gsubstr.c │ │ │ ├── gtypes.c │ │ │ ├── hash.c │ │ │ ├── ifdump.c │ │ │ ├── iflookup.c │ │ │ ├── ifused.c │ │ │ ├── implicit.c │ │ │ ├── impltab.c │ │ │ ├── include.c │ │ │ ├── initopt.c │ │ │ ├── inline.c │ │ │ ├── inout.c │ │ │ ├── insert.c │ │ │ ├── intrnsc.c │ │ │ ├── ioiolist.c │ │ │ ├── iokwlist.c │ │ │ ├── ioperm.c │ │ │ ├── ioprockw.c │ │ │ ├── iostmts.c │ │ │ ├── ioutls.c │ │ │ ├── kwlist.c │ │ │ ├── kwlook.c │ │ │ ├── kwlookup.c │ │ │ ├── lex.c │ │ │ ├── libsupp.c │ │ │ ├── logops.c │ │ │ ├── magic.c │ │ │ ├── mainline.c │ │ │ ├── mkname.c │ │ │ ├── namelist.c │ │ │ ├── objutil.c │ │ │ ├── oprtab.c │ │ │ ├── option.c │ │ │ ├── parmcode.c │ │ │ ├── parmeter.c │ │ │ ├── proclist.c │ │ │ ├── proctbl.c │ │ │ ├── recog.c │ │ │ ├── regs.c │ │ │ ├── relops.c │ │ │ ├── rstalloc.c │ │ │ ├── rstconst.c │ │ │ ├── rstdump.c │ │ │ ├── rstglist.c │ │ │ ├── rstlit.c │ │ │ ├── rstmgr.c │ │ │ ├── rstnlist.c │ │ │ ├── rstsrch.c │ │ │ ├── rststmt.c │ │ │ ├── rststruc.c │ │ │ ├── rstutils.c │ │ │ ├── save.c │ │ │ ├── scan.c │ │ │ ├── sdcio.c │ │ │ ├── sdcline.c │ │ │ ├── setopn.c │ │ │ ├── showopts.c │ │ │ ├── stkops.c │ │ │ ├── stmtfunc.c │ │ │ ├── stmtno.c │ │ │ ├── stresolv.c │ │ │ ├── struct.c │ │ │ ├── stub8087.c │ │ │ ├── symtab.c │ │ │ ├── tcmplx.c │ │ │ ├── tdinit.c │ │ │ ├── types.c │ │ │ ├── union.c │ │ │ ├── upcat.c │ │ │ ├── upscan.c │ │ │ ├── usconst.c │ │ │ ├── usfold.c │ │ │ ├── usother.c │ │ │ ├── utility.c │ │ │ ├── volatile.c │ │ │ ├── wf77aux.c │ │ │ ├── wf77info.c │ │ │ └── writ_elf.c │ │ ├── dos386.386 │ │ │ ├── makefile │ │ │ ├── model.inc │ │ │ └── switch.h │ │ ├── dos386.i86 │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── emsfiles.mif │ │ ├── exever.rc │ │ ├── files.mif │ │ ├── h │ │ │ ├── argument.h │ │ │ ├── astype.h │ │ │ ├── boot77.h │ │ │ ├── brow2elf.h │ │ │ ├── browscli.h │ │ │ ├── brseinfo.h │ │ │ ├── cgflags.h │ │ │ ├── cgnoalgn.h │ │ │ ├── cgrealgn.h │ │ │ ├── cle.h │ │ │ ├── comio.h │ │ │ ├── convert.h │ │ │ ├── cpopt.h │ │ │ ├── csdefn.h │ │ │ ├── cspawn.h │ │ │ ├── ctrlflgs.h │ │ │ ├── ecflags.h │ │ │ ├── emitobj.h │ │ │ ├── errcod.h │ │ │ ├── errcod3.h │ │ │ ├── errcodi.h │ │ │ ├── errcodr.h │ │ │ ├── errgrp3.c │ │ │ ├── errgrpi.c │ │ │ ├── errgrpr.c │ │ │ ├── errmsg3.c │ │ │ ├── errmsg3.rc │ │ │ ├── errmsgi.c │ │ │ ├── errmsgi.rc │ │ │ ├── errmsgr.c │ │ │ ├── errmsgr.rc │ │ │ ├── extnsw.h │ │ │ ├── fcdata.h │ │ │ ├── fcdefn.h │ │ │ ├── fcgbls.h │ │ │ ├── fcodes.h │ │ │ ├── fctypes.h │ │ │ ├── ferror.h │ │ │ ├── fetypes.h │ │ │ ├── fhash.h │ │ │ ├── fmeminit.h │ │ │ ├── fmemmgr.h │ │ │ ├── fmthdr.h │ │ │ ├── frl.h │ │ │ ├── gbldat.h │ │ │ ├── gblincs.h │ │ │ ├── global.h │ │ │ ├── ifdefn.h │ │ │ ├── ifdefs.h │ │ │ ├── iflookup.h │ │ │ ├── impl.h │ │ │ ├── inline.h │ │ │ ├── inout.h │ │ │ ├── insert.h │ │ │ ├── iodefn.h │ │ │ ├── iodefs.h │ │ │ ├── iortncon.h │ │ │ ├── itdefn.h │ │ │ ├── jerrmsg3.rc │ │ │ ├── jerrmsgi.rc │ │ │ ├── jerrmsgr.rc │ │ │ ├── lex.h │ │ │ ├── namecod.h │ │ │ ├── namelist.h │ │ │ ├── omodes.h │ │ │ ├── opn.h │ │ │ ├── opr.h │ │ │ ├── oprdefn.h │ │ │ ├── optflags.h │ │ │ ├── optinfo.h │ │ │ ├── optr.h │ │ │ ├── optrdefn.h │ │ │ ├── prdefn.h │ │ │ ├── prmcodes.h │ │ │ ├── progsw.h │ │ │ ├── recog.h │ │ │ ├── regsdefn.h │ │ │ ├── rememb.h │ │ │ ├── rtconst.h │ │ │ ├── rtdefn.h │ │ │ ├── rtntable.h │ │ │ ├── segsw.h │ │ │ ├── source.h │ │ │ ├── stmtdefn.h │ │ │ ├── stmtno.h │ │ │ ├── stmtsw.h │ │ │ ├── struct.h │ │ │ ├── symacc.h │ │ │ ├── symbol.h │ │ │ ├── symdefn.h │ │ │ ├── symflgs.h │ │ │ ├── symtypes.h │ │ │ ├── tmpdefs.h │ │ │ ├── tokdsopn.h │ │ │ ├── token.h │ │ │ ├── types.h │ │ │ ├── usfold.h │ │ │ ├── utility.h │ │ │ ├── wf77aux.h │ │ │ ├── wf77cg.h │ │ │ ├── wf77defs.h │ │ │ ├── wf77labe.h │ │ │ └── wf77segs.h │ │ ├── i86files.mif │ │ ├── linux386.386 │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── linux386.i86 │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── linux386.ppc │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── master.mif │ │ ├── nt386.386 │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── nt386.axp │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── nt386.i86 │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── nt386.ppc │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── ntaxp.axp │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── ntppc.ppc │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── os2386.386 │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── os2386.axp │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── os2386.i86 │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── os2386.ppc │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── os2ppc.ppc │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── osi386.386 │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── osi386.i86 │ │ │ ├── makefile │ │ │ └── switch.h │ │ ├── qnx386.386 │ │ │ ├── cptraps.c │ │ │ ├── makefile │ │ │ └── switch.h │ │ └── tdfiles.mif │ └── wfl │ │ ├── c │ │ ├── errmsg.rc │ │ └── wfl.c │ │ ├── dosi86.386 │ │ ├── makefile │ │ └── switch.h │ │ ├── dosi86.i86 │ │ ├── makefile │ │ └── switch.h │ │ ├── exever.rc │ │ ├── h │ │ ├── errcod.h │ │ ├── errcod3.h │ │ ├── errcodi.h │ │ ├── errcodr.h │ │ ├── errgrp3.c │ │ ├── errgrpi.c │ │ ├── errgrpr.c │ │ ├── errmsg3.c │ │ ├── errmsg3.rc │ │ ├── errmsgi.c │ │ ├── errmsgi.rc │ │ ├── errmsgr.c │ │ ├── errmsgr.rc │ │ ├── jerrmsg3.rc │ │ ├── jerrmsgi.rc │ │ └── jerrmsgr.rc │ │ ├── linux386.386 │ │ ├── makefile │ │ └── switch.h │ │ ├── linux386.i86 │ │ ├── makefile │ │ └── switch.h │ │ ├── master.mif │ │ ├── nt386.386 │ │ ├── makefile │ │ └── switch.h │ │ ├── nt386.axp │ │ ├── makefile │ │ └── switch.h │ │ ├── nt386.i86 │ │ ├── makefile │ │ └── switch.h │ │ ├── ntaxp.axp │ │ ├── makefile │ │ └── switch.h │ │ ├── os2386.386 │ │ ├── makefile │ │ └── switch.h │ │ ├── os2386.axp │ │ ├── makefile │ │ └── switch.h │ │ └── os2386.i86 │ │ ├── makefile │ │ └── switch.h ├── fe_misc │ ├── c │ │ ├── asciifp.c │ │ ├── breakkey.c │ │ ├── carve.c │ │ ├── cmdlnprs.c │ │ ├── cmdscan.c │ │ ├── dbgio.c │ │ ├── dbgzap.c │ │ ├── fileout.cpp │ │ ├── findhash.c │ │ ├── fp.c │ │ ├── fpc.c │ │ ├── ghscrnch.c │ │ ├── ieee754.c │ │ ├── initfini.c │ │ ├── intlbin.c │ │ ├── intlload.c │ │ ├── mp.c │ │ ├── msgencod.c │ │ ├── optencod.c │ │ ├── pstk.c │ │ ├── ringcarv.c │ │ ├── ringfns.c │ │ ├── thrdbuff.cpp │ │ ├── thredout.cpp │ │ ├── usageenc.c │ │ ├── vbuf.c │ │ ├── vstk.c │ │ ├── winlock.cpp │ │ ├── xtrarpt.c │ │ ├── ytabprty.c │ │ └── zsdcopy.cpp │ ├── codechk │ │ ├── c_main.cpp │ │ ├── gmlfile.cpp │ │ ├── gmlfile.hpp │ │ ├── j_main.cpp │ │ ├── main.cpp │ │ ├── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ └── readme.txt │ ├── errcov │ │ ├── errtable.cpp │ │ ├── errtable.hpp │ │ ├── main.cpp │ │ ├── makefile │ │ ├── testfile.cpp │ │ └── testfile.hpp │ ├── h │ │ ├── auxinfo.h │ │ ├── breakkey.h │ │ ├── callinfo.c │ │ ├── callinfo.h │ │ ├── carve.h │ │ ├── cmdlnprs.h │ │ ├── cmdscan.h │ │ ├── dbgzap.h │ │ ├── encodlng.h │ │ ├── fesupp.hfe │ │ ├── fileout.h │ │ ├── fixpstk.h │ │ ├── fp.h │ │ ├── hashpjw.h │ │ ├── ieee754.h │ │ ├── initdefs.h │ │ ├── initfini.h │ │ ├── intlload.h │ │ ├── kwhash.h │ │ ├── lsspec.h │ │ ├── mp.h │ │ ├── msgdecod.c │ │ ├── opttags.h │ │ ├── pstk.h │ │ ├── ringcarv.h │ │ ├── ringfns.h │ │ ├── thrdbuff.h │ │ ├── thredout.h │ │ ├── trap.h │ │ ├── vbuf.h │ │ ├── vstk.h │ │ ├── winlock.h │ │ └── xtrarpt.h │ └── lang.ctl ├── fileext │ └── fileext.txt ├── fmedit │ ├── dev │ │ ├── actions.def │ │ ├── constant.def │ │ ├── fmedit.def │ │ ├── list.def │ │ └── subreq.def │ ├── doc │ │ └── design.txt │ ├── fmedit.doc │ ├── fmedit.wri │ ├── lang.ctl │ ├── mif │ │ └── master.mif │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── src │ │ ├── align.c │ │ ├── align.def │ │ ├── bottom.bmp │ │ ├── clip.c │ │ ├── clip.def │ │ ├── clip.h │ │ ├── curritem.c │ │ ├── curritem.def │ │ ├── curritem.h │ │ ├── currobj.c │ │ ├── currobj.def │ │ ├── currobj.h │ │ ├── cursor.c │ │ ├── cursor.def │ │ ├── dlist.c │ │ ├── dlist.def │ │ ├── dlist.h │ │ ├── eatom.c │ │ ├── eatom.def │ │ ├── eatom.h │ │ ├── fmdlgs.dlg │ │ ├── fmdlgs.h │ │ ├── fmedit.c │ │ ├── fmedit.ico │ │ ├── fmedit.rc │ │ ├── fmerror.c │ │ ├── fmerror.def │ │ ├── global.h │ │ ├── grid.c │ │ ├── grid.def │ │ ├── hcentre.bmp │ │ ├── keybd.c │ │ ├── keybd.def │ │ ├── left.bmp │ │ ├── list.c │ │ ├── list.h │ │ ├── memory.c │ │ ├── memory.def │ │ ├── mouse.c │ │ ├── mouse.def │ │ ├── object.c │ │ ├── object.def │ │ ├── object.h │ │ ├── oitem.c │ │ ├── oitem.def │ │ ├── oitem.h │ │ ├── paint.c │ │ ├── paint.def │ │ ├── right.bmp │ │ ├── scroll.c │ │ ├── scroll.def │ │ ├── space.c │ │ ├── space.def │ │ ├── state.c │ │ ├── state.def │ │ ├── state.h │ │ ├── top.bmp │ │ ├── vcentre.bmp │ │ └── version.h │ ├── version.rc │ └── wini86 │ │ └── makefile ├── graphlib │ ├── 386asm │ │ └── fsmath.asm │ ├── asm │ │ ├── 8x8font.asm │ │ ├── bit.asm │ │ ├── cgautils.asm │ │ ├── egautils.asm │ │ ├── fsmath.asm │ │ ├── hercfont.asm │ │ ├── hgcutils.asm │ │ ├── sqrtf.asm │ │ ├── std.asm │ │ ├── svgautil.asm │ │ └── vgautils.asm │ ├── c │ │ ├── activepg.c │ │ ├── arc.c │ │ ├── bkcolor.c │ │ ├── clearscr.c │ │ ├── clip.c │ │ ├── cliprgn.c │ │ ├── cnvcolor.c │ │ ├── color.c │ │ ├── cursor.c │ │ ├── devutils.c │ │ ├── dispcurs.c │ │ ├── dummy.c │ │ ├── ellipse.c │ │ ├── fast256.c │ │ ├── fillmask.c │ │ ├── floodfll.c │ │ ├── fontsupp.c │ │ ├── getconf.c │ │ ├── getimage.c │ │ ├── getlogc.c │ │ ├── getphysc.c │ │ ├── getpos.c │ │ ├── global.c │ │ ├── gphmain.c │ │ ├── grcga.c │ │ ├── grega.c │ │ ├── grhgc.c │ │ ├── grstatus.c │ │ ├── grsvga.c │ │ ├── grtext.c │ │ ├── grvga.c │ │ ├── gstklow.c │ │ ├── gtxtext.c │ │ ├── gtxtset.c │ │ ├── imagesiz.c │ │ ├── l0drwlin.c │ │ ├── l0ellips.c │ │ ├── l1block.c │ │ ├── l1clip.c │ │ ├── l1ellips.c │ │ ├── l1fill.c │ │ ├── l1fillar.c │ │ ├── l1getdot.c │ │ ├── l1getpic.c │ │ ├── l1hersh.c │ │ ├── l1line.c │ │ ├── l1paint.c │ │ ├── l1putdot.c │ │ ├── l1putpic.c │ │ ├── l1text.c │ │ ├── lineto.c │ │ ├── lineutil.c │ │ ├── lnstyle.c │ │ ├── logorg.c │ │ ├── moveto.c │ │ ├── outtext.c │ │ ├── pie.c │ │ ├── pixel.c │ │ ├── plotactn.c │ │ ├── polygon.c │ │ ├── putchar.c │ │ ├── putimage.c │ │ ├── rectangl.c │ │ ├── remappal.c │ │ ├── scrollw.c │ │ ├── seginit.c │ │ ├── selpal.c │ │ ├── setchsiz.c │ │ ├── setchspc.c │ │ ├── setmode.c │ │ ├── setrows.c │ │ ├── settxpth.c │ │ ├── settxtal.c │ │ ├── settxtor.c │ │ ├── setvideo.c │ │ ├── setviewp.c │ │ ├── setwind.c │ │ ├── stylwrap.c │ │ ├── svgainfo.c │ │ ├── sysmtype.c │ │ ├── textcol.c │ │ ├── textpos.c │ │ ├── textwind.c │ │ ├── transpar.c │ │ ├── visit.c │ │ ├── visualpg.c │ │ ├── windfunc.c │ │ ├── winutil.c │ │ ├── wrapon.c │ │ ├── zarc.c │ │ ├── zchsize.c │ │ ├── zellipse.c │ │ ├── zfloodfl.c │ │ ├── zgetimag.c │ │ ├── zgrtext.c │ │ ├── zimagesi.c │ │ ├── zlineto.c │ │ ├── zmoveto.c │ │ ├── zpie.c │ │ ├── zpixel.c │ │ ├── zpolygon.c │ │ ├── zputimag.c │ │ └── zrectang.c │ ├── dos386r │ │ └── makefile │ ├── dos386s │ │ └── makefile │ ├── dosi86 │ │ └── makefile │ ├── files.dat │ ├── fix │ │ ├── dos386 │ │ │ └── makefile │ │ ├── dosi86 │ │ │ └── makefile │ │ ├── except │ │ ├── fd.ok │ │ ├── fix1.awk │ │ ├── fix2.awk │ │ ├── master.mif │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── qnx386 │ │ │ └── makefile │ │ └── qnxi86 │ │ │ └── makefile │ ├── font │ │ ├── font.h │ │ ├── italic.asm │ │ ├── italic.eng │ │ ├── italic.fr │ │ ├── makefile │ │ ├── roman.asm │ │ ├── roman.eng │ │ ├── roman.fr │ │ ├── selfont.c │ │ ├── std.asm │ │ ├── std.eng │ │ ├── std.fr │ │ ├── std2.asm │ │ ├── std2.eng │ │ └── std2.fr │ ├── graphics.mif │ ├── h │ │ ├── arcinfo.h │ │ ├── asmrefs.h │ │ ├── curstate.h │ │ ├── dotfunc.h │ │ ├── ellinfo.h │ │ ├── entry.h │ │ ├── filldef.h │ │ ├── fontdef.h │ │ ├── fontsupp.h │ │ ├── fpi.h │ │ ├── french.h │ │ ├── gbios.h │ │ ├── gdefn.h │ │ ├── globals.h │ │ ├── grdev.h │ │ ├── lineent.h │ │ ├── makefile │ │ ├── montypes.h │ │ ├── picdef.h │ │ ├── rmalloc.h │ │ ├── rotate.h │ │ ├── scrdesc.h │ │ ├── stkavail.h │ │ ├── svgadef.h │ │ └── wingph.h │ ├── inc │ │ ├── bitmac.inc │ │ └── graph.inc │ ├── lang.ctl │ ├── qnx386r │ │ └── makefile │ ├── qnx386s │ │ └── makefile │ ├── qnxi86 │ │ └── makefile │ ├── svga │ │ └── vgainfo.c │ └── test │ │ └── grtest.c ├── gui │ ├── boot.ctl │ ├── c │ │ ├── guiaddcl.c │ │ ├── guiclrst.c │ │ ├── guicreat.c │ │ ├── guidead.c │ │ ├── guideath.c │ │ ├── guidlg.c │ │ ├── guidraw.c │ │ ├── guiev.c │ │ ├── guiextnm.c │ │ ├── guiextra.c │ │ ├── guifcrck.c │ │ ├── guigcolr.c │ │ ├── guignval.c │ │ ├── guihflt.c │ │ ├── guihint.c │ │ ├── guihook.c │ │ ├── guihot.c │ │ ├── guihtool.c │ │ ├── guiimdi.c │ │ ├── guiimmdi.c │ │ ├── guiisgui.c │ │ ├── guimdi.c │ │ ├── guimdime.c │ │ ├── guimem.c │ │ ├── guimin.c │ │ ├── guimkey.c │ │ ├── guindlg.c │ │ ├── guipick.c │ │ ├── guipixel.c │ │ ├── guirscal.c │ │ ├── guiscale.c │ │ ├── guisdef.c │ │ ├── guisetup.c │ │ ├── guistr.c │ │ ├── guistyle.c │ │ ├── guiutil.c │ │ ├── guiwnclr.c │ │ ├── guizlist.c │ │ └── mkstr.c │ ├── debugger.mak │ ├── doc │ │ ├── guide.doc │ │ ├── plat.doc │ │ ├── prop.doc │ │ └── todo.doc │ ├── h │ │ ├── gui.h │ │ ├── gui.msg │ │ ├── gui.rc │ │ ├── gui.str │ │ ├── guidead.h │ │ ├── guideath.h │ │ ├── guidlg.h │ │ ├── guievent.h │ │ ├── guiextnm.h │ │ ├── guifdlg.h │ │ ├── guihint.h │ │ ├── guihook.h │ │ ├── guihot.h │ │ ├── guikey.h │ │ ├── guimdi.h │ │ ├── guimem.h │ │ ├── guimkey.h │ │ ├── guipick.h │ │ ├── guiscale.h │ │ ├── guisdef.h │ │ ├── guisetup.h │ │ ├── guisort.h │ │ ├── guistr.h │ │ ├── guisysfi.h │ │ ├── guisysin.h │ │ ├── guitypes.h │ │ ├── guiutil.h │ │ ├── guiwnclr.h │ │ ├── guix.h │ │ ├── guixmdi.h │ │ └── guizlist.h │ ├── lang.ctl │ ├── master.mif │ ├── sample │ │ ├── c │ │ │ ├── dlgdynam.c │ │ │ ├── dlgstat.c │ │ │ ├── dlgtest.c │ │ │ ├── guimem.c │ │ │ ├── pmsample.c │ │ │ ├── samp2.c │ │ │ ├── sampdef.c │ │ │ └── sample.c │ │ ├── h │ │ │ ├── dlgdynam.h │ │ │ ├── dlgstat.h │ │ │ ├── dlgtest.h │ │ │ ├── sample.h │ │ │ └── samprc.h │ │ ├── makefile │ │ ├── master.mif │ │ ├── nt386.gui │ │ │ └── makefile │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── obj │ │ │ └── makefile │ │ ├── obj32q │ │ │ └── makefile │ │ ├── objaxp │ │ │ └── makefile │ │ ├── objf │ │ │ └── makefile │ │ ├── objm │ │ │ └── makefile │ │ ├── objq │ │ │ └── makefile │ │ ├── of386n │ │ │ └── makefile │ │ ├── of386w │ │ │ └── makefile │ │ ├── os2386.gui │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── os2i86.gui │ │ │ └── makefile │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── res │ │ │ ├── change.bmp │ │ │ ├── five.bmp │ │ │ ├── four.bmp │ │ │ ├── max.bmp │ │ │ ├── min.bmp │ │ │ ├── one.bmp │ │ │ ├── pm │ │ │ │ ├── dlg.ico │ │ │ │ ├── main.ico │ │ │ │ ├── win1.ico │ │ │ │ ├── win2.ico │ │ │ │ └── win3.ico │ │ │ ├── resize.bmp │ │ │ ├── restore.bmp │ │ │ ├── three.bmp │ │ │ ├── two.bmp │ │ │ └── win │ │ │ │ ├── dlg.ico │ │ │ │ ├── main.ico │ │ │ │ ├── win1.ico │ │ │ │ ├── win2.ico │ │ │ │ └── win3.ico │ │ ├── sample.dlg │ │ ├── sample.men │ │ ├── sample.mk │ │ ├── sample.rc │ │ ├── samplepm.dlg │ │ ├── samplepm.rc │ │ ├── win386.gui │ │ │ └── makefile │ │ └── wini86.gui │ │ │ └── makefile │ ├── ui │ │ ├── bootmake │ │ ├── c │ │ │ ├── guiarect.c │ │ │ ├── guicheck.c │ │ │ ├── guiclen.c │ │ │ ├── guicolor.c │ │ │ ├── guicontr.c │ │ │ ├── guicrect.c │ │ │ ├── guicursr.c │ │ │ ├── guidbclk.c │ │ │ ├── guidirty.c │ │ │ ├── guidoscr.c │ │ │ ├── guidrain.c │ │ │ ├── guidrawr.c │ │ │ ├── guidrawt.c │ │ │ ├── guidrect.c │ │ │ ├── guidrow.c │ │ │ ├── guienum.c │ │ │ ├── guifdlg.c │ │ │ ├── guifloat.c │ │ │ ├── guiflush.c │ │ │ ├── guifocus.c │ │ │ ├── guifront.c │ │ │ ├── guigadgt.c │ │ │ ├── guigetnr.c │ │ │ ├── guigetpt.c │ │ │ ├── guigmous.c │ │ │ ├── guigscrl.c │ │ │ ├── guigsysh.c │ │ │ ├── guigtext.c │ │ │ ├── guihelp.c │ │ │ ├── guihotsp.c │ │ │ ├── guiicon.c │ │ │ ├── guikey.c │ │ │ ├── guildstr.c │ │ │ ├── guilistb.c │ │ │ ├── guimapky.c │ │ │ ├── guimenu.c │ │ │ ├── guimouse.c │ │ │ ├── guirange.c │ │ │ ├── guirdlg.c │ │ │ ├── guirect.c │ │ │ ├── guirfrsh.c │ │ │ ├── guirmenu.c │ │ │ ├── guiscrol.c │ │ │ ├── guisicon.c │ │ │ ├── guisize.c │ │ │ ├── guismetr.c │ │ │ ├── guismove.c │ │ │ ├── guispawn.c │ │ │ ├── guisstyl.c │ │ │ ├── guistat.c │ │ │ ├── guistext.c │ │ │ ├── guistrin.c │ │ │ ├── guistub.c │ │ │ ├── guisys.c │ │ │ ├── guisysfi.c │ │ │ ├── guisysin.c │ │ │ ├── guisysme.c │ │ │ ├── guitextm.c │ │ │ ├── guithumb.c │ │ │ ├── guitool.c │ │ │ ├── guiuiev.c │ │ │ ├── guiwhole.c │ │ │ ├── guixaddt.c │ │ │ ├── guixbar.c │ │ │ ├── guixctrl.c │ │ │ ├── guixdisp.c │ │ │ ├── guixdlg.c │ │ │ ├── guixdraw.c │ │ │ ├── guixedit.c │ │ │ ├── guixhook.c │ │ │ ├── guixhot.c │ │ │ ├── guiximdi.c │ │ │ ├── guixinit.c │ │ │ ├── guixloop.c │ │ │ ├── guixmain.c │ │ │ ├── guixmdi.c │ │ │ ├── guixscal.c │ │ │ ├── guixsys.c │ │ │ ├── guixtent.c │ │ │ ├── guixutil.c │ │ │ ├── guixwind.c │ │ │ ├── helpmem.c │ │ │ ├── swap.c │ │ │ ├── swapline.c │ │ │ ├── uibarf.c │ │ │ ├── uidchfld.c │ │ │ └── uimenucr.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── dosi86 │ │ │ └── makefile │ │ ├── dosi86m │ │ │ └── makefile │ │ ├── guiui.mif │ │ ├── h │ │ │ ├── guiclock.h │ │ │ ├── guicolor.h │ │ │ ├── guicontr.h │ │ │ ├── guidirty.h │ │ │ ├── guidraw.h │ │ │ ├── guifloat.h │ │ │ ├── guigadgt.h │ │ │ ├── guigmous.h │ │ │ ├── guihotsp.h │ │ │ ├── guiicon.h │ │ │ ├── guildstr.h │ │ │ ├── guilistb.h │ │ │ ├── guimapky.h │ │ │ ├── guimenu.h │ │ │ ├── guimin.h │ │ │ ├── guirdlg.h │ │ │ ├── guirmenu.h │ │ │ ├── guischar.h │ │ │ ├── guiscrol.h │ │ │ ├── guisize.h │ │ │ ├── guismove.h │ │ │ ├── guistat.h │ │ │ ├── guisysme.h │ │ │ ├── guiwhole.h │ │ │ ├── guiwind.h │ │ │ ├── guixctrl.h │ │ │ ├── guixdlg.h │ │ │ ├── guixdraw.h │ │ │ ├── guixedit.h │ │ │ ├── guixhook.h │ │ │ ├── guixhot.h │ │ │ ├── guixinit.h │ │ │ ├── guixkey.h │ │ │ ├── guixloop.h │ │ │ ├── guixmain.h │ │ │ ├── guixscal.h │ │ │ ├── guixutil.h │ │ │ ├── guixwind.h │ │ │ └── swap.h │ │ ├── linux386 │ │ │ └── makefile │ │ ├── linuxmps │ │ │ └── makefile │ │ ├── nov386 │ │ │ └── makefile │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── qnx386 │ │ │ └── makefile │ │ ├── qnxi86 │ │ │ └── makefile │ │ ├── rdos386 │ │ │ └── makefile │ │ └── wini86 │ │ │ └── makefile │ ├── unix │ │ └── objfiles.mk │ ├── unixbld │ └── win │ │ ├── c │ │ ├── gui3ddlg.c │ │ ├── guiarect.c │ │ ├── guicheck.c │ │ ├── guiclass.c │ │ ├── guiclear.c │ │ ├── guiclen.c │ │ ├── guicolor.c │ │ ├── guicombo.c │ │ ├── guicontr.c │ │ ├── guicrect.c │ │ ├── guicursr.c │ │ ├── guicutil.c │ │ ├── guidbclk.c │ │ ├── guidirty.c │ │ ├── guidoscr.c │ │ ├── guidrain.c │ │ ├── guidrawr.c │ │ ├── guidrect.c │ │ ├── guidropd.c │ │ ├── guidrow.c │ │ ├── guienum.c │ │ ├── guif1hk.c │ │ ├── guifdlg.c │ │ ├── guifloat.c │ │ ├── guiflush.c │ │ ├── guifocus.c │ │ ├── guifont.c │ │ ├── guifront.c │ │ ├── guigetnr.c │ │ ├── guigetpt.c │ │ ├── guigetrc.c │ │ ├── guigetx.c │ │ ├── guigscrl.c │ │ ├── guigsysh.c │ │ ├── guihelp.c │ │ ├── guiiscrl.c │ │ ├── guildstr.c │ │ ├── guimapky.c │ │ ├── guimenus.c │ │ ├── guimouse.c │ │ ├── guimvctr.c │ │ ├── guipaint.c │ │ ├── guirange.c │ │ ├── guirdlg.c │ │ ├── guirect.c │ │ ├── guireset.c │ │ ├── guirfrsh.c │ │ ├── guirmenu.c │ │ ├── guiscrol.c │ │ ├── guisicon.c │ │ ├── guisize.c │ │ ├── guismetr.c │ │ ├── guispawn.c │ │ ├── guissel.c │ │ ├── guisstyl.c │ │ ├── guistat.c │ │ ├── guistext.c │ │ ├── guistrin.c │ │ ├── guistub.c │ │ ├── guisys.c │ │ ├── guisysfi.c │ │ ├── guisysin.c │ │ ├── guisystr.c │ │ ├── guitextm.c │ │ ├── guithumb.c │ │ ├── guitimer.c │ │ ├── guitool.c │ │ ├── guiwinlp.c │ │ ├── guixbar.c │ │ ├── guixdisp.c │ │ ├── guixdlg.c │ │ ├── guixdraw.c │ │ ├── guixhook.c │ │ ├── guixhot.c │ │ ├── guiximdi.c │ │ ├── guixmain.c │ │ ├── guixmdi.c │ │ ├── guixscal.c │ │ ├── guixtent.c │ │ ├── guixtext.c │ │ ├── guixutil.c │ │ ├── guixwind.c │ │ ├── mem.c │ │ ├── os2dlg.c │ │ ├── os2mem.c │ │ ├── windlg.c │ │ └── wpimem.c │ │ ├── compile.gbl │ │ ├── guiwin.mif │ │ ├── h │ │ ├── guicolor.h │ │ ├── guicombo.h │ │ ├── guicontr.h │ │ ├── guicutil.h │ │ ├── guidoscr.h │ │ ├── guifloat.h │ │ ├── guifont.h │ │ ├── guifront.h │ │ ├── guigetx.h │ │ ├── guimapky.h │ │ ├── guimenus.h │ │ ├── guimin.h │ │ ├── guipaint.h │ │ ├── guirange.h │ │ ├── guirdlg.h │ │ ├── guirect.h │ │ ├── guirmenu.h │ │ ├── guiscrol.h │ │ ├── guistyle.h │ │ ├── guisys.h │ │ ├── guitextm.h │ │ ├── guitool.h │ │ ├── guiwind.h │ │ ├── guiwinlp.h │ │ ├── guiwpi.h │ │ ├── guixdlg.h │ │ ├── guixdraw.h │ │ ├── guixhook.h │ │ ├── guixhot.h │ │ ├── guixscal.h │ │ ├── guixutil.h │ │ ├── guixwind.h │ │ ├── mem.h │ │ ├── os2dlg.h │ │ └── windlg.h │ │ ├── nt386 │ │ └── makefile │ │ ├── ntaxp │ │ └── makefile │ │ ├── objfiles.mk │ │ ├── os2386 │ │ └── makefile │ │ ├── os2i86 │ │ └── makefile │ │ ├── qnx386 │ │ └── makefile │ │ ├── win.rc │ │ ├── win386 │ │ └── makefile │ │ ├── wini86 │ │ └── makefile │ │ └── winpm.rc ├── hcdos │ ├── c │ │ ├── dmp.c │ │ ├── index.c │ │ └── sorthelp.c │ ├── dosi86 │ │ └── makefile │ ├── h │ │ ├── cmdswtch.h │ │ └── sorthelp.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386 │ │ └── makefile │ └── prereq.ctl ├── hdr │ ├── alloca.sp │ ├── clockt.sp │ ├── common.sp │ ├── cplusepi.sp │ ├── cpluspro.sp │ ├── cpplock.sp │ ├── cpponly.sp │ ├── cpppfv.sp │ ├── crqnx.sp │ ├── crwat.sp │ ├── crwatcnt.sp │ ├── crwatqnx.sp │ ├── deps.mif │ ├── dos │ │ ├── makefile │ │ └── sys │ │ │ └── afile │ ├── dskfreet.sp │ ├── errno.sp │ ├── errnot.sp │ ├── exactint.sp │ ├── ext.sp │ ├── extc99.sp │ ├── extepi.sp │ ├── files.dat │ ├── hfiles.mif │ ├── incdir.sp │ ├── intptr.sp │ ├── lang.ctl │ ├── lfndos.sp │ ├── linux │ │ ├── arch │ │ │ ├── i386 │ │ │ │ ├── err_no.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── signal.h │ │ │ │ ├── sigposix.h │ │ │ │ └── sys │ │ │ │ │ ├── ioctl.h │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── socket.h │ │ │ │ │ ├── stat.h │ │ │ │ │ └── types.h │ │ │ └── mips │ │ │ │ ├── err_no.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── signal.h │ │ │ │ ├── sigposix.h │ │ │ │ └── sys │ │ │ │ ├── ioctl.h │ │ │ │ ├── resource.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ └── types.h │ │ ├── arpa │ │ │ └── afile │ │ ├── makefile │ │ ├── netinet │ │ │ └── afile │ │ └── sys │ │ │ └── afile │ ├── lnxkpack.sp │ ├── master.mif │ ├── maxpath.sp │ ├── mbmax.sp │ ├── mscrt.sp │ ├── namemax.sp │ ├── namwat.sp │ ├── nlserror.sp │ ├── null.sp │ ├── owrtlink.sp │ ├── poppack.sp │ ├── posixext.sp │ ├── pshpackl.sp │ ├── ptrdiff.sp │ ├── qnx │ │ ├── makefile │ │ └── sys │ │ │ └── afile │ ├── readme.txt │ ├── readonly.sp │ ├── redefnew.sp │ ├── regress │ │ └── makefile │ ├── rsizet.sp │ ├── saferepi.sp │ ├── saferpro.sp │ ├── sizet.sp │ ├── ssizet.sp │ ├── systems.sp │ ├── systypes.sp │ ├── throws.sp │ ├── timet.sp │ ├── undefnew.sp │ ├── unixext.sp │ ├── valist.sp │ ├── watcom │ │ ├── _algmut.mh │ │ ├── _algnmod.mh │ │ ├── _algsort.mh │ │ ├── _comdef.mh │ │ ├── _graph.mh │ │ ├── _hash.mh │ │ ├── _ialias.mh │ │ ├── _lfndos.mh │ │ ├── _meta.mh │ │ ├── _pgchart.mh │ │ ├── _rbtree.mh │ │ ├── _strdef.mh │ │ ├── algorith.mh │ │ ├── alloca.mh │ │ ├── assert.mh │ │ ├── bios.mh │ │ ├── bios98.mh │ │ ├── bitset.mh │ │ ├── cassert.mh │ │ ├── cctype.mh │ │ ├── cerrno.mh │ │ ├── cfloat.mh │ │ ├── ciso646.mh │ │ ├── climits.mh │ │ ├── clocale.mh │ │ ├── cmath.mh │ │ ├── common.mh │ │ ├── complex.mh │ │ ├── conio.mh │ │ ├── crtdbg.mh │ │ ├── csetjmp.mh │ │ ├── csignal.mh │ │ ├── cstdarg.mh │ │ ├── cstddef.mh │ │ ├── cstdint.mh │ │ ├── cstdio.mh │ │ ├── cstdlib.mh │ │ ├── cstring.mh │ │ ├── ctime.mh │ │ ├── ctype.mh │ │ ├── cwchar.mh │ │ ├── cwctype.mh │ │ ├── deque.mh │ │ ├── direct.mh │ │ ├── dos.mh │ │ ├── dos │ │ │ └── sys_utim.mh │ │ ├── dosfunc.mh │ │ ├── eh.mh │ │ ├── env.mh │ │ ├── errno.mh │ │ ├── except.mh │ │ ├── exceptio.mh │ │ ├── excpt.mh │ │ ├── fcntl.mh │ │ ├── fenv.mh │ │ ├── float.mh │ │ ├── fnmatch.mh │ │ ├── fstream.mh │ │ ├── function.mh │ │ ├── generic.mh │ │ ├── graph.mh │ │ ├── grp.mh │ │ ├── i86.mh │ │ ├── inttypes.mh │ │ ├── io.mh │ │ ├── iomanip.mh │ │ ├── ios.mh │ │ ├── iosfwd.mh │ │ ├── iostream.mh │ │ ├── iso646.mh │ │ ├── istream.mh │ │ ├── iterator.mh │ │ ├── jctype.mh │ │ ├── jstring.mh │ │ ├── jtime.mh │ │ ├── libgen.mh │ │ ├── limits.mh │ │ ├── linux │ │ │ ├── dirent.mh │ │ │ ├── in.mh │ │ │ ├── inet.mh │ │ │ ├── ioctl.mh │ │ │ ├── mman.mh │ │ │ ├── mount.mh │ │ │ ├── netdb.mh │ │ │ ├── ptrace.mh │ │ │ ├── resource.mh │ │ │ ├── socket.mh │ │ │ ├── sysmips.mh │ │ │ ├── tcp.mh │ │ │ ├── termios.mh │ │ │ ├── times.mh │ │ │ ├── un.mh │ │ │ ├── utsname.mh │ │ │ └── wait.mh │ │ ├── list.mh │ │ ├── locale.mh │ │ ├── locking.mh │ │ ├── malloc.mh │ │ ├── map.mh │ │ ├── math.mh │ │ ├── mbctype.mh │ │ ├── mbstring.mh │ │ ├── mem.mh │ │ ├── memory.mh │ │ ├── mmintrin.mh │ │ ├── new.mh │ │ ├── numeric.mh │ │ ├── ostream.mh │ │ ├── pgchart.mh │ │ ├── process.mh │ │ ├── pwd.mh │ │ ├── queue.mh │ │ ├── random.mh │ │ ├── sched.mh │ │ ├── search.mh │ │ ├── set.mh │ │ ├── setjmp.mh │ │ ├── setjmpex.mh │ │ ├── share.mh │ │ ├── signal.mh │ │ ├── slist.mh │ │ ├── sstream.mh │ │ ├── stack.mh │ │ ├── stat.mh │ │ ├── stdarg.mh │ │ ├── stdbool.mh │ │ ├── stddef.mh │ │ ├── stdexcep.mh │ │ ├── stdint.mh │ │ ├── stdio.mh │ │ ├── stdiobuf.mh │ │ ├── stdlib.mh │ │ ├── streambu.mh │ │ ├── string.mh │ │ ├── string.mhp │ │ ├── strings.mh │ │ ├── strstrea.mh │ │ ├── sys_time.mh │ │ ├── tchar.mh │ │ ├── time.mh │ │ ├── timeb.mh │ │ ├── type_tra.mh │ │ ├── typeinfo.mh │ │ ├── types.mh │ │ ├── unistd.mh │ │ ├── unordere.mh │ │ ├── utility.mh │ │ ├── utime.mh │ │ ├── valarray.mh │ │ ├── varargs.mh │ │ ├── vector.mh │ │ ├── wcdefs.mh │ │ ├── wcexcept.mh │ │ ├── wchar.mh │ │ ├── wchash.mh │ │ ├── wchbase.mh │ │ ├── wchiter.mh │ │ ├── wclbase.mh │ │ ├── wclcom.mh │ │ ├── wclibase.mh │ │ ├── wclist.mh │ │ ├── wclistit.mh │ │ ├── wcqueue.mh │ │ ├── wcsbase.mh │ │ ├── wcsibase.mh │ │ ├── wcskip.mh │ │ ├── wcskipit.mh │ │ ├── wcstack.mh │ │ ├── wctype.mh │ │ ├── wcvbase.mh │ │ ├── wcvector.mh │ │ ├── wdefwin.mh │ │ └── wsample.mh │ ├── watexc.sp │ ├── wchar_t.sp │ └── wctypet.sp ├── help │ ├── boot.ctl │ ├── bootmake │ ├── c │ │ ├── dialcb.c │ │ ├── dlg.c │ │ ├── filelist.c │ │ ├── help.c │ │ ├── helpio.c │ │ ├── helpmem.c │ │ ├── helpopen.c │ │ ├── helpscan.c │ │ ├── main.c │ │ ├── msgbox.c │ │ ├── search.c │ │ └── vvscroll.c │ ├── dos386 │ │ └── makefile │ ├── files.dat │ ├── h │ │ ├── filelist.h │ │ ├── help.h │ │ ├── helpchar.h │ │ ├── helpio.h │ │ ├── helpmem.h │ │ ├── helpscan.h │ │ ├── hlpuicvr.h │ │ ├── hlputkys.h │ │ ├── index.h │ │ ├── msgbox.h │ │ └── search.h │ ├── help.mif │ ├── help.txt │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── linuxmps │ │ └── makefile │ ├── master.mif │ ├── nt386 │ │ └── makefile │ └── os2386 │ │ └── makefile ├── helpcomp │ ├── cpp │ │ ├── baggage.cpp │ │ ├── bmx.cpp │ │ ├── btrees.cpp │ │ ├── compress.cpp │ │ ├── context.cpp │ │ ├── ctxomap.cpp │ │ ├── font.cpp │ │ ├── hcerrors.cpp │ │ ├── hlpdir.cpp │ │ ├── hpjread.cpp │ │ ├── keywords.cpp │ │ ├── mem.cpp │ │ ├── myfile.cpp │ │ ├── pagecomp.cpp │ │ ├── parsing.cpp │ │ ├── phrase.cpp │ │ ├── scanning.cpp │ │ ├── system.cpp │ │ ├── tester.cpp │ │ ├── topic.cpp │ │ ├── ttlbtree.cpp │ │ └── whc.cpp │ ├── doc │ │ ├── b_tree.txt │ │ ├── baggage.txt │ │ ├── bmx.txt │ │ ├── compress.txt │ │ ├── contents.txt │ │ ├── context.txt │ │ ├── ctxomap.txt │ │ ├── files.txt │ │ ├── font.txt │ │ ├── keycon.txt │ │ ├── kwbtree.txt │ │ ├── kwdata.txt │ │ ├── kwmap.txt │ │ ├── phrases.txt │ │ ├── readme.whc │ │ ├── system.txt │ │ ├── tomap.txt │ │ ├── topic.txt │ │ ├── ttlbtree.txt │ │ └── whifs.txt │ ├── dos386 │ │ └── makefile │ ├── exever.rc │ ├── files.dat │ ├── h │ │ ├── baggage.h │ │ ├── bmx.h │ │ ├── btrees.h │ │ ├── commands.h │ │ ├── compress.h │ │ ├── context.h │ │ ├── ctxomap.h │ │ ├── errnums.h │ │ ├── errstrs.h │ │ ├── font.h │ │ ├── hcerrors.h │ │ ├── hcmem.h │ │ ├── hlpdir.h │ │ ├── hpjread.h │ │ ├── keywords.h │ │ ├── msgerr.h │ │ ├── myfile.h │ │ ├── parsing.h │ │ ├── phrase.h │ │ ├── scanning.h │ │ ├── slash.vis │ │ ├── system.h │ │ ├── topic.h │ │ └── ttlbtree.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── os2386 │ │ └── makefile │ └── prereq.ctl ├── idebatch │ ├── dos │ │ ├── common.h │ │ ├── int.c │ │ ├── int21.asm │ │ ├── link.c │ │ ├── link.h │ │ ├── makefile │ │ └── winprag.h │ ├── files.dat │ ├── h │ │ └── batcher.h │ ├── lang.ctl │ ├── master.mif │ ├── nt │ │ ├── axp │ │ │ └── makefile │ │ ├── batcli.c │ │ ├── batpipe.c │ │ ├── batpipe.h │ │ ├── batserv.c │ │ └── makefile │ ├── os2 │ │ ├── batcli.c │ │ ├── batpipe.h │ │ ├── batserv.c │ │ ├── makefile │ │ └── tst.c │ ├── wini86 │ │ ├── batchbox.pif │ │ ├── demo.ico │ │ ├── winint.c │ │ └── winint.h │ └── winint.rc ├── lang.ctl ├── langlnx.ctl ├── lib_misc │ ├── c │ │ ├── aliasgen.c │ │ └── demangle.c │ ├── h │ │ ├── clibi64.h │ │ ├── cplx.h │ │ ├── demangle.h │ │ ├── dm_pts.h │ │ ├── errorno.h │ │ ├── exitwmsg.h │ │ ├── extender.inc │ │ ├── extfunc.h │ │ ├── farsupp.h │ │ ├── hostos.h │ │ ├── liballoc.h │ │ ├── libsupp.h │ │ ├── ljmphdl.h │ │ ├── mtype.h │ │ ├── myvalist.h │ │ ├── ntex.h │ │ ├── osthread.h │ │ ├── osver.h │ │ ├── pdiv.h │ │ ├── printf.h │ │ ├── rdosex.h │ │ ├── rtcntrl.h │ │ ├── rtdata.h │ │ ├── sigdefn.h │ │ ├── strdup.h │ │ ├── thrdreg.h │ │ ├── thread.h │ │ ├── variety.h │ │ └── widechar.h │ ├── lang.ctl │ ├── mif │ │ └── alias.mif │ ├── sed │ │ └── export.sed │ └── vi │ │ └── export.vi ├── mad │ ├── axp │ │ ├── c │ │ │ ├── axpaddr.c │ │ │ ├── axpcall.c │ │ │ ├── axpctrl.c │ │ │ ├── axpdisas.c │ │ │ ├── axpreg.c │ │ │ ├── axptrace.c │ │ │ └── axptypes.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── h │ │ │ ├── axp.h │ │ │ ├── axpregs.h │ │ │ └── axptypes.h │ │ ├── linux386 │ │ │ └── makefile │ │ ├── mad.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── qnx386 │ │ │ └── makefile │ │ ├── version.rc │ │ └── wini86 │ │ │ └── makefile │ ├── boot.ctl │ ├── bootmake │ ├── c │ │ └── madimp.c │ ├── files.dat │ ├── jvm │ │ ├── c │ │ │ ├── jvmaddr.c │ │ │ ├── jvmcall.c │ │ │ ├── jvmctrl.c │ │ │ ├── jvmdisas.c │ │ │ ├── jvmreg.c │ │ │ ├── jvmtrace.c │ │ │ └── jvmtypes.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── h │ │ │ ├── jvm.h │ │ │ ├── jvmops.h │ │ │ ├── jvmregs.h │ │ │ └── jvmtypes.h │ │ ├── mad.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── qnx386 │ │ │ └── makefile │ │ └── wini86 │ │ │ └── makefile │ ├── lang.ctl │ ├── master.mif │ ├── mips │ │ ├── c │ │ │ ├── mpsaddr.c │ │ │ ├── mpscall.c │ │ │ ├── mpsctrl.c │ │ │ ├── mpsdisas.c │ │ │ ├── mpsreg.c │ │ │ ├── mpstrace.c │ │ │ └── mpstypes.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── h │ │ │ ├── mips.h │ │ │ ├── mpsregs.h │ │ │ └── mpstypes.h │ │ ├── linux386 │ │ │ └── makefile │ │ ├── mad.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── version.rc │ │ └── wini86 │ │ │ └── makefile │ ├── ppc │ │ ├── c │ │ │ ├── ppcaddr.c │ │ │ ├── ppccall.c │ │ │ ├── ppcctrl.c │ │ │ ├── ppcdisas.c │ │ │ ├── ppcreg.c │ │ │ ├── ppctrace.c │ │ │ └── ppctypes.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── h │ │ │ ├── ppc.h │ │ │ ├── ppcregs.h │ │ │ └── ppctypes.h │ │ ├── linux386 │ │ │ └── makefile │ │ ├── mad.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── qnx386 │ │ │ └── makefile │ │ ├── version.rc │ │ └── wini86 │ │ │ └── makefile │ ├── x86 │ │ ├── c │ │ │ ├── x86addr.c │ │ │ ├── x86call.c │ │ │ ├── x86ctrl.c │ │ │ ├── x86disas.c │ │ │ ├── x86reg.c │ │ │ ├── x86trace.c │ │ │ └── x86types.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── h │ │ │ ├── x86.h │ │ │ └── x86types.h │ │ ├── linux386 │ │ │ └── makefile │ │ ├── mad.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── qnx386 │ │ │ └── makefile │ │ ├── rdos386 │ │ │ └── makefile │ │ ├── version.rc │ │ └── wini86 │ │ │ └── makefile │ └── xmp │ │ ├── c │ │ ├── xmpaddr.c │ │ ├── xmpcall.c │ │ ├── xmpctrl.c │ │ ├── xmpdisas.c │ │ ├── xmpreg.c │ │ ├── xmptrace.c │ │ └── xmptypes.c │ │ ├── dos386 │ │ └── makefile │ │ ├── h │ │ ├── xmp.h │ │ └── xmptypes.h │ │ ├── mad.mif │ │ ├── nt386 │ │ └── makefile │ │ ├── ntaxp │ │ └── makefile │ │ ├── os2i86 │ │ └── makefile │ │ ├── qnx386 │ │ └── makefile │ │ └── wini86 │ │ └── makefile ├── mathlib │ ├── a │ │ ├── __87ldi2.asm │ │ ├── __87ldi4.asm │ │ ├── __mtherr.asm │ │ ├── acos87.asm │ │ ├── acosh87.asm │ │ ├── acosl87.asm │ │ ├── asin87.asm │ │ ├── asinh87.asm │ │ ├── asinl87.asm │ │ ├── atan087_.asm │ │ ├── atan387_.asm │ │ ├── atan87.asm │ │ ├── atanh87.asm │ │ ├── atanl87.asm │ │ ├── bufld086.asm │ │ ├── bufld386.asm │ │ ├── cotan87.asm │ │ ├── exp087_.asm │ │ ├── exp387_.asm │ │ ├── exp87.asm │ │ ├── fabs87.asm │ │ ├── fchop87.asm │ │ ├── fmod87.asm │ │ ├── fprem086.asm │ │ ├── fprem386.asm │ │ ├── log087_.asm │ │ ├── log387_.asm │ │ ├── log87.asm │ │ ├── modf086.asm │ │ ├── modf386.asm │ │ ├── modf87.asm │ │ ├── pow87.asm │ │ ├── sin087_.asm │ │ ├── sin387_.asm │ │ ├── sqrt087_.asm │ │ ├── sqrt387_.asm │ │ ├── sqrt87.asm │ │ ├── tan087_.asm │ │ ├── tan387_.asm │ │ ├── trig87.asm │ │ ├── trigh87.asm │ │ └── trigl87.asm │ ├── alias │ │ ├── a │ │ │ └── afile │ │ ├── deps.mif │ │ ├── gen │ │ │ ├── aliases.lst │ │ │ └── makefile │ │ ├── library │ │ │ ├── linux.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── linux.387 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── linux.mps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linux.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── msdos.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.287 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── msdos.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── msdos.387 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd.dll │ │ │ │ │ └── makefile │ │ │ │ └── mf_s.dll │ │ │ │ │ └── makefile │ │ │ ├── os2.387 │ │ │ │ ├── mf_r.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd.dll │ │ │ │ │ └── makefile │ │ │ │ └── mf_s.dll │ │ │ │ │ └── makefile │ │ │ ├── os2.ppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── windows.286 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ └── ml │ │ │ │ │ └── makefile │ │ │ ├── windows.287 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ └── ml │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp.dll │ │ │ │ │ └── makefile │ │ │ │ └── mf_s.dll │ │ │ │ │ └── makefile │ │ │ ├── winnt.387 │ │ │ │ ├── mf_r.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rp.dll │ │ │ │ │ └── makefile │ │ │ │ └── mf_s.dll │ │ │ │ │ └── makefile │ │ │ ├── winnt.axp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ └── winnt.ppc │ │ │ │ └── _s │ │ │ │ └── makefile │ │ └── objects.mif │ ├── bt.mif │ ├── c │ │ ├── _gr_cvt.c │ │ ├── _gr_math.c │ │ ├── _matherr.c │ │ ├── _uatof.c │ │ ├── _uefcvt.c │ │ ├── _ugcvt.c │ │ ├── _ustrtod.c │ │ ├── acos.c │ │ ├── acosh.c │ │ ├── asin.c │ │ ├── asinh.c │ │ ├── atan.c │ │ ├── atan2.c │ │ ├── atanh.c │ │ ├── atof.c │ │ ├── cabs.c │ │ ├── ceil.c │ │ ├── clear87.c │ │ ├── cnvd2f.c │ │ ├── cnvd2ld.c │ │ ├── cnvs2d.c │ │ ├── cosh.c │ │ ├── cvt.c │ │ ├── difftime.c │ │ ├── divc16.c │ │ ├── divc20.c │ │ ├── divc8.c │ │ ├── efcvt.c │ │ ├── efgfmt.c │ │ ├── evalpoly.c │ │ ├── exp.c │ │ ├── fabs.c │ │ ├── fdclass.c │ │ ├── fdsign.c │ │ ├── finite.c │ │ ├── floor.c │ │ ├── flsign.c │ │ ├── fmod.c │ │ ├── fpow10.c │ │ ├── fpremaxp.c │ │ ├── frexp.c │ │ ├── fsclass.c │ │ ├── fssign.c │ │ ├── gcvt.c │ │ ├── hypot.c │ │ ├── ifcdabs.c │ │ ├── ifcdcos.c │ │ ├── ifcdexp.c │ │ ├── ifcdlog.c │ │ ├── ifcdsin.c │ │ ├── ifcdsqrt.c │ │ ├── inf_nan.c │ │ ├── j0.c │ │ ├── j1.c │ │ ├── jn.c │ │ ├── ldclass.c │ │ ├── ldcvt.c │ │ ├── ldexp.c │ │ ├── log.c │ │ ├── log10.c │ │ ├── log2.c │ │ ├── log87e.c │ │ ├── math2err.c │ │ ├── math87e.c │ │ ├── matherr.c │ │ ├── mathtest.c │ │ ├── modf.c │ │ ├── modfaxp.c │ │ ├── mulc16.c │ │ ├── mulc20.c │ │ ├── mulc8.c │ │ ├── pow.c │ │ ├── pow87e.c │ │ ├── powc16.c │ │ ├── powc20.c │ │ ├── powc8.c │ │ ├── powic16.c │ │ ├── powic32.c │ │ ├── powic8.c │ │ ├── powii.c │ │ ├── powri.c │ │ ├── powrr.c │ │ ├── powxi.c │ │ ├── qmatherr.c │ │ ├── sgn.c │ │ ├── sincos.c │ │ ├── sinh.c │ │ ├── sqrt.c │ │ ├── strtod.c │ │ ├── tanh.c │ │ ├── y0.c │ │ ├── y1.c │ │ ├── yn.c │ │ └── zmatherr.c │ ├── clean.mif │ ├── deps.mif │ ├── export.386 │ ├── export.387 │ ├── files.dat │ ├── flags.mif │ ├── h │ │ ├── env387.inc │ │ ├── grfuncs.h │ │ ├── ifprag.h │ │ ├── math87.inc │ │ ├── mathlib.h │ │ └── pi.h │ ├── include.mif │ ├── lang.ctl │ ├── lib.mif │ ├── library │ │ ├── linux.386 │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ ├── mf_s │ │ │ │ └── makefile │ │ │ ├── ms_r │ │ │ │ └── makefile │ │ │ └── ms_s │ │ │ │ └── makefile │ │ ├── linux.387 │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ ├── mf_s │ │ │ │ └── makefile │ │ │ ├── ms_r │ │ │ │ └── makefile │ │ │ └── ms_s │ │ │ │ └── makefile │ │ ├── linux.mps │ │ │ └── _s │ │ │ │ └── makefile │ │ ├── linux.ppc │ │ │ └── _s │ │ │ │ └── makefile │ │ ├── msdos.286 │ │ │ ├── mc │ │ │ │ └── makefile │ │ │ ├── mh │ │ │ │ └── makefile │ │ │ ├── ml │ │ │ │ └── makefile │ │ │ ├── mm │ │ │ │ └── makefile │ │ │ └── ms │ │ │ │ └── makefile │ │ ├── msdos.287 │ │ │ ├── mc │ │ │ │ └── makefile │ │ │ ├── mh │ │ │ │ └── makefile │ │ │ ├── ml │ │ │ │ └── makefile │ │ │ ├── mm │ │ │ │ └── makefile │ │ │ └── ms │ │ │ │ └── makefile │ │ ├── msdos.386 │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ ├── mf_rd │ │ │ │ └── makefile │ │ │ ├── mf_s │ │ │ │ └── makefile │ │ │ ├── ms_r │ │ │ │ └── makefile │ │ │ ├── ms_rd │ │ │ │ └── makefile │ │ │ └── ms_s │ │ │ │ └── makefile │ │ ├── msdos.387 │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ ├── mf_rd │ │ │ │ └── makefile │ │ │ ├── mf_s │ │ │ │ └── makefile │ │ │ ├── ms_r │ │ │ │ └── makefile │ │ │ ├── ms_rd │ │ │ │ └── makefile │ │ │ └── ms_s │ │ │ │ └── makefile │ │ ├── os2.386 │ │ │ ├── mf_r.dll │ │ │ │ └── makefile │ │ │ ├── mf_rd.dll │ │ │ │ └── makefile │ │ │ └── mf_s.dll │ │ │ │ └── makefile │ │ ├── os2.387 │ │ │ ├── mf_r.dll │ │ │ │ └── makefile │ │ │ ├── mf_rd.dll │ │ │ │ └── makefile │ │ │ └── mf_s.dll │ │ │ │ └── makefile │ │ ├── os2.ppc │ │ │ └── _s │ │ │ │ └── makefile │ │ ├── windows.286 │ │ │ ├── mc │ │ │ │ └── makefile │ │ │ └── ml │ │ │ │ └── makefile │ │ ├── windows.287 │ │ │ ├── mc │ │ │ │ └── makefile │ │ │ └── ml │ │ │ │ └── makefile │ │ ├── winnt.386 │ │ │ ├── mf_r.dll │ │ │ │ └── makefile │ │ │ ├── mf_rd.dll │ │ │ │ └── makefile │ │ │ ├── mf_rp.dll │ │ │ │ └── makefile │ │ │ └── mf_s.dll │ │ │ │ └── makefile │ │ ├── winnt.387 │ │ │ ├── mf_r.dll │ │ │ │ └── makefile │ │ │ ├── mf_rd.dll │ │ │ │ └── makefile │ │ │ ├── mf_rp.dll │ │ │ │ └── makefile │ │ │ └── mf_s.dll │ │ │ │ └── makefile │ │ ├── winnt.axp │ │ │ └── _s │ │ │ │ └── makefile │ │ └── winnt.ppc │ │ │ └── _s │ │ │ └── makefile │ ├── libs.mif │ ├── master.mif │ ├── mklib.mif │ ├── objects.mif │ ├── objlist.mif │ ├── old │ │ ├── dtoa.c │ │ ├── ftos.c │ │ ├── nan_inf.c │ │ ├── readme.txt │ │ └── scale.c │ ├── qa │ │ └── makefile │ ├── register.387 │ ├── rtdll │ │ ├── os2.386 │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ ├── mf_rd │ │ │ │ └── makefile │ │ │ ├── mf_s │ │ │ │ └── makefile │ │ │ └── objs.mif │ │ ├── os2.387 │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ ├── mf_rd │ │ │ │ └── makefile │ │ │ ├── mf_s │ │ │ │ └── makefile │ │ │ └── objs.mif │ │ ├── winnt.386 │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ ├── mf_rd │ │ │ │ └── makefile │ │ │ ├── mf_rp │ │ │ │ └── makefile │ │ │ ├── mf_s │ │ │ │ └── makefile │ │ │ ├── objs.mif │ │ │ └── verinfo.rc │ │ └── winnt.387 │ │ │ ├── mf_r │ │ │ └── makefile │ │ │ ├── mf_rd │ │ │ └── makefile │ │ │ ├── mf_rp │ │ │ └── makefile │ │ │ ├── mf_s │ │ │ └── makefile │ │ │ ├── objs.mif │ │ │ └── verinfo.rc │ └── stack.387 ├── misc │ ├── files.dat │ ├── lang.ctl │ ├── stubs │ │ ├── execpgm.c │ │ └── makefile │ ├── unicode.437 │ ├── unicode.850 │ ├── unicode.852 │ ├── unicode1.250 │ ├── unicode1.252 │ └── watcom.ico ├── mstools │ ├── asaxp │ │ ├── asaxp.mif │ │ ├── c │ │ │ ├── asaxp.c │ │ │ ├── message.c │ │ │ ├── parse.c │ │ │ └── translat.c │ │ ├── gml │ │ │ └── ms.gml │ │ ├── h │ │ │ ├── asaxp.h │ │ │ ├── message.h │ │ │ ├── parse.h │ │ │ └── translat.h │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ └── ntppc │ │ │ └── makefile │ ├── c │ │ ├── cmdline.c │ │ ├── cmdscan.c │ │ ├── context.c │ │ ├── deff386.c │ │ ├── deffaxp.c │ │ ├── deffile.c │ │ ├── deffppc.c │ │ ├── dlltool.c │ │ ├── error.c │ │ ├── file.c │ │ ├── fuzzy.c │ │ ├── hash.c │ │ ├── memory.c │ │ ├── mesg386.c │ │ ├── mesgaxp.c │ │ ├── mesgppc.c │ │ ├── parse386.c │ │ ├── parseaxp.c │ │ ├── parseppc.c │ │ ├── pathconv.c │ │ ├── stub.c │ │ ├── xlate386.c │ │ ├── xlateaxp.c │ │ └── xlateppc.c │ ├── cl │ │ ├── c │ │ │ ├── cl.c │ │ │ ├── cl386.c │ │ │ ├── claxp.c │ │ │ ├── clppc.c │ │ │ ├── clstub.c │ │ │ ├── macro.c │ │ │ ├── message.c │ │ │ ├── parse.c │ │ │ └── translat.c │ │ ├── cl.mif │ │ ├── exever.rc │ │ ├── gml │ │ │ └── ms.gml │ │ ├── h │ │ │ ├── cl.h │ │ │ ├── macro.h │ │ │ ├── message.h │ │ │ ├── optparse.h │ │ │ ├── parse.h │ │ │ └── translat.h │ │ ├── notes.txt │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── ntppc │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── ver386.rc │ │ ├── veraxp.rc │ │ └── verppc.rc │ ├── cvtres │ │ ├── c │ │ │ ├── cvtres.c │ │ │ ├── message.c │ │ │ └── parse.c │ │ ├── cvtres.mif │ │ ├── exever.rc │ │ ├── gml │ │ │ └── ms.gml │ │ ├── h │ │ │ ├── message.h │ │ │ └── parse.h │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ └── ntppc │ │ │ └── makefile │ ├── files.dat │ ├── h │ │ ├── cmdline.h │ │ ├── cmdscan.h │ │ ├── context.h │ │ ├── deffile.h │ │ ├── dlltool.h │ │ ├── error.h │ │ ├── file.h │ │ ├── fuzzy.h │ │ ├── hash.h │ │ ├── memory.h │ │ ├── optparse.h │ │ ├── pathconv.h │ │ ├── stub.h │ │ └── system.h │ ├── lang.ctl │ ├── lib │ │ ├── c │ │ │ ├── lib.c │ │ │ ├── lib386.c │ │ │ ├── libaxp.c │ │ │ ├── libppc.c │ │ │ ├── libstub.c │ │ │ ├── message.c │ │ │ ├── parse.c │ │ │ └── translat.c │ │ ├── exever.rc │ │ ├── gml │ │ │ └── ms.gml │ │ ├── h │ │ │ ├── lib.h │ │ │ ├── message.h │ │ │ ├── parse.h │ │ │ └── translat.h │ │ ├── lib.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── ntppc │ │ │ └── makefile │ │ ├── ver386.rc │ │ ├── veraxp.rc │ │ └── verppc.rc │ ├── link │ │ ├── c │ │ │ ├── link.c │ │ │ ├── link386.c │ │ │ ├── linkaxp.c │ │ │ ├── linkppc.c │ │ │ ├── linkstub.c │ │ │ ├── message.c │ │ │ ├── parse.c │ │ │ └── translat.c │ │ ├── exever.rc │ │ ├── gml │ │ │ └── ms.gml │ │ ├── h │ │ │ ├── link.h │ │ │ ├── message.h │ │ │ ├── parse.h │ │ │ └── translat.h │ │ ├── link.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── ntppc │ │ │ └── makefile │ │ ├── ver386.rc │ │ ├── veraxp.rc │ │ └── verppc.rc │ ├── master.mif │ ├── nmake │ │ ├── c │ │ │ ├── message.c │ │ │ ├── nmake.c │ │ │ ├── nmakestub.c │ │ │ ├── parse.c │ │ │ └── translat.c │ │ ├── exever.rc │ │ ├── gml │ │ │ └── ms.gml │ │ ├── h │ │ │ ├── message.h │ │ │ ├── nmake.h │ │ │ ├── parse.h │ │ │ └── translat.h │ │ ├── nmake.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── ntppc │ │ │ └── makefile │ │ └── os2386 │ │ │ └── makefile │ └── rc │ │ ├── c │ │ ├── message.c │ │ ├── parse.c │ │ ├── rc.c │ │ ├── rcstub.c │ │ └── translat.c │ │ ├── exever.rc │ │ ├── gml │ │ └── ms.gml │ │ ├── h │ │ ├── message.h │ │ ├── parse.h │ │ ├── rc.h │ │ └── translat.h │ │ ├── nt386 │ │ └── makefile │ │ ├── ntaxp │ │ └── makefile │ │ ├── ntppc │ │ └── makefile │ │ └── rc.mif ├── ncurses │ ├── boot.ctl │ ├── bootmake │ ├── c │ │ ├── access.c │ │ ├── comp_err.c │ │ ├── doalloc.c │ │ ├── fallback.c │ │ ├── free_tty.c │ │ ├── getenv_n.c │ │ ├── home_ter.c │ │ ├── lib_baud.c │ │ ├── lib_beep.c │ │ ├── lib_cur_.c │ │ ├── lib_napm.c │ │ ├── lib_setu.c │ │ ├── lib_tpar.c │ │ ├── lib_tput.c │ │ ├── lib_ttyf.c │ │ └── read_ent.c │ ├── h │ │ ├── curses.h │ │ ├── curses_p.h │ │ ├── nc_alloc.h │ │ ├── nc_panel.h │ │ ├── ncurscfg.h │ │ ├── ncursdef.h │ │ ├── ncursdll.h │ │ ├── term.h │ │ ├── term_ent.h │ │ ├── termcap.h │ │ ├── tic.h │ │ └── unctrl.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── linuxmps │ │ └── makefile │ ├── master.mif │ └── readme.txt ├── ndisasm │ ├── boot.ctl │ ├── bootmake │ ├── core │ │ ├── c │ │ │ ├── disaxp.c │ │ │ ├── disbuild.c │ │ │ ├── disentry.c │ │ │ ├── disjvm.c │ │ │ ├── dismips.c │ │ │ ├── disppc.c │ │ │ ├── dissparc.c │ │ │ ├── disx64.c │ │ │ └── disx86.c │ │ └── h │ │ │ ├── dis.h │ │ │ ├── distypes.h │ │ │ ├── distypex.h │ │ │ ├── insaxp.h │ │ │ ├── insjvm.h │ │ │ ├── insmips.h │ │ │ ├── insppc.h │ │ │ ├── inssparc.h │ │ │ ├── insx64.h │ │ │ ├── insx86.h │ │ │ ├── insx86e1.h │ │ │ ├── insx86e2.h │ │ │ ├── insx86e3.h │ │ │ ├── insx86e4.h │ │ │ ├── refaxp.h │ │ │ ├── refjvm.h │ │ │ ├── refmips.h │ │ │ ├── refppc.h │ │ │ ├── refsparc.h │ │ │ ├── refx64.h │ │ │ ├── refx86.h │ │ │ ├── regaxp.h │ │ │ ├── regjvm.h │ │ │ ├── regmips.h │ │ │ ├── regppc.h │ │ │ ├── regsparc.h │ │ │ ├── regx64.h │ │ │ └── regx86.h │ ├── dos386 │ │ └── makefile │ ├── exever.rc │ ├── files.dat │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── linuxmps │ │ └── makefile │ ├── mif │ │ ├── dis.mif │ │ └── master.mif │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── osi386 │ │ └── makefile │ ├── qnx386 │ │ └── makefile │ ├── stand │ │ ├── c │ │ │ ├── args.c │ │ │ ├── buffer.c │ │ │ ├── dwarf.c │ │ │ ├── externs.c │ │ │ ├── fini.c │ │ │ ├── formasm.c │ │ │ ├── groups.c │ │ │ ├── hashtabl.c │ │ │ ├── identsec.c │ │ │ ├── init.c │ │ │ ├── labproc.c │ │ │ ├── main.c │ │ │ ├── memfuncs.c │ │ │ ├── msg.c │ │ │ ├── pass1.c │ │ │ ├── pass2.c │ │ │ ├── pdata.c │ │ │ ├── print.c │ │ │ ├── publics.c │ │ │ ├── refproc.c │ │ │ └── srcmix.c │ │ ├── h │ │ │ ├── args.h │ │ │ ├── buffer.h │ │ │ ├── externs.h │ │ │ ├── fini.h │ │ │ ├── formasm.h │ │ │ ├── global.h │ │ │ ├── groups.h │ │ │ ├── hashtabl.h │ │ │ ├── identsec.h │ │ │ ├── init.h │ │ │ ├── labproc.h │ │ │ ├── main.h │ │ │ ├── memfuncs.h │ │ │ ├── msg.h │ │ │ ├── mydwarf.h │ │ │ ├── pass1.h │ │ │ ├── pass2.h │ │ │ ├── pdata.h │ │ │ ├── print.h │ │ │ ├── publics.h │ │ │ ├── refproc.h │ │ │ ├── srcmix.h │ │ │ ├── types.h │ │ │ └── wdis.rc │ │ ├── mkstr.c │ │ └── wdis.msg │ └── test │ │ ├── amd64.asm │ │ ├── c │ │ └── main.c │ │ ├── mif │ │ └── master.mif │ │ ├── o │ │ └── makefile │ │ ├── ppc.asm │ │ └── ppcsimp.asm ├── nwlib │ ├── boot.ctl │ ├── bootmake │ ├── c │ │ ├── cmdline.c │ │ ├── coffobjs.c │ │ ├── coffwrt.c │ │ ├── convert.c │ │ ├── elfobjs.c │ │ ├── error.c │ │ ├── ideentry.c │ │ ├── implib.c │ │ ├── inlib.c │ │ ├── libio.c │ │ ├── libwalk.c │ │ ├── maindrv.c │ │ ├── memfuncs.c │ │ ├── ntdll.c │ │ ├── omfproc.c │ │ ├── omfutil.c │ │ ├── orlrtns.c │ │ ├── os2dll.c │ │ ├── proclib.c │ │ ├── symlist.c │ │ ├── symtable.c │ │ ├── wlib.c │ │ ├── wlibutil.c │ │ └── writelib.c │ ├── dos386 │ │ └── makefile │ ├── exever.rc │ ├── files.dat │ ├── h │ │ ├── cmdline.h │ │ ├── coffwrt.h │ │ ├── convert.h │ │ ├── errnum.h │ │ ├── error.h │ │ ├── ext.h │ │ ├── filetab.h │ │ ├── implib.h │ │ ├── inlib.h │ │ ├── liblist.h │ │ ├── libwalk.h │ │ ├── main.h │ │ ├── memfuncs.h │ │ ├── objfile.h │ │ ├── oldarch.h │ │ ├── omfproc.h │ │ ├── omfutil.h │ │ ├── ops.h │ │ ├── optdef.h │ │ ├── orlrtns.h │ │ ├── proclib.h │ │ ├── symlist.h │ │ ├── types.h │ │ ├── wlib.h │ │ ├── wlibio.h │ │ ├── wlibutil.h │ │ └── writelib.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── linuxmps │ │ └── makefile │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── prereq.ctl │ ├── qnx386 │ │ └── makefile │ ├── version.rc │ ├── wlib.msg │ └── wlib.rc ├── omftools │ ├── c │ │ ├── hashtab.c │ │ ├── misc.c │ │ ├── objchg.c │ │ ├── objfind.c │ │ ├── objlist.c │ │ ├── objxdef.c │ │ └── objxref.c │ ├── dos386 │ │ └── makefile │ ├── h │ │ ├── hashtab.h │ │ └── misc.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── os2386 │ │ └── makefile │ └── prereq.ctl ├── online │ ├── files.dat │ └── lang.ctl ├── orl │ ├── boot.ctl │ ├── bootmake │ ├── c │ │ ├── orlentry.c │ │ ├── orlflhnd.c │ │ └── orlhash.c │ ├── client.mif │ ├── coff │ │ ├── c │ │ │ ├── coffentr.c │ │ │ ├── coffflhn.c │ │ │ ├── coffimpl.c │ │ │ ├── coffload.c │ │ │ └── cofflwlv.c │ │ └── h │ │ │ ├── coffentr.h │ │ │ ├── coffflhn.h │ │ │ ├── coffglbl.h │ │ │ ├── coffhash.h │ │ │ ├── coffimpl.h │ │ │ ├── coffload.h │ │ │ ├── cofflwlv.h │ │ │ ├── cofforl.h │ │ │ └── cofftype.h │ ├── doc │ │ └── omf.txt │ ├── elf │ │ ├── c │ │ │ ├── elfentr.c │ │ │ ├── elfflhn.c │ │ │ ├── elfload.c │ │ │ └── elflwlv.c │ │ └── h │ │ │ ├── elfentr.h │ │ │ ├── elfflhn.h │ │ │ ├── elfglbl.h │ │ │ ├── elfhash.h │ │ │ ├── elfload.h │ │ │ ├── elflwlv.h │ │ │ ├── elforl.h │ │ │ └── elftype.h │ ├── h │ │ ├── orl.h │ │ ├── orlcomon.h │ │ ├── orlentry.h │ │ ├── orlflhnd.h │ │ ├── orlglobl.h │ │ ├── orlhash.h │ │ ├── orlhshdf.h │ │ ├── orlintnl.h │ │ └── orllevel.h │ ├── lang.ctl │ ├── master.mif │ ├── nt386.dll │ │ └── makefile │ ├── ntaxp.dll │ │ └── makefile │ ├── omf │ │ ├── c │ │ │ ├── omfdrctv.c │ │ │ ├── omfentr.c │ │ │ ├── omfflhn.c │ │ │ ├── omfload.c │ │ │ └── omfmunge.c │ │ └── h │ │ │ ├── omfdrctv.h │ │ │ ├── omfentr.h │ │ │ ├── omfflhn.h │ │ │ ├── omfglbl.h │ │ │ ├── omfload.h │ │ │ ├── omfmunge.h │ │ │ ├── omforl.h │ │ │ └── omftype.h │ ├── orlobjs.mif │ ├── os2386.dll │ │ └── makefile │ ├── osi386 │ │ └── makefile │ ├── osiaxp │ │ └── makefile │ ├── osimps │ │ └── makefile │ ├── prereq.ctl │ └── test │ │ ├── boot.ctl │ │ ├── bootmake │ │ ├── c │ │ └── test.c │ │ ├── linux386 │ │ └── makefile │ │ ├── mif │ │ └── test.mif │ │ ├── nt386 │ │ └── makefile │ │ ├── ntaxp │ │ └── makefile │ │ └── os2386 │ │ └── makefile ├── os2api │ ├── ddk │ │ ├── devaux.h │ │ ├── devdefs.h │ │ ├── devhdr.h │ │ ├── devpci.h │ │ └── devreqp.h │ ├── def2lbc.sed │ ├── files.dat │ ├── incl16 │ │ ├── bse.mh │ │ ├── bsedev.mh │ │ ├── bsedos.mh │ │ ├── bseerr.mh │ │ ├── bsesub.mh │ │ ├── os2.mh │ │ ├── os2def.mh │ │ ├── pm.mh │ │ ├── pmbitmap.mh │ │ ├── pmdev.mh │ │ ├── pmerr.mh │ │ ├── pmgpi.mh │ │ ├── pmhelp.mh │ │ ├── pmmle.mh │ │ ├── pmshl.mh │ │ └── pmwin.mh │ ├── incl32 │ │ ├── GL │ │ │ ├── gl.mh │ │ │ ├── glaux.mh │ │ │ ├── glu.mh │ │ │ ├── glut.mh │ │ │ ├── pgl.mh │ │ │ └── tk.mh │ │ ├── acb.mh │ │ ├── arpa │ │ │ └── inet.mh │ │ ├── basemid.mh │ │ ├── bdcalls.mh │ │ ├── bse.mh │ │ ├── bsedev.mh │ │ ├── bsedos.mh │ │ ├── bseerr.mh │ │ ├── bsememf.mh │ │ ├── bseord.mh │ │ ├── bsesub.mh │ │ ├── bsexcpt.mh │ │ ├── callconv.mh │ │ ├── codec.mh │ │ ├── dive.mh │ │ ├── driver.mh │ │ ├── evcb.mh │ │ ├── exe.mh │ │ ├── exe386.mh │ │ ├── fourcc.mh │ │ ├── ftpapi.mh │ │ ├── genio.mh │ │ ├── machine │ │ │ ├── ansi.mh │ │ │ ├── endian.mh │ │ │ └── types.mh │ │ ├── mciapi.mh │ │ ├── mcios2.mh │ │ ├── meerror.mh │ │ ├── mididll.mh │ │ ├── midios2.mh │ │ ├── mmdrvos2.mh │ │ ├── mmioos2.mh │ │ ├── nerrno.mh │ │ ├── net │ │ │ ├── if.mh │ │ │ ├── if_arp.mh │ │ │ ├── if_dl.mh │ │ │ └── route.mh │ │ ├── netdb.mh │ │ ├── netinet │ │ │ ├── icmp_var.mh │ │ │ ├── if_ether.mh │ │ │ ├── in.mh │ │ │ ├── in_systm.mh │ │ │ ├── ip.mh │ │ │ ├── ip_icmp.mh │ │ │ ├── ip_var.mh │ │ │ ├── tcp.mh │ │ │ ├── tcp_var.mh │ │ │ ├── udp.mh │ │ │ └── udp_var.mh │ │ ├── newexe.mh │ │ ├── os2.mh │ │ ├── os2def.mh │ │ ├── os2me.mh │ │ ├── os2medef.mh │ │ ├── pm.mh │ │ ├── pmavio.mh │ │ ├── pmdev.mh │ │ ├── pmerr.mh │ │ ├── pmgpi.mh │ │ ├── pmhelp.mh │ │ ├── pmsei.mh │ │ ├── pmspl.mh │ │ ├── pmstddlg.mh │ │ ├── pmtypes.mh │ │ ├── pmwin.mh │ │ ├── pmwp.mh │ │ ├── protocol │ │ │ ├── routed.mh │ │ │ ├── rwhod.mh │ │ │ ├── talkd.mh │ │ │ └── timed.mh │ │ ├── rexxsaa.mh │ │ ├── ssm.mh │ │ ├── sw.mh │ │ ├── sys │ │ │ ├── cdefs.mh │ │ │ ├── filio.mh │ │ │ ├── ioccom.mh │ │ │ ├── ioctl.mh │ │ │ ├── ioctlos2.mh │ │ │ ├── lipcpar.mh │ │ │ ├── param.mh │ │ │ ├── select.mh │ │ │ ├── socket.mh │ │ │ ├── sockio.mh │ │ │ ├── sysctl.mh │ │ │ ├── time.mh │ │ │ ├── uio.mh │ │ │ └── un.mh │ │ ├── tcpustd.mh │ │ ├── types.mh │ │ ├── uconv.mh │ │ ├── ulserrno.mh │ │ ├── ulsitem.mh │ │ ├── unidef.mh │ │ ├── upm.mh │ │ └── utils.mh │ ├── lang.ctl │ ├── lib286 │ │ ├── ansicall.def │ │ ├── doscalls.def │ │ ├── kbdcalls.def │ │ ├── moncalls.def │ │ ├── moucalls.def │ │ ├── msg.def │ │ ├── msgseg.asm │ │ ├── nampipes.def │ │ ├── nls.def │ │ ├── os2sm.def │ │ ├── pmgpi.def │ │ ├── pmshapi.def │ │ ├── pmviop.def │ │ ├── pmwin.def │ │ ├── quecalls.def │ │ ├── sesmgr.def │ │ └── viocalls.def │ ├── lib386 │ │ ├── bdcalls.def │ │ ├── dive.def │ │ ├── doscalls.def │ │ ├── ftpapi.def │ │ ├── glut.def │ │ ├── helpmgr.def │ │ ├── kbdcalls.def │ │ ├── libaux.def │ │ ├── libtk.def │ │ ├── libuni.def │ │ ├── mciapi.def │ │ ├── mdm.def │ │ ├── mmio.def │ │ ├── moncalls.def │ │ ├── moucalls.def │ │ ├── msg.def │ │ ├── msgseg32.asm │ │ ├── nampipes.def │ │ ├── nls.def │ │ ├── opengl.def │ │ ├── pmctls.def │ │ ├── pmdrag.def │ │ ├── pmgpi.def │ │ ├── pmshapi.def │ │ ├── pmspl.def │ │ ├── pmviop.def │ │ ├── pmwin.def │ │ ├── pmwp.def │ │ ├── quecalls.def │ │ ├── rexx.def │ │ ├── rexxapi.def │ │ ├── rtmidi.def │ │ ├── sesmgr.def │ │ ├── sw.def │ │ ├── tcpip32.def │ │ ├── uconv.def │ │ ├── upm32.def │ │ └── viocalls.def │ ├── master.mif │ ├── os2286 │ │ └── makefile │ ├── os2386 │ │ ├── GL │ │ │ └── afile │ │ ├── arpa │ │ │ └── afile │ │ ├── machine │ │ │ └── afile │ │ ├── makefile │ │ ├── net │ │ │ └── afile │ │ ├── netinet │ │ │ └── afile │ │ ├── protocol │ │ │ └── afile │ │ └── sys │ │ │ └── afile │ └── test │ │ ├── 16bit │ │ ├── makefile │ │ ├── testc.c │ │ └── testpp.cpp │ │ ├── 32bit │ │ ├── makefile │ │ ├── testc.c │ │ └── testpp.cpp │ │ └── master.mif ├── os_supp │ └── novell │ │ ├── common │ │ ├── h │ │ │ ├── aesproc.h │ │ │ ├── aio.h │ │ │ ├── bindery.h │ │ │ ├── bits.h │ │ │ ├── cconfig.h │ │ │ ├── datamig.h │ │ │ ├── debugapi.h │ │ │ ├── ecb.h │ │ │ ├── event.h │ │ │ ├── loader.h │ │ │ ├── locks.h │ │ │ ├── miniproc.h │ │ │ ├── mmu.h │ │ │ ├── nw_sigs.h │ │ │ ├── nwsemaph.h │ │ │ ├── nwtypes.h │ │ │ ├── owfileng.h │ │ │ ├── ownwcnio.h │ │ │ ├── ownwdos.h │ │ │ ├── ownwsupp.h │ │ │ └── ownwthrd.h │ │ └── imp │ │ │ └── owclib.imp │ │ ├── nw3 │ │ └── h │ │ │ ├── clib.h │ │ │ └── stkframe.h │ │ ├── nw4 │ │ └── h │ │ │ ├── clib.h │ │ │ └── stkframe.h │ │ ├── nw5 │ │ └── h │ │ │ ├── clib.h │ │ │ └── stkframe.h │ │ └── readme.txt ├── owl │ ├── boot.ctl │ ├── bootmake │ ├── c │ │ ├── bufftest.c │ │ ├── log.c │ │ ├── oldbuff.c │ │ ├── owbuffer.c │ │ ├── owcoff.c │ │ ├── owdebug.c │ │ ├── owelf.c │ │ ├── owemit.c │ │ ├── owfile.c │ │ ├── owl.c │ │ ├── owreloc.c │ │ ├── owsect.c │ │ ├── owstring.c │ │ ├── owsymbol.c │ │ ├── owsymdmp.c │ │ ├── patchtst.c │ │ └── strtest.c │ ├── client.mif │ ├── h │ │ ├── elf.h │ │ ├── elfpriv.h │ │ ├── log.h │ │ ├── oldbuff.h │ │ ├── owbuffer.h │ │ ├── owcoff.h │ │ ├── owelf.h │ │ ├── owl.h │ │ ├── owlerrs.h │ │ ├── owlpriv.h │ │ ├── owreloc.h │ │ ├── owstring.h │ │ └── owsymbol.h │ ├── lang.ctl │ ├── master.mif │ ├── nt386.dll │ │ └── makefile │ ├── ntaxp.dll │ │ └── makefile │ ├── osi386 │ │ └── makefile │ ├── osiaxp │ │ └── makefile │ ├── osimps │ │ └── makefile │ └── prereq.ctl ├── parsedlg │ ├── c │ │ └── parsedlg.c │ ├── dos386 │ │ └── makefile │ ├── h │ │ ├── parsedlg.h │ │ └── restab.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── mif │ │ └── master.mif │ ├── nt386 │ │ └── makefile │ ├── os2386 │ │ └── makefile │ └── prereq.ctl ├── pbide │ ├── cfg │ │ ├── nt386 │ │ │ └── makefile │ │ └── wini86 │ │ │ └── makefile │ ├── defgen │ │ ├── defgen.h │ │ ├── defgen.y │ │ ├── dos386 │ │ │ └── makefile │ │ ├── error.c │ │ ├── main.c │ │ ├── output.c │ │ ├── output.h │ │ ├── scan.c │ │ ├── scan.h │ │ ├── semantic.c │ │ ├── semantic.h │ │ └── yydriver.c │ ├── dlldbg │ │ ├── debugger.ico │ │ ├── dlldbg.c │ │ ├── dlldbg.rc │ │ ├── nt386 │ │ │ └── makefile │ │ ├── pbend.dbg │ │ ├── pbstart.dbg │ │ ├── pbwd.dbg │ │ ├── pbwdnt.dbg │ │ └── wini86 │ │ │ └── makefile │ ├── fscopy │ │ ├── fscopy.c │ │ └── makefile │ ├── lang.ctl │ ├── master.mif │ ├── pbdll.h │ ├── run │ │ ├── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── run.c │ │ └── wini86 │ │ │ └── makefile │ └── wig │ │ ├── c │ │ ├── errdll.c │ │ ├── error.c │ │ ├── filelist.c │ │ ├── gen_cpp.c │ │ ├── hashtab.c │ │ ├── keywords.c │ │ ├── lexxer.c │ │ ├── list.c │ │ ├── mem.c │ │ ├── options.c │ │ ├── pbide.c │ │ ├── scanner.c │ │ ├── sruparse.y │ │ ├── srusuprt.c │ │ ├── wig.c │ │ └── yydriver.c │ │ ├── dos386 │ │ └── makefile │ │ ├── driver │ │ ├── driver.c │ │ ├── driver.dlg │ │ ├── driver.h │ │ ├── driver.rc │ │ └── wini86 │ │ │ └── makefile │ │ ├── h │ │ ├── data.h │ │ ├── error.h │ │ ├── error.lst │ │ ├── filelist.h │ │ ├── gen_cpp.h │ │ ├── global.h │ │ ├── hashtab.h │ │ ├── keywords.h │ │ ├── lexxer.h │ │ ├── list.h │ │ ├── mem.h │ │ ├── options.h │ │ ├── pbide.h │ │ ├── sruinter.h │ │ ├── srusuprt.h │ │ └── types.h │ │ ├── mif │ │ └── master.mif │ │ ├── nt386.dll │ │ └── makefile │ │ ├── os2386 │ │ └── makefile │ │ ├── wini86.dll │ │ └── makefile │ │ └── wini86 │ │ └── makefile ├── pgchart │ ├── c │ │ ├── pgancom.c │ │ ├── pganms.c │ │ ├── pganpie.c │ │ ├── pganscms.c │ │ ├── pgaxis.c │ │ ├── pgchart.c │ │ ├── pgchrdef.c │ │ ├── pgchrtpi.c │ │ ├── pgdfault.c │ │ ├── pghlabel.c │ │ ├── pginit.c │ │ ├── pglegend.c │ │ ├── pgmisc.c │ │ ├── pgpal.c │ │ ├── pgscale.c │ │ ├── pgsctter.c │ │ ├── pgstyle.c │ │ ├── pgtitle.c │ │ ├── pgvars.c │ │ └── pgvlabel.c │ ├── dos386r │ │ └── makefile │ ├── dos386s │ │ └── makefile │ ├── dosi86 │ │ └── makefile │ ├── h │ │ ├── pgentry.h │ │ ├── pgstubs.h │ │ └── pgvars.h │ ├── lang.ctl │ ├── os2386 │ │ └── makefile │ ├── pgchart.mif │ └── wini86 │ │ └── makefile ├── plusplus │ ├── a │ │ ├── casm386.asm │ │ ├── casmsupp.asm │ │ └── criterr.asm │ ├── bin │ │ └── readme.txt │ ├── boot386.ctl │ ├── booti86.ctl │ ├── bugs │ │ ├── afs074.c │ │ ├── afs116.c │ │ ├── afs125.c │ │ ├── afs126.c │ │ ├── afs162.c │ │ ├── afs164.c │ │ ├── afs179.c │ │ ├── afs180.c │ │ ├── afs181.c │ │ ├── afs187.c │ │ ├── afs191.c │ │ ├── afs192.c │ │ ├── afs197.c │ │ ├── afs199.c │ │ ├── afs200.c │ │ ├── afs203.c │ │ ├── afs207.c │ │ ├── afs209.c │ │ ├── afs211.c │ │ ├── afs219.c │ │ ├── afs225.c │ │ ├── afs226.c │ │ ├── afs230.c │ │ ├── afs232.c │ │ ├── afs233.c │ │ ├── afs234.c │ │ ├── afs237.c │ │ ├── afs238.c │ │ ├── afs239.c │ │ ├── afs240.c │ │ ├── afs241.c │ │ ├── afs242.c │ │ ├── afs243.c │ │ ├── bcc01.c │ │ ├── bcc02.c │ │ ├── bcc03.c │ │ ├── bcc04.c │ │ ├── bcc05.c │ │ ├── bcc07.c │ │ ├── bcc08.c │ │ ├── bcc09.c │ │ ├── bcc10.c │ │ ├── bcc11.c │ │ ├── bcc12.c │ │ ├── bcc13.c │ │ ├── bcc14.c │ │ ├── bcc15.c │ │ ├── bcc16.c │ │ ├── bcc17.c │ │ ├── bcc18.c │ │ ├── bcc19.c │ │ ├── bcc20.c │ │ ├── bcc21.c │ │ ├── bcc22.c │ │ ├── grb27.c │ │ ├── grb45.c │ │ ├── grb51.c │ │ ├── grb56.c │ │ ├── grb61.c │ │ ├── grb62.c │ │ ├── grb63.c │ │ ├── grb64.c │ │ ├── grb65.c │ │ ├── grb67.c │ │ ├── hcc01.c │ │ ├── hcc02.c │ │ ├── hcc03.c │ │ ├── hcc04.c │ │ ├── hcc05.c │ │ ├── jcc01.c │ │ ├── jcc02.c │ │ ├── jcc03.c │ │ ├── jcc04.c │ │ ├── jcc05.c │ │ ├── jcc06.c │ │ ├── jww149.c │ │ ├── jww221.c │ │ ├── jww445.c │ │ ├── jww468.c │ │ ├── jww475.c │ │ ├── jww489.c │ │ ├── jww544.c │ │ ├── jww545.c │ │ ├── lisa001.c │ │ ├── lisa002.c │ │ ├── lisa003.c │ │ ├── lisa004.c │ │ ├── lisa005.c │ │ ├── lisa006.c │ │ ├── lisa007.c │ │ ├── lisa008.c │ │ ├── lisa009.c │ │ ├── lisa010.c │ │ ├── lisa011.c │ │ ├── lisa012.c │ │ ├── lisa013.c │ │ ├── lisa014.c │ │ ├── lisa015.c │ │ ├── lisa016.c │ │ ├── lisa017.c │ │ ├── lisa018.c │ │ ├── lisa019.c │ │ ├── lisa021.c │ │ ├── lisa025.c │ │ ├── msc01.c │ │ ├── msc02.c │ │ ├── msc03.c │ │ ├── msc04.c │ │ ├── msc05.c │ │ ├── msc06.c │ │ ├── msc07.c │ │ ├── msc08.c │ │ ├── msc09.c │ │ ├── msc10.c │ │ ├── msc11.c │ │ ├── msc12.c │ │ ├── msc13.c │ │ ├── msc14.c │ │ ├── msc15.c │ │ ├── msc16.c │ │ ├── msc17.c │ │ ├── msc18.c │ │ ├── msc19.c │ │ ├── open02.c │ │ ├── open08.c │ │ ├── open09.c │ │ ├── open11.c │ │ ├── open12.c │ │ ├── open13.c │ │ ├── open14.c │ │ ├── open15.c │ │ ├── open16.c │ │ ├── opt002.c │ │ ├── opt101.c │ │ ├── opt102.c │ │ ├── opt103.c │ │ ├── wcc01.c │ │ ├── wcc02.c │ │ ├── wcc03.c │ │ ├── wcc04.c │ │ ├── wcc05.c │ │ ├── wcc06.c │ │ ├── zcc01.c │ │ ├── zcc02.c │ │ ├── zcc03.c │ │ ├── zcc04.c │ │ ├── zcc05.c │ │ ├── zcc06.c │ │ ├── zcc07.c │ │ ├── zcc08.c │ │ ├── zcc09.c │ │ ├── zcc10.c │ │ ├── zcc11.c │ │ ├── zcc12.c │ │ ├── zcc13.c │ │ ├── zcc14.c │ │ ├── zcc15.c │ │ ├── zcc16.c │ │ ├── zcc17.c │ │ └── zcc18.c │ ├── c │ │ ├── analcall.c │ │ ├── analcast.c │ │ ├── analclss.c │ │ ├── analconv.c │ │ ├── analctor.c │ │ ├── anallval.c │ │ ├── analnew.c │ │ ├── analnode.c │ │ ├── analpcnv.c │ │ ├── analretn.c │ │ ├── analtyid.c │ │ ├── analtype.c │ │ ├── analudc.c │ │ ├── analyse.c │ │ ├── arglist.c │ │ ├── ascii.c │ │ ├── asmalloc.c │ │ ├── asmmsg.c │ │ ├── asmstmt.c │ │ ├── autodep.c │ │ ├── brinfdep.c │ │ ├── brinfmac.c │ │ ├── brinfo.c │ │ ├── brinfsrc.c │ │ ├── brmwrite.c │ │ ├── browsio.c │ │ ├── calldiag.c │ │ ├── callgrph.c │ │ ├── callopt.c │ │ ├── casian.c │ │ ├── caux.c │ │ ├── cdopt.c │ │ ├── cgbackhn.c │ │ ├── cgbkarel.c │ │ ├── cgbkbpos.c │ │ ├── cgbkcbak.c │ │ ├── cgbkcdpm.c │ │ ├── cgbkcgrf.c │ │ ├── cgbkclab.c │ │ ├── cgbkcmds.c │ │ ├── cgbkcond.c │ │ ├── cgbkcstb.c │ │ ├── cgbkcstk.c │ │ ├── cgbkdecl.c │ │ ├── cgbkexpr.c │ │ ├── cgbkfctl.c │ │ ├── cgbkftab.c │ │ ├── cgbkibrp.c │ │ ├── cgbklabs.c │ │ ├── cgbkmain.c │ │ ├── cgbkobin.c │ │ ├── cgbkretn.c │ │ ├── cgbkrreg.c │ │ ├── cgbkrtti.c │ │ ├── cgbkrvar.c │ │ ├── cgbkscop.c │ │ ├── cgbkstab.c │ │ ├── cgbkstrn.c │ │ ├── cgbksvar.c │ │ ├── cgbkswit.c │ │ ├── cgbkthrw.c │ │ ├── cgbktsig.c │ │ ├── cgbkutil.c │ │ ├── cgbkvftb.c │ │ ├── cgfront.c │ │ ├── cginfo.c │ │ ├── cginimps.c │ │ ├── cginlibs.c │ │ ├── cginmisc.c │ │ ├── cgio.c │ │ ├── cgiobuff.c │ │ ├── cgsegid.c │ │ ├── cgtype.c │ │ ├── class.c │ │ ├── cmac1.c │ │ ├── cmac2.c │ │ ├── cmacadd.c │ │ ├── cmacsupp.c │ │ ├── cmatherr.c │ │ ├── cmdln.c │ │ ├── cmdlnany.c │ │ ├── cmdlnaxp.c │ │ ├── cmdlnbat.c │ │ ├── cmdlnctx.c │ │ ├── cmdlnx86.c │ │ ├── conpool.c │ │ ├── context.c │ │ ├── convctl.c │ │ ├── convdiag.c │ │ ├── cppexit.c │ │ ├── cpragaxp.c │ │ ├── cpragma.c │ │ ├── cpragx86.c │ │ ├── cscan.c │ │ ├── ctimepc.c │ │ ├── cusage.c │ │ ├── datadtor.c │ │ ├── datainit.c │ │ ├── dbg.c │ │ ├── dbgcomma.c │ │ ├── dbgheap.c │ │ ├── dbgio.c │ │ ├── dbgptree.c │ │ ├── dbgsupp.c │ │ ├── decl.c │ │ ├── defarg.c │ │ ├── dgfront.c │ │ ├── dirgraph.c │ │ ├── dmpobjmd.c │ │ ├── doxyfile │ │ ├── dupnode.c │ │ ├── dwarf.c │ │ ├── dwio.c │ │ ├── dwiobuff.c │ │ ├── dyncast.c │ │ ├── ebcdic.c │ │ ├── enum.c │ │ ├── except.c │ │ ├── extrf86.c │ │ ├── floatsup.c │ │ ├── fmtmsg.c │ │ ├── fmtsym.c │ │ ├── fmttype.c │ │ ├── fname.c │ │ ├── fnbody.c │ │ ├── fnname.c │ │ ├── fnovload.c │ │ ├── fnovprt.c │ │ ├── fnovrank.c │ │ ├── fold.c │ │ ├── globdata.c │ │ ├── gstack.c │ │ ├── hashtab.c │ │ ├── hfile.c │ │ ├── i64supp.c │ │ ├── ialias.c │ │ ├── icemit.c │ │ ├── icmask.c │ │ ├── ideentry.c │ │ ├── initref.c │ │ ├── iosupp.c │ │ ├── jis2unic.c │ │ ├── keyword.c │ │ ├── label.c │ │ ├── linkage.c │ │ ├── maindrv.c │ │ ├── mainproc.c │ │ ├── membptr.c │ │ ├── memmgr.c │ │ ├── message.c │ │ ├── mktrans.c │ │ ├── module.c │ │ ├── name.c │ │ ├── namspace.c │ │ ├── objmodel.c │ │ ├── opovload.c │ │ ├── pcheader.c │ │ ├── plusplus.c │ │ ├── ppexpn.c │ │ ├── prag386.c │ │ ├── pragaxp.c │ │ ├── pragi86.c │ │ ├── preproc.c │ │ ├── ptree.c │ │ ├── ptreedec.c │ │ ├── reposit.c │ │ ├── rewrite.c │ │ ├── ring.c │ │ ├── ringname.c │ │ ├── rtfun.c │ │ ├── rtngen.c │ │ ├── rtti.c │ │ ├── scope.c │ │ ├── segment.c │ │ ├── specfuns.c │ │ ├── srcfile.c │ │ ├── stack.c │ │ ├── stats.c │ │ ├── stringl.c │ │ ├── symbol.c │ │ ├── symdbg.c │ │ ├── symlocn.c │ │ ├── sysdep.c │ │ ├── template.c │ │ ├── tempor.c │ │ ├── thunk.c │ │ ├── tokenbuf.c │ │ ├── tokens.c │ │ ├── type.c │ │ ├── typecomp.c │ │ ├── typerank.c │ │ ├── typesig.c │ │ ├── umktable.c │ │ ├── utility.c │ │ ├── vfun.c │ │ ├── watcom.c │ │ └── yydriver.c │ ├── catfile │ │ ├── catfile.c │ │ └── makefile │ ├── cg_nits │ │ ├── bfield01.c │ │ ├── dtor01.c │ │ ├── inline01.c │ │ ├── inline02.c │ │ ├── inline03.c │ │ ├── self.c │ │ ├── side01.c │ │ ├── thunk01.c │ │ ├── thunk02.c │ │ └── vbase01.c │ ├── cpplib │ │ ├── builder.ctl │ │ ├── clean.ctl │ │ ├── complex │ │ │ ├── complex.mif │ │ │ ├── cpp │ │ │ │ ├── abs.cpp │ │ │ │ ├── acos.cpp │ │ │ │ ├── acosh.cpp │ │ │ │ ├── arg.cpp │ │ │ │ ├── asin.cpp │ │ │ │ ├── asinh.cpp │ │ │ │ ├── atan.cpp │ │ │ │ ├── atanh.cpp │ │ │ │ ├── cos.cpp │ │ │ │ ├── cosh.cpp │ │ │ │ ├── dicomcom.cpp │ │ │ │ ├── direlcom.cpp │ │ │ │ ├── divide.cpp │ │ │ │ ├── exp.cpp │ │ │ │ ├── log.cpp │ │ │ │ ├── log10.cpp │ │ │ │ ├── multiply.cpp │ │ │ │ ├── opinput.cpp │ │ │ │ ├── opoutput.cpp │ │ │ │ ├── polar.cpp │ │ │ │ ├── powcbcp.cpp │ │ │ │ ├── powcbdp.cpp │ │ │ │ ├── powccbip.cpp │ │ │ │ ├── powdbcp.cpp │ │ │ │ ├── sin.cpp │ │ │ │ ├── sinh.cpp │ │ │ │ ├── sqrt.cpp │ │ │ │ ├── tan.cpp │ │ │ │ └── tanh.cpp │ │ │ ├── generic.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── generic.087 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── generic.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── generic.387 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── netware.386 │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── netware.387 │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── windows.087 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ └── winnt.axp │ │ │ │ └── _s │ │ │ │ └── makefile │ │ ├── contain │ │ │ ├── contain.mif │ │ │ ├── cpp │ │ │ │ ├── wcexcept.cpp │ │ │ │ ├── wchash.cpp │ │ │ │ ├── wclist.cpp │ │ │ │ └── wcskip.cpp │ │ │ ├── doc │ │ │ │ ├── hash.txt │ │ │ │ ├── hashiter.txt │ │ │ │ ├── list.txt │ │ │ │ ├── listchg.txt │ │ │ │ ├── skip.txt │ │ │ │ └── vector.txt │ │ │ ├── generic.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── generic.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── mf_smt │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ ├── ms_rmt │ │ │ │ │ └── makefile │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_smt │ │ │ │ │ └── makefile │ │ │ ├── os2.286 │ │ │ │ └── ml_mt │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtd.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── mf_smt.dll │ │ │ │ │ └── makefile │ │ │ │ └── mf_smt │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_rmt │ │ │ │ │ └── makefile │ │ │ │ └── ms_smt │ │ │ │ │ └── makefile │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtd.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtp.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtp │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── mf_smt.dll │ │ │ │ │ └── makefile │ │ │ │ └── mf_smt │ │ │ │ │ └── makefile │ │ │ └── winnt.axp │ │ │ │ ├── _s │ │ │ │ └── makefile │ │ │ │ └── _smt │ │ │ │ └── makefile │ │ ├── files.dat │ │ ├── generic.086 │ │ │ ├── mc │ │ │ │ └── makefile │ │ │ ├── mh │ │ │ │ └── makefile │ │ │ ├── ml │ │ │ │ └── makefile │ │ │ ├── mm │ │ │ │ └── makefile │ │ │ └── ms │ │ │ │ └── makefile │ │ ├── generic.386 │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ ├── mf_rmt │ │ │ │ └── makefile │ │ │ ├── mf_s │ │ │ │ └── makefile │ │ │ ├── mf_smt │ │ │ │ └── makefile │ │ │ ├── ms_r │ │ │ │ └── makefile │ │ │ ├── ms_rmt │ │ │ │ └── makefile │ │ │ ├── ms_s │ │ │ │ └── makefile │ │ │ └── ms_smt │ │ │ │ └── makefile │ │ ├── iostream │ │ │ ├── cpp │ │ │ │ ├── flf.cpp │ │ │ │ ├── flfattac.cpp │ │ │ │ ├── flfclose.cpp │ │ │ │ ├── flfconde.cpp │ │ │ │ ├── flfconfd.cpp │ │ │ │ ├── flfconsf.cpp │ │ │ │ ├── flfdestr.cpp │ │ │ │ ├── flfname.txt │ │ │ │ ├── flfopen.cpp │ │ │ │ ├── flfoprot.cpp │ │ │ │ ├── flfoverf.cpp │ │ │ │ ├── flfpbfai.cpp │ │ │ │ ├── flfseeko.cpp │ │ │ │ ├── flfsetbf.cpp │ │ │ │ ├── flfsync.cpp │ │ │ │ ├── flfundrf.cpp │ │ │ │ ├── fsb.cpp │ │ │ │ ├── fsbattac.cpp │ │ │ │ ├── fsbclose.cpp │ │ │ │ ├── fsbconde.cpp │ │ │ │ ├── fsbconfd.cpp │ │ │ │ ├── fsbconnm.cpp │ │ │ │ ├── fsbconsf.cpp │ │ │ │ ├── fsbdestr.cpp │ │ │ │ ├── fsbopen.cpp │ │ │ │ ├── fsbsetbf.cpp │ │ │ │ ├── fst.cpp │ │ │ │ ├── fstconde.cpp │ │ │ │ ├── fstconfd.cpp │ │ │ │ ├── fstconnm.cpp │ │ │ │ ├── fstconsf.cpp │ │ │ │ ├── fstdestr.cpp │ │ │ │ ├── fstname.txt │ │ │ │ ├── ifs.cpp │ │ │ │ ├── ifsconde.cpp │ │ │ │ ├── ifsconfd.cpp │ │ │ │ ├── ifsconnm.cpp │ │ │ │ ├── ifsconsf.cpp │ │ │ │ ├── ifsdestr.cpp │ │ │ │ ├── iof.cpp │ │ │ │ ├── iofdefg.cpp │ │ │ │ ├── iofefg.cpp │ │ │ │ ├── iofexdou.cpp │ │ │ │ ├── iofexflo.cpp │ │ │ │ ├── iofexldo.cpp │ │ │ │ ├── iofgldfl.cpp │ │ │ │ ├── iofldfst.cpp │ │ │ │ ├── iofname.txt │ │ │ │ ├── iofnoefg.cpp │ │ │ │ ├── iofoutfl.cpp │ │ │ │ ├── ioi.cpp │ │ │ │ ├── ioicerr.cpp │ │ │ │ ├── ioicin.cpp │ │ │ │ ├── ioiclog.cpp │ │ │ │ ├── ioicout.cpp │ │ │ │ ├── ioilfofg.cpp │ │ │ │ ├── ioilock.cpp │ │ │ │ ├── ioixainx.cpp │ │ │ │ ├── iol.cpp │ │ │ │ ├── iolglcon.cpp │ │ │ │ ├── iolgldes.cpp │ │ │ │ ├── iolname.txt │ │ │ │ ├── ios_.cpp │ │ │ │ ├── iosbital.cpp │ │ │ │ ├── iosclear.cpp │ │ │ │ ├── ioscoeio.cpp │ │ │ │ ├── ioscoios.cpp │ │ │ │ ├── iosconde.cpp │ │ │ │ ├── ioscostf.cpp │ │ │ │ ├── iosdestr.cpp │ │ │ │ ├── iosexcep.cpp │ │ │ │ ├── iosfacau.cpp │ │ │ │ ├── iosfail.cpp │ │ │ │ ├── iosgnilk.cpp │ │ │ │ ├── iosinit.cpp │ │ │ │ ├── iosiword.cpp │ │ │ │ ├── iosname.txt │ │ │ │ ├── iospword.cpp │ │ │ │ ├── iossetst.cpp │ │ │ │ ├── iosxallo.cpp │ │ │ │ ├── iot.cpp │ │ │ │ ├── iotconbf.cpp │ │ │ │ ├── iotconde.cpp │ │ │ │ ├── iotconsm.cpp │ │ │ │ ├── iotdestr.cpp │ │ │ │ ├── iotname.txt │ │ │ │ ├── iotopbuf.cpp │ │ │ │ ├── iotopstm.cpp │ │ │ │ ├── iou.cpp │ │ │ │ ├── ioufgtba.cpp │ │ │ │ ├── ioufrxal.cpp │ │ │ │ ├── ioufuswr.cpp │ │ │ │ ├── iouname.txt │ │ │ │ ├── iouwrtit.cpp │ │ │ │ ├── iss.cpp │ │ │ │ ├── isscochz.cpp │ │ │ │ ├── issconch.cpp │ │ │ │ ├── issconsc.cpp │ │ │ │ ├── issconuc.cpp │ │ │ │ ├── isscoscz.cpp │ │ │ │ ├── isscoucz.cpp │ │ │ │ ├── issdestr.cpp │ │ │ │ ├── ist.cpp │ │ │ │ ├── istcoeis.cpp │ │ │ │ ├── istcoesf.cpp │ │ │ │ ├── istcoist.cpp │ │ │ │ ├── istconde.cpp │ │ │ │ ├── istconsf.cpp │ │ │ │ ├── istdestr.cpp │ │ │ │ ├── istdipfx.cpp │ │ │ │ ├── istdoget.cpp │ │ │ │ ├── istdread.cpp │ │ │ │ ├── istdrshf.cpp │ │ │ │ ├── isteatwh.cpp │ │ │ │ ├── istexcha.cpp │ │ │ │ ├── istexi64.cpp │ │ │ │ ├── isteximn.cpp │ │ │ │ ├── istexiom.cpp │ │ │ │ ├── istexpch.cpp │ │ │ │ ├── istexsin.cpp │ │ │ │ ├── istexslo.cpp │ │ │ │ ├── istexssh.cpp │ │ │ │ ├── istexstf.cpp │ │ │ │ ├── istexu64.cpp │ │ │ │ ├── istexuin.cpp │ │ │ │ ├── istexulo.cpp │ │ │ │ ├── istexush.cpp │ │ │ │ ├── istgalin.cpp │ │ │ │ ├── istgbase.cpp │ │ │ │ ├── istgch.cpp │ │ │ │ ├── istget.cpp │ │ │ │ ├── istgetul.cpp │ │ │ │ ├── istgline.cpp │ │ │ │ ├── istgnm64.cpp │ │ │ │ ├── istgnum.cpp │ │ │ │ ├── istgpch.cpp │ │ │ │ ├── istgsign.cpp │ │ │ │ ├── istgstf.cpp │ │ │ │ ├── istgtu64.cpp │ │ │ │ ├── istignor.cpp │ │ │ │ ├── istipfx.cpp │ │ │ │ ├── istname.txt │ │ │ │ ├── istpback.cpp │ │ │ │ ├── istpeek.cpp │ │ │ │ ├── istread.cpp │ │ │ │ ├── istream.cpp │ │ │ │ ├── istsgsto.cpp │ │ │ │ ├── istsgstp.cpp │ │ │ │ ├── istsync.cpp │ │ │ │ ├── isttellg.cpp │ │ │ │ ├── man.cpp │ │ │ │ ├── mandec.cpp │ │ │ │ ├── manendl.cpp │ │ │ │ ├── manends.cpp │ │ │ │ ├── manflush.cpp │ │ │ │ ├── manhex.cpp │ │ │ │ ├── manname.txt │ │ │ │ ├── manoct.cpp │ │ │ │ ├── manriofg.cpp │ │ │ │ ├── mansbase.cpp │ │ │ │ ├── mansetw.cpp │ │ │ │ ├── mansfill.cpp │ │ │ │ ├── mansiofl.cpp │ │ │ │ ├── mansprec.cpp │ │ │ │ ├── manws.cpp │ │ │ │ ├── ofs.cpp │ │ │ │ ├── ofsconde.cpp │ │ │ │ ├── ofsconfd.cpp │ │ │ │ ├── ofsconnm.cpp │ │ │ │ ├── ofsconsf.cpp │ │ │ │ ├── ofsdestr.cpp │ │ │ │ ├── oss.cpp │ │ │ │ ├── ossconch.cpp │ │ │ │ ├── ossconde.cpp │ │ │ │ ├── ossconsc.cpp │ │ │ │ ├── ossconuc.cpp │ │ │ │ ├── ossdestr.cpp │ │ │ │ ├── ost.cpp │ │ │ │ ├── ostadpre.cpp │ │ │ │ ├── ostcoeos.cpp │ │ │ │ ├── ostcoesf.cpp │ │ │ │ ├── ostconde.cpp │ │ │ │ ├── ostconsf.cpp │ │ │ │ ├── ostcoost.cpp │ │ │ │ ├── ostdestr.cpp │ │ │ │ ├── ostdlshf.cpp │ │ │ │ ├── ostflush.cpp │ │ │ │ ├── ostincch.cpp │ │ │ │ ├── ostincha.cpp │ │ │ │ ├── ostini64.cpp │ │ │ │ ├── ostiniom.cpp │ │ │ │ ├── ostinomn.cpp │ │ │ │ ├── ostinptr.cpp │ │ │ │ ├── ostinslo.cpp │ │ │ │ ├── ostinstf.cpp │ │ │ │ ├── ostinu64.cpp │ │ │ │ ├── ostinulo.cpp │ │ │ │ ├── ostname.txt │ │ │ │ ├── ostopfx.cpp │ │ │ │ ├── ostosfx.cpp │ │ │ │ ├── ostput.cpp │ │ │ │ ├── ostspsto.cpp │ │ │ │ ├── ostspstp.cpp │ │ │ │ ├── osttellp.cpp │ │ │ │ ├── ostwrite.cpp │ │ │ │ ├── sdf.cpp │ │ │ │ ├── sdfconde.cpp │ │ │ │ ├── sdfconfp.cpp │ │ │ │ ├── sdfdestr.cpp │ │ │ │ ├── sdfname.txt │ │ │ │ ├── sdfoverf.cpp │ │ │ │ ├── sdfsread.cpp │ │ │ │ ├── sdfsync.cpp │ │ │ │ ├── sdfundrf.cpp │ │ │ │ ├── ssb.cpp │ │ │ │ ├── ssbconde.cpp │ │ │ │ ├── ssbconsz.cpp │ │ │ │ ├── ssbdestr.cpp │ │ │ │ ├── ssf.cpp │ │ │ │ ├── ssfdestr.cpp │ │ │ │ ├── ssfdoall.cpp │ │ │ │ ├── ssfempsf.cpp │ │ │ │ ├── ssfempsz.cpp │ │ │ │ ├── ssfgpos.cpp │ │ │ │ ├── ssfoverf.cpp │ │ │ │ ├── ssfseeko.cpp │ │ │ │ ├── ssfsetbf.cpp │ │ │ │ ├── ssfstbuf.cpp │ │ │ │ ├── ssfstr.cpp │ │ │ │ ├── ssfsync.cpp │ │ │ │ ├── ssfundrf.cpp │ │ │ │ ├── sst.cpp │ │ │ │ ├── sstconch.cpp │ │ │ │ ├── sstconde.cpp │ │ │ │ ├── sstconsc.cpp │ │ │ │ ├── sstconuc.cpp │ │ │ │ ├── sstdestr.cpp │ │ │ │ ├── sstname.txt │ │ │ │ ├── stf.cpp │ │ │ │ ├── stfconb.cpp │ │ │ │ ├── stfconde.cpp │ │ │ │ ├── stfdbp.cpp │ │ │ │ ├── stfdestr.cpp │ │ │ │ ├── stfdoall.cpp │ │ │ │ ├── stfdsgtn.cpp │ │ │ │ ├── stfdspun.cpp │ │ │ │ ├── stfgnslk.cpp │ │ │ │ ├── stfname.txt │ │ │ │ ├── stfpbfai.cpp │ │ │ │ ├── stfsbuf.cpp │ │ │ │ ├── stfseeko.cpp │ │ │ │ ├── stfseekp.cpp │ │ │ │ ├── stfsetb.cpp │ │ │ │ └── stfsync.cpp │ │ │ ├── generic.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── generic.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── mf_smt │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ ├── ms_rmt │ │ │ │ │ └── makefile │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_smt │ │ │ │ │ └── makefile │ │ │ ├── h │ │ │ │ ├── iofhdr.h │ │ │ │ ├── ioshdr.h │ │ │ │ ├── iost.h │ │ │ │ ├── ioutil.h │ │ │ │ ├── isthdr.h │ │ │ │ ├── osthdr.h │ │ │ │ ├── sdfhdr.h │ │ │ │ ├── ssfhdr.h │ │ │ │ └── stfhdr.h │ │ │ ├── iostream.mif │ │ │ ├── os2.286 │ │ │ │ └── ml_mt │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtd.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── mf_smt.dll │ │ │ │ │ └── makefile │ │ │ │ └── mf_smt │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_rmt │ │ │ │ │ └── makefile │ │ │ │ └── ms_smt │ │ │ │ │ └── makefile │ │ │ ├── static.mif │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtd.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtp.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtp │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── mf_smt.dll │ │ │ │ │ └── makefile │ │ │ │ └── mf_smt │ │ │ │ │ └── makefile │ │ │ └── winnt.axp │ │ │ │ ├── _s │ │ │ │ └── makefile │ │ │ │ └── _smt │ │ │ │ └── makefile │ │ ├── lang.ctl │ │ ├── libtarg.mif │ │ ├── mklib.mif │ │ ├── mklibtgt.mif │ │ ├── mrglib.mif │ │ ├── os2.286 │ │ │ └── ml_mt │ │ │ │ └── makefile │ │ ├── os2.386 │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ ├── mf_rd │ │ │ │ └── makefile │ │ │ ├── mf_rmt.dll │ │ │ │ └── makefile │ │ │ ├── mf_rmt │ │ │ │ └── makefile │ │ │ ├── mf_rmtd.dll │ │ │ │ └── makefile │ │ │ ├── mf_rmtd │ │ │ │ └── makefile │ │ │ ├── mf_s │ │ │ │ └── makefile │ │ │ ├── mf_smt.dll │ │ │ │ └── makefile │ │ │ └── mf_smt │ │ │ │ └── makefile │ │ ├── plib.mif │ │ ├── plibname.mif │ │ ├── prereq.ctl │ │ ├── qnx.386 │ │ │ ├── ms_rmt │ │ │ │ └── makefile │ │ │ └── ms_smt │ │ │ │ └── makefile │ │ ├── rtdll │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ └── objs.mif │ │ │ └── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ └── makefile │ │ │ │ ├── mf_rp │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ └── makefile │ │ │ │ ├── objs.mif │ │ │ │ └── verinfo.rc │ │ ├── runtime │ │ │ ├── a │ │ │ │ ├── fshand.asm │ │ │ │ └── pdctxaxp.asm │ │ │ ├── cpp │ │ │ │ ├── _stnwhdl.cpp │ │ │ │ ├── allocexc.cpp │ │ │ │ ├── areaexc.cpp │ │ │ │ ├── arrassgn.cpp │ │ │ │ ├── arrdel.cpp │ │ │ │ ├── arrdelx.cpp │ │ │ │ ├── arrnew.cpp │ │ │ │ ├── bittest.cpp │ │ │ │ ├── callterm.cpp │ │ │ │ ├── callunex.cpp │ │ │ │ ├── cppdata.cpp │ │ │ │ ├── ctorarst.cpp │ │ │ │ ├── darrnew.cpp │ │ │ │ ├── dfsroot.cpp │ │ │ │ ├── dstabmod.cpp │ │ │ │ ├── dtorarst.cpp │ │ │ │ ├── exc_pr.cpp │ │ │ │ ├── exnonsys.cpp │ │ │ │ ├── fatalerr.cpp │ │ │ │ ├── fsregist.cpp │ │ │ │ ├── fsroot.cpp │ │ │ │ ├── generr.cpp │ │ │ │ ├── ljmpdtor.cpp │ │ │ │ ├── ljmpinit.cpp │ │ │ │ ├── lock.cpp │ │ │ │ ├── moddtorr.cpp │ │ │ │ ├── opdel.cpp │ │ │ │ ├── opdelarr.cpp │ │ │ │ ├── opnew.cpp │ │ │ │ ├── opnewarr.cpp │ │ │ │ ├── opnewp.cpp │ │ │ │ ├── opnewpar.cpp │ │ │ │ ├── pdregist.cpp │ │ │ │ ├── pgmthrd.cpp │ │ │ │ ├── prwdata.cpp │ │ │ │ ├── pure_err.cpp │ │ │ │ ├── rtdbgcom.cpp │ │ │ │ ├── rtdbgst.cpp │ │ │ │ ├── rttidync.cpp │ │ │ │ ├── rttiptr.cpp │ │ │ │ ├── rttiref.cpp │ │ │ │ ├── rttisupp.cpp │ │ │ │ ├── rttitid.cpp │ │ │ │ ├── rttivoid.cpp │ │ │ │ ├── setnwhdl.cpp │ │ │ │ ├── settrmnt.cpp │ │ │ │ ├── setunexp.cpp │ │ │ │ ├── sisema.cpp │ │ │ │ ├── stabacp.cpp │ │ │ │ ├── stabacpv.cpp │ │ │ │ ├── stabact.cpp │ │ │ │ ├── stabactv.cpp │ │ │ │ ├── stabadt.cpp │ │ │ │ ├── stabarr.cpp │ │ │ │ ├── stabdisp.cpp │ │ │ │ ├── stabdtor.cpp │ │ │ │ ├── stabfunc.cpp │ │ │ │ ├── stabinit.cpp │ │ │ │ ├── stablcl.cpp │ │ │ │ ├── stabmod.cpp │ │ │ │ ├── stabreg.cpp │ │ │ │ ├── stabthrw.cpp │ │ │ │ ├── stabtrav.cpp │ │ │ │ ├── termnate.cpp │ │ │ │ ├── thrddata.cpp │ │ │ │ ├── ti_bfor.cpp │ │ │ │ ├── ti_dtor.cpp │ │ │ │ ├── ti_name.cpp │ │ │ │ ├── ti_opeq.cpp │ │ │ │ ├── ti_opne.cpp │ │ │ │ ├── ti_raw.cpp │ │ │ │ ├── tsequiv.cpp │ │ │ │ ├── tssize.cpp │ │ │ │ ├── undefed.cpp │ │ │ │ ├── undefmbd.cpp │ │ │ │ ├── undefmbr.cpp │ │ │ │ ├── unexpect.cpp │ │ │ │ ├── varrnew.cpp │ │ │ │ └── vfun_err.cpp │ │ │ ├── generic.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── generic.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── mf_smt │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ ├── ms_rmt │ │ │ │ │ └── makefile │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_smt │ │ │ │ │ └── makefile │ │ │ ├── h │ │ │ │ ├── cpplib.h │ │ │ │ ├── exc_pr.h │ │ │ │ ├── fsreg.h │ │ │ │ ├── kluges.h │ │ │ │ ├── lock.h │ │ │ │ ├── pditer.h │ │ │ │ ├── rt_rtti.h │ │ │ │ ├── rtarctor.h │ │ │ │ ├── rtctl.h │ │ │ │ ├── rtdtor.h │ │ │ │ ├── rtexcept.h │ │ │ │ └── rtmsgs.h │ │ │ ├── nt386.def │ │ │ ├── os2.286 │ │ │ │ └── ml_mt │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtd.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── mf_smt.dll │ │ │ │ │ └── makefile │ │ │ │ └── mf_smt │ │ │ │ │ └── makefile │ │ │ ├── os2386.def │ │ │ ├── plib.mif │ │ │ ├── qnx.386 │ │ │ │ ├── ms_rmt │ │ │ │ │ └── makefile │ │ │ │ └── ms_smt │ │ │ │ │ └── makefile │ │ │ ├── static.mif │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtd.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtp.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtp │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── mf_smt.dll │ │ │ │ │ └── makefile │ │ │ │ └── mf_smt │ │ │ │ │ └── makefile │ │ │ └── winnt.axp │ │ │ │ ├── _s │ │ │ │ └── makefile │ │ │ │ └── _smt │ │ │ │ └── makefile │ │ ├── string │ │ │ ├── cpp │ │ │ │ ├── allocrep.cpp │ │ │ │ ├── allomusz.cpp │ │ │ │ ├── appendst.cpp │ │ │ │ ├── compchar.cpp │ │ │ │ ├── compstr.cpp │ │ │ │ ├── condefau.cpp │ │ │ │ ├── constcst.cpp │ │ │ │ ├── constrch.cpp │ │ │ │ ├── constrst.cpp │ │ │ │ ├── conszcap.cpp │ │ │ │ ├── destruct.cpp │ │ │ │ ├── filename.txt │ │ │ │ ├── freestr.cpp │ │ │ │ ├── indexcha.cpp │ │ │ │ ├── indexstr.cpp │ │ │ │ ├── joinstr.cpp │ │ │ │ ├── matchcst.cpp │ │ │ │ ├── matchs.cpp │ │ │ │ ├── matchstr.cpp │ │ │ │ ├── opappcst.cpp │ │ │ │ ├── opappstr.cpp │ │ │ │ ├── opasstcs.cpp │ │ │ │ ├── opasstst.cpp │ │ │ │ ├── opcachst.cpp │ │ │ │ ├── opcacrst.cpp │ │ │ │ ├── opcastch.cpp │ │ │ │ ├── opcastcr.cpp │ │ │ │ ├── opcastst.cpp │ │ │ │ ├── opco1sch.cpp │ │ │ │ ├── opcostch.cpp │ │ │ │ ├── opcostsc.cpp │ │ │ │ ├── opcrchar.cpp │ │ │ │ ├── opeqchst.cpp │ │ │ │ ├── opeqcrst.cpp │ │ │ │ ├── opeqstch.cpp │ │ │ │ ├── opeqstcr.cpp │ │ │ │ ├── opeqstst.cpp │ │ │ │ ├── opgqchst.cpp │ │ │ │ ├── opgqcrst.cpp │ │ │ │ ├── opgqstch.cpp │ │ │ │ ├── opgqstcr.cpp │ │ │ │ ├── opgqstst.cpp │ │ │ │ ├── opgrchst.cpp │ │ │ │ ├── opgrcrst.cpp │ │ │ │ ├── opgrstch.cpp │ │ │ │ ├── opgrstcr.cpp │ │ │ │ ├── opgrstst.cpp │ │ │ │ ├── opinput.cpp │ │ │ │ ├── oplechst.cpp │ │ │ │ ├── oplecrst.cpp │ │ │ │ ├── oplestch.cpp │ │ │ │ ├── oplestcr.cpp │ │ │ │ ├── oplestst.cpp │ │ │ │ ├── oplqchst.cpp │ │ │ │ ├── oplqcrst.cpp │ │ │ │ ├── oplqstch.cpp │ │ │ │ ├── oplqstcr.cpp │ │ │ │ ├── oplqstst.cpp │ │ │ │ ├── opnechst.cpp │ │ │ │ ├── opnecrst.cpp │ │ │ │ ├── opnestch.cpp │ │ │ │ ├── opnestcr.cpp │ │ │ │ ├── opnestst.cpp │ │ │ │ ├── opoutput.cpp │ │ │ │ ├── oprfchar.cpp │ │ │ │ ├── opsubstr.cpp │ │ │ │ ├── strsrch.cpp │ │ │ │ └── zapcase.cpp │ │ │ ├── generic.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── generic.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── mf_smt │ │ │ │ │ └── makefile │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ ├── ms_rmt │ │ │ │ │ └── makefile │ │ │ │ ├── ms_s │ │ │ │ │ └── makefile │ │ │ │ └── ms_smt │ │ │ │ │ └── makefile │ │ │ ├── h │ │ │ │ ├── stghdr.h │ │ │ │ ├── strng.h │ │ │ │ └── strsrch.def │ │ │ ├── os2.286 │ │ │ │ └── ml_mt │ │ │ │ │ └── makefile │ │ │ ├── os2.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtd.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── mf_smt.dll │ │ │ │ │ └── makefile │ │ │ │ └── mf_smt │ │ │ │ │ └── makefile │ │ │ ├── qnx.386 │ │ │ │ ├── ms_rmt │ │ │ │ │ └── makefile │ │ │ │ └── ms_smt │ │ │ │ │ └── makefile │ │ │ ├── string.mif │ │ │ ├── windows.086 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── winnt.386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmt │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtd.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtd │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtp.dll │ │ │ │ │ └── makefile │ │ │ │ ├── mf_rmtp │ │ │ │ │ └── makefile │ │ │ │ ├── mf_s │ │ │ │ │ └── makefile │ │ │ │ ├── mf_smt.dll │ │ │ │ │ └── makefile │ │ │ │ └── mf_smt │ │ │ │ │ └── makefile │ │ │ └── winnt.axp │ │ │ │ ├── _s │ │ │ │ └── makefile │ │ │ │ └── _smt │ │ │ │ └── makefile │ │ ├── windows.086 │ │ │ ├── mc │ │ │ │ └── makefile │ │ │ ├── ml │ │ │ │ └── makefile │ │ │ ├── mm │ │ │ │ └── makefile │ │ │ └── ms │ │ │ │ └── makefile │ │ ├── winnt.386 │ │ │ ├── mf_r │ │ │ │ └── makefile │ │ │ ├── mf_rmt.dll │ │ │ │ └── makefile │ │ │ ├── mf_rmt │ │ │ │ └── makefile │ │ │ ├── mf_rmtd.dll │ │ │ │ └── makefile │ │ │ ├── mf_rmtd │ │ │ │ └── makefile │ │ │ ├── mf_rmtp.dll │ │ │ │ └── makefile │ │ │ ├── mf_rmtp │ │ │ │ └── makefile │ │ │ ├── mf_s │ │ │ │ └── makefile │ │ │ ├── mf_smt.dll │ │ │ │ └── makefile │ │ │ └── mf_smt │ │ │ │ └── makefile │ │ └── winnt.axp │ │ │ ├── _s │ │ │ └── makefile │ │ │ └── _smt │ │ │ └── makefile │ ├── dnt386.386 │ │ └── makefile │ ├── dnt386.i86 │ │ └── makefile │ ├── dos2386.386 │ │ └── makefile │ ├── dos386.386 │ │ └── makefile │ ├── dos386.i86 │ │ └── makefile │ ├── exever.rc │ ├── fakeide │ │ ├── consread.c │ │ ├── consread.h │ │ ├── fakeide.c │ │ └── makefile │ ├── files.dat │ ├── gml │ │ ├── messages.gml │ │ ├── msgmacs.gml │ │ └── options.gml │ ├── h │ │ ├── 386 │ │ │ └── target.h │ │ ├── analtyid.h │ │ ├── asmstmt.h │ │ ├── autodep.h │ │ ├── axp │ │ │ └── target.h │ │ ├── brinfo.h │ │ ├── brinfoim.h │ │ ├── browsio.h │ │ ├── calldiag.h │ │ ├── callgrph.h │ │ ├── carvecpp.h │ │ ├── cast.h │ │ ├── cdopt.h │ │ ├── cgback.h │ │ ├── cgbackut.h │ │ ├── cgdata.h │ │ ├── cgdbg.h │ │ ├── cgfront.h │ │ ├── cginfo.h │ │ ├── cginimps.h │ │ ├── cginlibs.h │ │ ├── cginmisc.h │ │ ├── cgio.h │ │ ├── cgiobuff.h │ │ ├── cgsegid.h │ │ ├── class.h │ │ ├── cmacsupp.h │ │ ├── cmdline.h │ │ ├── cmdlnctx.h │ │ ├── cmdlnsys.h │ │ ├── codegen.h │ │ ├── compflag.h │ │ ├── conpool.h │ │ ├── context.h │ │ ├── convctl.h │ │ ├── cppdwarf.h │ │ ├── cppexit.h │ │ ├── ctexcept.h │ │ ├── ctokens.h │ │ ├── cusage.h │ │ ├── datadtor.h │ │ ├── datainit.h │ │ ├── dbg.h │ │ ├── dbgsupp.h │ │ ├── dbgtogg.h │ │ ├── decl.h │ │ ├── defarg.h │ │ ├── dirgraph.h │ │ ├── dwarfdbg.h │ │ ├── dwio.h │ │ ├── dwiobuff.h │ │ ├── enum.h │ │ ├── errdefns.h │ │ ├── escchars.h │ │ ├── extrf.h │ │ ├── fesupp.h │ │ ├── fingprnt.h │ │ ├── floatlim.h │ │ ├── floatsup.h │ │ ├── fmtmsg.h │ │ ├── fmtsym.h │ │ ├── fmttype.h │ │ ├── fname.h │ │ ├── fnbody.h │ │ ├── fnbodydt.h │ │ ├── fnovload.h │ │ ├── fnovrank.h │ │ ├── fnovrslt.h │ │ ├── fold.h │ │ ├── gstack.h │ │ ├── hashtab.h │ │ ├── hfile.h │ │ ├── i86 │ │ │ └── target.h │ │ ├── ialias.h │ │ ├── ic.h │ │ ├── icodes.h │ │ ├── icopmask.h │ │ ├── ideentry.h │ │ ├── inames.h │ │ ├── initspec.h │ │ ├── intsupp.h │ │ ├── ioptypes.h │ │ ├── iosupp.h │ │ ├── itypes.h │ │ ├── itypvec.h │ │ ├── label.h │ │ ├── linkage.h │ │ ├── macro.h │ │ ├── memmgr.h │ │ ├── module.h │ │ ├── name.h │ │ ├── namspace.h │ │ ├── objmodel.h │ │ ├── pcheader.h │ │ ├── pcregdef.h │ │ ├── pdefnfs.h │ │ ├── plusplus.h │ │ ├── ppintnam.h │ │ ├── ppopfstr.h │ │ ├── ppopint.h │ │ ├── ppops.h │ │ ├── ppopsan.h │ │ ├── ppopscnv.h │ │ ├── ppopscop.h │ │ ├── ppopsdef.h │ │ ├── ppopsflg.h │ │ ├── ppopslnm.h │ │ ├── ppopsnam.h │ │ ├── ppopssym.h │ │ ├── pragdefn.h │ │ ├── preproc.h │ │ ├── ptrcnv.h │ │ ├── ptree.h │ │ ├── ptreedec.h │ │ ├── ptreeop.h │ │ ├── ptrtypes.h │ │ ├── reposit.h │ │ ├── rewrite.h │ │ ├── ring.h │ │ ├── ringname.h │ │ ├── rtfuncod.h │ │ ├── rtfunnam.h │ │ ├── rtfuns.h │ │ ├── rtngen.h │ │ ├── rtngenum.h │ │ ├── rtnglist.h │ │ ├── rtti.h │ │ ├── scan.h │ │ ├── scoperes.h │ │ ├── segment.h │ │ ├── sjis2unc.h │ │ ├── specfuns.dfn │ │ ├── specfuns.h │ │ ├── specmac.h │ │ ├── specname.h │ │ ├── srcfile.h │ │ ├── stack.h │ │ ├── stats.h │ │ ├── stringl.h │ │ ├── symbol.h │ │ ├── symdbg.h │ │ ├── symtype.h │ │ ├── sysdep.h │ │ ├── target16.h │ │ ├── target32.h │ │ ├── targetax.h │ │ ├── template.h │ │ ├── tgtenv.h │ │ ├── toggle.h │ │ ├── tognam.h │ │ ├── tokenbuf.h │ │ ├── toknlocn.h │ │ ├── typcache.h │ │ ├── type_arr.h │ │ ├── typerank.h │ │ ├── typesig.h │ │ ├── unicode.h │ │ ├── utility.h │ │ ├── vfun.h │ │ ├── wcpp.h │ │ └── yydriver.h │ ├── hash │ │ ├── alpha.key │ │ ├── c.key │ │ ├── pc.key │ │ └── plusplus.key │ ├── helptext │ │ ├── awk.h │ │ ├── makefile │ │ ├── mkos2hlp.c │ │ ├── mkwinhlp.c │ │ ├── vlos2hlp.c │ │ └── wpp.hpj │ ├── lang.ctl │ ├── linux386.386 │ │ └── makefile │ ├── linux386.i86 │ │ └── makefile │ ├── make386 │ ├── makei86 │ ├── master.mif │ ├── msgbuild │ │ ├── buildmsg.h │ │ ├── carve.cpp │ │ ├── carve.h │ │ ├── encstats.cpp │ │ ├── encstats.h │ │ ├── exc.cpp │ │ ├── exc.h │ │ ├── filectl.cpp │ │ ├── filectl.h │ │ ├── hash.cpp │ │ ├── hash.h │ │ ├── makefile │ │ ├── msg.cpp │ │ ├── msg.h │ │ ├── msgbuild.cpp │ │ ├── ring.cpp │ │ ├── ring.h │ │ ├── str.cpp │ │ ├── str.h │ │ ├── utility.cpp │ │ ├── utility.h │ │ ├── word.cpp │ │ └── word.h │ ├── msgencod │ │ ├── makefile │ │ ├── msgencio.c │ │ ├── msgencod.h │ │ ├── setbin.c │ │ ├── watlib.h │ │ ├── watlibio.h │ │ └── wrdencod.c │ ├── msgstrm │ │ ├── dos │ │ │ └── makefile │ │ ├── files.cpp │ │ ├── files.h │ │ ├── fini.cpp │ │ ├── fini.h │ │ ├── inout.cpp │ │ ├── inout.h │ │ ├── makefile │ │ ├── model.cpp │ │ ├── model.h │ │ ├── msgdscr.cpp │ │ ├── msgdscr.h │ │ ├── msgstrm.cpp │ │ ├── msgstrm.h │ │ ├── os2 │ │ │ └── makefile │ │ ├── readgml.cpp │ │ └── readgml.h │ ├── msgstrmc │ │ ├── conshelp.cpp │ │ ├── conshelp.h │ │ ├── excfile.cpp │ │ ├── excfile.h │ │ ├── excpgm.cpp │ │ ├── excpgm.h │ │ ├── iterfrec.cpp │ │ ├── iterfrec.h │ │ ├── iters.cpp │ │ ├── iters.h │ │ ├── lineout.cpp │ │ ├── lineout.h │ │ ├── makefile │ │ ├── msgstrmc.cpp │ │ └── truefals.h │ ├── new_master.mif │ ├── notes │ │ ├── 91cpp.gml │ │ ├── 92cpp.gml │ │ ├── 93cpp.gml │ │ ├── 94cpp.gml │ │ ├── 95cpp.gml │ │ ├── 96cpp.gml │ │ ├── 97cpp.gml │ │ ├── 98cpp.gml │ │ ├── alpha.txt │ │ ├── autodtor.txt │ │ ├── axp.txt │ │ ├── bench02.cpp │ │ ├── borland.txt │ │ ├── cfront.txt │ │ ├── codegen.2do │ │ ├── codegen.txt │ │ ├── colonov.txt │ │ ├── cpplib.txt │ │ ├── ctor.txt │ │ ├── ctordtor.txt │ │ ├── datainit.txt │ │ ├── debug.txt │ │ ├── dtor93.txt │ │ ├── emitd2.txt │ │ ├── empty.c │ │ ├── errmsgs.txt │ │ ├── except.txt │ │ ├── fnovplan.txt │ │ ├── fnovtmpl.txt │ │ ├── fs_var.txt │ │ ├── future.txt │ │ ├── gblopt.txt │ │ ├── global.txt │ │ ├── init.txt │ │ ├── language.txt │ │ ├── layout.txt │ │ ├── layxmp.txt │ │ ├── lexopts.txt │ │ ├── libdata.txt │ │ ├── library.txt │ │ ├── lisa.txt │ │ ├── membptr.txt │ │ ├── mfc.txt │ │ ├── newcfeat.txt │ │ ├── nextrel.txt │ │ ├── notes.txt │ │ ├── opt_gen.txt │ │ ├── plan10.txt │ │ ├── plan10a.txt │ │ ├── pragma.txt │ │ ├── predpars.txt │ │ ├── producty.txt │ │ ├── repos.txt │ │ ├── repover.txt │ │ ├── segment.txt │ │ ├── sell9202.txt │ │ ├── sell9302.txt │ │ ├── srclib.txt │ │ ├── stdfixes.txt │ │ ├── style.txt │ │ ├── suite.txt │ │ ├── sw_11.txt │ │ ├── template.txt │ │ ├── testing.txt │ │ ├── teststrm.txt │ │ ├── throw.txt │ │ ├── todo9111.txt │ │ ├── todo9112.txt │ │ ├── todo9201.txt │ │ ├── todo9205.txt │ │ ├── todo9206.txt │ │ ├── v10p0a.pat │ │ ├── v10p5a.pat │ │ ├── v10p5b.pat │ │ ├── v10p6a.pat │ │ ├── v11p0a.pat │ │ ├── v11p0b.pat │ │ ├── v11p0c.pat │ │ ├── v11p0d.pat │ │ ├── warnings.txt │ │ ├── weird01.txt │ │ ├── workplan.txt │ │ └── zo.txt │ ├── nt386.386 │ │ └── makefile │ ├── nt386.axp │ │ └── makefile │ ├── nt386.i86 │ │ └── makefile │ ├── nt386dll.386 │ │ └── makefile │ ├── ntaxp.386 │ │ └── makefile │ ├── ntaxp.axp │ │ └── makefile │ ├── ntaxp.i86 │ │ └── makefile │ ├── os2386.386 │ │ └── makefile │ ├── os2386.axp │ │ └── makefile │ ├── os2386.i86 │ │ └── makefile │ ├── osi386.386 │ │ └── makefile │ ├── osi386.axp │ │ └── makefile │ ├── osi386.i86 │ │ └── makefile │ ├── ppact │ │ ├── makefile │ │ ├── ppact.cpp │ │ ├── set.h │ │ ├── setimpl.cpp │ │ └── setimpl.h │ ├── ppobjs.mif │ ├── qnx386.386 │ │ └── makefile │ ├── qnx386.i86 │ │ └── makefile │ ├── rpp.386 │ │ └── makefile │ ├── rpp.axp │ │ └── makefile │ ├── rpp.i86 │ │ └── makefile │ ├── sed │ │ ├── diag_mak.sed │ │ ├── diag_ref.sed │ │ ├── filt_err.sed │ │ ├── isolate.sed │ │ ├── stripasm.sed │ │ ├── stripfmt.sed │ │ ├── stripvac.sed │ │ └── stripvcl.sed │ ├── targ_386.mif │ ├── targ_axp.mif │ ├── targ_i86.mif │ ├── techdocs │ │ ├── acker.cpp │ │ ├── ambig01.cpp │ │ ├── base_acc.txt │ │ ├── callback.cpp │ │ ├── cnstptr2.cpp │ │ ├── constptr.cpp │ │ ├── exccode.cpp │ │ ├── except.cpp │ │ ├── fastcall.cpp │ │ ├── fib.cpp │ │ ├── initcont.cpp │ │ ├── k_and_r.cpp │ │ ├── link_pas.cpp │ │ ├── memb_asm.cpp │ │ ├── memb_ptr.cpp │ │ ├── prime.cpp │ │ ├── ret_conv.cpp │ │ ├── tempchum.cpp │ │ ├── template.cpp │ │ ├── vassign.cpp │ │ ├── vbase.cpp │ │ ├── vchain.cpp │ │ └── vfn.cpp │ ├── version.rc │ ├── wmakept │ │ ├── makefile │ │ └── wmakept.cpp │ ├── wvideo │ │ ├── bt.dbg │ │ ├── cppdbg.dbg │ │ ├── cppdbg.txt │ │ ├── dcgrf.dbg │ │ ├── dta.dbg │ │ ├── dtm.dbg │ │ ├── ft.dbg │ │ ├── modelog.dbg │ │ ├── modenorm.dbg │ │ ├── osi.cmd │ │ ├── osi.dbg │ │ ├── pt.dbg │ │ ├── sym.dbg │ │ ├── viewcapt.dbg │ │ ├── viewlog.dbg │ │ └── vw.dbg │ └── y │ │ ├── check.out │ │ ├── mangle.y │ │ ├── nm.y │ │ └── plusplus.y ├── plustest │ ├── makefile │ ├── readme.txt │ ├── regress │ │ ├── arith │ │ │ ├── arith.h │ │ │ ├── bench.cpp │ │ │ ├── bitcount.cpp │ │ │ ├── calc_e.cpp │ │ │ ├── calc_pi.cpp │ │ │ ├── calc_pi2.cpp │ │ │ ├── calc_pi3.cpp │ │ │ ├── dmc.cpp │ │ │ ├── makefile │ │ │ ├── mldiv.cpp │ │ │ ├── onetest.cmd │ │ │ ├── rsa.cpp │ │ │ ├── test.chk │ │ │ ├── testrun.cmd │ │ │ └── waste.cpp │ │ ├── bits.64 │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ └── testrun.cmd │ │ ├── bits │ │ │ ├── bits.h │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── tbits.chk │ │ │ ├── tbits.cpp │ │ │ └── testrun.cmd │ │ ├── bitset │ │ │ ├── bitset.chk │ │ │ ├── bitset.cpp │ │ │ ├── bitset.h │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── tbitset.cpp │ │ │ └── testrun.cmd │ │ ├── claslist │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── pcfist.c │ │ │ ├── pcfist.chk │ │ │ ├── pcfist.h │ │ │ ├── pcfistt.c │ │ │ └── testrun.cmd │ │ ├── contain │ │ │ ├── exec.chk │ │ │ ├── fixpath.sed │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── source │ │ │ │ ├── alloctor.cpp │ │ │ │ ├── getbrw.cpp │ │ │ │ ├── hashstat.h │ │ │ │ ├── hnoequiv.h │ │ │ │ ├── memchk.cpp │ │ │ │ ├── memchk.h │ │ │ │ ├── memchkst.h │ │ │ │ ├── noinline.h │ │ │ │ ├── snoequiv.h │ │ │ │ ├── strdata.h │ │ │ │ ├── testexpt.h │ │ │ │ ├── wcht1.cpp │ │ │ │ ├── wcht10.cpp │ │ │ │ ├── wcht11.cpp │ │ │ │ ├── wcht12.cpp │ │ │ │ ├── wcht13.cpp │ │ │ │ ├── wcht14.cpp │ │ │ │ ├── wcht16.cpp │ │ │ │ ├── wcht17.cpp │ │ │ │ ├── wcht18.cpp │ │ │ │ ├── wcht2.cpp │ │ │ │ ├── wcht3.cpp │ │ │ │ ├── wcht4.cpp │ │ │ │ ├── wcht5.cpp │ │ │ │ ├── wcht6.cpp │ │ │ │ ├── wcht7.cpp │ │ │ │ ├── wcht9.cpp │ │ │ │ ├── wchtstat.cpp │ │ │ │ ├── wcst1.cpp │ │ │ │ ├── wcst10.cpp │ │ │ │ ├── wcst11.cpp │ │ │ │ ├── wcst12.cpp │ │ │ │ ├── wcst13.cpp │ │ │ │ ├── wcst14.cpp │ │ │ │ ├── wcst15.cpp │ │ │ │ ├── wcst16.cpp │ │ │ │ ├── wcst2.cpp │ │ │ │ ├── wcst3.cpp │ │ │ │ ├── wcst4.cpp │ │ │ │ ├── wcst5.cpp │ │ │ │ ├── wcst6.cpp │ │ │ │ ├── wcst7.cpp │ │ │ │ ├── wcst8.cpp │ │ │ │ ├── wctest.cpp │ │ │ │ ├── wctest1.cpp │ │ │ │ ├── wctest10.cpp │ │ │ │ ├── wctest11.cpp │ │ │ │ ├── wctest12.cpp │ │ │ │ ├── wctest14.cpp │ │ │ │ ├── wctest15.cpp │ │ │ │ ├── wctest16.cpp │ │ │ │ ├── wctest17.cpp │ │ │ │ ├── wctest19.cpp │ │ │ │ ├── wctest2.cpp │ │ │ │ ├── wctest20.cpp │ │ │ │ ├── wctest21.cpp │ │ │ │ ├── wctest22.cpp │ │ │ │ ├── wctest23.cpp │ │ │ │ ├── wctest24.cpp │ │ │ │ ├── wctest26.cpp │ │ │ │ ├── wctest27.cpp │ │ │ │ ├── wctest28.cpp │ │ │ │ ├── wctest29.cpp │ │ │ │ ├── wctest3.cpp │ │ │ │ ├── wctest30.cpp │ │ │ │ ├── wctest31.cpp │ │ │ │ ├── wctest32.cpp │ │ │ │ ├── wctest33.cpp │ │ │ │ ├── wctest34.cpp │ │ │ │ ├── wctest35.cpp │ │ │ │ ├── wctest36.cpp │ │ │ │ ├── wctest37.cpp │ │ │ │ ├── wctest38.cpp │ │ │ │ ├── wctest4.cpp │ │ │ │ ├── wctest40.cpp │ │ │ │ ├── wctest41.cpp │ │ │ │ ├── wctest42.cpp │ │ │ │ ├── wctest43.cpp │ │ │ │ ├── wctest44.cpp │ │ │ │ ├── wctest45.cpp │ │ │ │ ├── wctest47.cpp │ │ │ │ ├── wctest48.cpp │ │ │ │ ├── wctest49.cpp │ │ │ │ ├── wctest50.cpp │ │ │ │ ├── wctest51.cpp │ │ │ │ ├── wctest52.cpp │ │ │ │ ├── wctest53.cpp │ │ │ │ ├── wctest54.cpp │ │ │ │ ├── wctest55.cpp │ │ │ │ ├── wctest56.cpp │ │ │ │ ├── wctest59.cpp │ │ │ │ ├── wctest61.cpp │ │ │ │ ├── wctest62.cpp │ │ │ │ ├── wctest7.cpp │ │ │ │ ├── wctest8.cpp │ │ │ │ ├── wctest9.cpp │ │ │ │ ├── wctype.cpp │ │ │ │ ├── wcvdli.cpp │ │ │ │ ├── wcvt1.cpp │ │ │ │ ├── wcvt10.cpp │ │ │ │ ├── wcvt12.cpp │ │ │ │ ├── wcvt13.cpp │ │ │ │ ├── wcvt14.cpp │ │ │ │ ├── wcvt15.cpp │ │ │ │ ├── wcvt16.cpp │ │ │ │ ├── wcvt19.cpp │ │ │ │ ├── wcvt2.cpp │ │ │ │ ├── wcvt20.cpp │ │ │ │ ├── wcvt21.cpp │ │ │ │ ├── wcvt22.cpp │ │ │ │ ├── wcvt3.cpp │ │ │ │ ├── wcvt4.cpp │ │ │ │ ├── wcvt5.cpp │ │ │ │ ├── wcvt6.cpp │ │ │ │ ├── wcvt7.cpp │ │ │ │ ├── wcvt8.cpp │ │ │ │ └── wcvt9.cpp │ │ │ └── testrun.cmd │ │ ├── cool │ │ │ ├── __ialias.h │ │ │ ├── associat.c │ │ │ ├── associat.h │ │ │ ├── avl_tree.c │ │ │ ├── avl_tree.h │ │ │ ├── base_bin.h │ │ │ ├── base_bnn.c │ │ │ ├── base_bnn.h │ │ │ ├── base_bnt.c │ │ │ ├── base_bnt.h │ │ │ ├── base_has.c │ │ │ ├── base_has.h │ │ │ ├── base_lis.c │ │ │ ├── base_lis.h │ │ │ ├── base_m_v.c │ │ │ ├── base_m_v.h │ │ │ ├── base_mat.c │ │ │ ├── base_mat.h │ │ │ ├── base_que.c │ │ │ ├── base_que.h │ │ │ ├── base_sta.c │ │ │ ├── base_sta.h │ │ │ ├── base_vec.c │ │ │ ├── base_vec.h │ │ │ ├── bignum.c │ │ │ ├── bignum.h │ │ │ ├── binary_n.c │ │ │ ├── binary_n.h │ │ │ ├── binary_t.c │ │ │ ├── binary_t.h │ │ │ ├── bit_set.c │ │ │ ├── bit_set.h │ │ │ ├── bit_tabl.c │ │ │ ├── calendar.c │ │ │ ├── calendar.h │ │ │ ├── char.c │ │ │ ├── char.h │ │ │ ├── comparat.h │ │ │ ├── complex.c │ │ │ ├── complex.h │ │ │ ├── country.c │ │ │ ├── country.h │ │ │ ├── d_node.c │ │ │ ├── d_node.h │ │ │ ├── date_tim.c │ │ │ ├── date_tim.h │ │ │ ├── defs.h │ │ │ ├── envelope.h │ │ │ ├── examples │ │ │ │ ├── ex2_4.c │ │ │ │ ├── ex2_7.c │ │ │ │ ├── ex2_9.c │ │ │ │ ├── ex3_10.c │ │ │ │ ├── ex3_12.c │ │ │ │ ├── ex3_4.c │ │ │ │ ├── ex3_6.c │ │ │ │ ├── ex3_8.c │ │ │ │ ├── ex4_7.c │ │ │ │ ├── ex4_9.c │ │ │ │ ├── ex5_8.c │ │ │ │ ├── ex6_10.c │ │ │ │ ├── ex6_4.c │ │ │ │ ├── ex6_6.c │ │ │ │ ├── ex6_8.c │ │ │ │ ├── ex7_4.c │ │ │ │ ├── ex7_7.c │ │ │ │ ├── ex7_9.c │ │ │ │ ├── ex8_4.c │ │ │ │ ├── ex8_6.c │ │ │ │ ├── ex9_11.c │ │ │ │ ├── ex9_5.c │ │ │ │ ├── ex9_7.c │ │ │ │ ├── exec.chk │ │ │ │ ├── makefile │ │ │ │ └── paragrap.h │ │ │ ├── gen_stri.c │ │ │ ├── gen_stri.h │ │ │ ├── handle.h │ │ │ ├── hash_tab.c │ │ │ ├── hash_tab.h │ │ │ ├── iterator.h │ │ │ ├── list.c │ │ │ ├── list.h │ │ │ ├── m_vector.c │ │ │ ├── m_vector.h │ │ │ ├── matrix.c │ │ │ ├── matrix.h │ │ │ ├── misc.h │ │ │ ├── n_node.c │ │ │ ├── n_node.h │ │ │ ├── n_tree.c │ │ │ ├── n_tree.h │ │ │ ├── nt_state.c │ │ │ ├── nt_state.h │ │ │ ├── objs │ │ │ │ └── makefile │ │ │ ├── onetest.cmd │ │ │ ├── pair.c │ │ │ ├── pair.h │ │ │ ├── property.c │ │ │ ├── property.h │ │ │ ├── quaterni.c │ │ │ ├── quaterni.h │ │ │ ├── queue.c │ │ │ ├── queue.h │ │ │ ├── random.c │ │ │ ├── random.h │ │ │ ├── range.c │ │ │ ├── range.h │ │ │ ├── rational.c │ │ │ ├── rational.h │ │ │ ├── regexp.c │ │ │ ├── regexp.h │ │ │ ├── set.c │ │ │ ├── set.h │ │ │ ├── shared.h │ │ │ ├── stack.c │ │ │ ├── stack.h │ │ │ ├── string.c │ │ │ ├── string.h │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ ├── testrun.cmd │ │ │ ├── tests │ │ │ │ ├── makefile │ │ │ │ ├── test.chk │ │ │ │ ├── test_as1.c │ │ │ │ ├── test_ass.c │ │ │ │ ├── test_avl.c │ │ │ │ ├── test_big.c │ │ │ │ ├── test_bit.c │ │ │ │ ├── test_bt.c │ │ │ │ ├── test_cha.c │ │ │ │ ├── test_com.c │ │ │ │ ├── test_dt.c │ │ │ │ ├── test_gs.c │ │ │ │ ├── test_han.c │ │ │ │ ├── test_has.c │ │ │ │ ├── test_ite.c │ │ │ │ ├── test_lis.c │ │ │ │ ├── test_m_v.c │ │ │ │ ├── test_mat.c │ │ │ │ ├── test_nod.c │ │ │ │ ├── test_nt.c │ │ │ │ ├── test_pai.c │ │ │ │ ├── test_pro.c │ │ │ │ ├── test_qua.c │ │ │ │ ├── test_que.c │ │ │ │ ├── test_ran.c │ │ │ │ ├── test_rat.c │ │ │ │ ├── test_reg.c │ │ │ │ ├── test_rng.c │ │ │ │ ├── test_set.c │ │ │ │ ├── test_sta.c │ │ │ │ ├── test_str.c │ │ │ │ ├── test_tim.c │ │ │ │ ├── test_val.c │ │ │ │ ├── test_vec.c │ │ │ │ └── testi86.chk │ │ │ ├── timer.c │ │ │ ├── timer.h │ │ │ ├── timezone.c │ │ │ ├── timezone.h │ │ │ ├── value.c │ │ │ ├── value.h │ │ │ ├── vector.c │ │ │ └── vector.h │ │ ├── datainit │ │ │ ├── dump.h │ │ │ ├── idata.chk │ │ │ ├── idata01.cpp │ │ │ ├── idata02.cpp │ │ │ ├── idata03.cpp │ │ │ ├── idata04.cpp │ │ │ ├── idata05.cpp │ │ │ ├── idata06.cpp │ │ │ ├── idata07.cpp │ │ │ ├── idata08.cpp │ │ │ ├── idata09.cpp │ │ │ ├── idata10.cpp │ │ │ ├── idata11.cpp │ │ │ ├── idata12.cpp │ │ │ ├── idata13.cpp │ │ │ ├── idata14.cpp │ │ │ ├── idata15.cpp │ │ │ ├── idata16.cpp │ │ │ ├── idata17.cpp │ │ │ ├── idata18.cpp │ │ │ ├── idata19.cpp │ │ │ ├── idata20.cpp │ │ │ ├── idata21.cpp │ │ │ ├── idata22.cpp │ │ │ ├── idata23.cpp │ │ │ ├── idata24.cpp │ │ │ ├── idata25.cpp │ │ │ ├── idata26.cpp │ │ │ ├── idata27.cpp │ │ │ ├── idata28.cpp │ │ │ ├── idata29.cpp │ │ │ ├── idata30.cpp │ │ │ ├── idata31.cpp │ │ │ ├── idata32.cpp │ │ │ ├── idata33.cpp │ │ │ ├── idata34.cpp │ │ │ ├── idata35.cpp │ │ │ ├── idata36.cpp │ │ │ ├── idata37.cpp │ │ │ ├── idata38.cpp │ │ │ ├── idata39.cpp │ │ │ ├── idata40.cpp │ │ │ ├── idata41.cpp │ │ │ ├── idata42.cpp │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ └── testrun.cmd │ │ ├── dcmat │ │ │ ├── bool.h │ │ │ ├── compmat.c │ │ │ ├── compmat.h │ │ │ ├── cosft.c │ │ │ ├── doubmat.c │ │ │ ├── doubmat.h │ │ │ ├── four1.c │ │ │ ├── libc.h │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── realft.c │ │ │ ├── svdcmp.c │ │ │ ├── test.c │ │ │ ├── test.chk │ │ │ ├── testrun.cmd │ │ │ └── tmatrix.c │ │ ├── diagnose │ │ │ ├── di860000.chk │ │ │ ├── di860100.chk │ │ │ ├── di860200.chk │ │ │ ├── di860300.chk │ │ │ ├── diag0000.chk │ │ │ ├── diag0100.chk │ │ │ ├── diag0200.chk │ │ │ ├── diag0300.chk │ │ │ ├── diag386.chk │ │ │ ├── diagaxp.chk │ │ │ ├── diagspec.chk │ │ │ ├── diff0000.chk │ │ │ ├── diff0100.chk │ │ │ ├── diff0200.chk │ │ │ ├── diff0300.chk │ │ │ ├── diff386.chk │ │ │ ├── diffaxp.chk │ │ │ ├── diffspec.chk │ │ │ ├── fixpath.sed │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── source │ │ │ │ ├── access01.c │ │ │ │ ├── access02.c │ │ │ │ ├── access03.c │ │ │ │ ├── access04.c │ │ │ │ ├── access05.c │ │ │ │ ├── access06.c │ │ │ │ ├── access07.c │ │ │ │ ├── access08.c │ │ │ │ ├── access09.c │ │ │ │ ├── access10.c │ │ │ │ ├── access11.c │ │ │ │ ├── access12.c │ │ │ │ ├── access13.c │ │ │ │ ├── access14.c │ │ │ │ ├── access15.c │ │ │ │ ├── anon1.c │ │ │ │ ├── anon2.c │ │ │ │ ├── anon3.c │ │ │ │ ├── arr1.c │ │ │ │ ├── arr2.c │ │ │ │ ├── arr3.c │ │ │ │ ├── arr4.c │ │ │ │ ├── arr5.c │ │ │ │ ├── arr6.c │ │ │ │ ├── catfile.c │ │ │ │ ├── copy1.c │ │ │ │ ├── copy2.c │ │ │ │ ├── copy3.c │ │ │ │ ├── copy4.c │ │ │ │ ├── copy5.c │ │ │ │ ├── copy6.c │ │ │ │ ├── diag0001.c │ │ │ │ ├── diag0002.c │ │ │ │ ├── diag0003.c │ │ │ │ ├── diag0004.c │ │ │ │ ├── diag0005.c │ │ │ │ ├── diag0006.c │ │ │ │ ├── diag0007.c │ │ │ │ ├── diag0008.c │ │ │ │ ├── diag0009.c │ │ │ │ ├── diag0010.c │ │ │ │ ├── diag0011.c │ │ │ │ ├── diag0012.c │ │ │ │ ├── diag0013.c │ │ │ │ ├── diag0014.c │ │ │ │ ├── diag0015.c │ │ │ │ ├── diag0016.c │ │ │ │ ├── diag0017.c │ │ │ │ ├── diag0018.c │ │ │ │ ├── diag0019.c │ │ │ │ ├── diag0020.c │ │ │ │ ├── diag0021.c │ │ │ │ ├── diag0022.c │ │ │ │ ├── diag0023.c │ │ │ │ ├── diag0024.c │ │ │ │ ├── diag0025.c │ │ │ │ ├── diag0026.c │ │ │ │ ├── diag0027.c │ │ │ │ ├── diag0028.c │ │ │ │ ├── diag0029.c │ │ │ │ ├── diag0030.c │ │ │ │ ├── diag0031.c │ │ │ │ ├── diag0032.c │ │ │ │ ├── diag0033.c │ │ │ │ ├── diag0034.c │ │ │ │ ├── diag0035.c │ │ │ │ ├── diag0036.c │ │ │ │ ├── diag0037.c │ │ │ │ ├── diag0038.c │ │ │ │ ├── diag0039.c │ │ │ │ ├── diag0040.c │ │ │ │ ├── diag0041.c │ │ │ │ ├── diag0042.c │ │ │ │ ├── diag0043.c │ │ │ │ ├── diag0044.c │ │ │ │ ├── diag0045.c │ │ │ │ ├── diag0046.c │ │ │ │ ├── diag0047.c │ │ │ │ ├── diag0048.c │ │ │ │ ├── diag0049.c │ │ │ │ ├── diag0050.c │ │ │ │ ├── diag0051.c │ │ │ │ ├── diag0052.c │ │ │ │ ├── diag0053.c │ │ │ │ ├── diag0054.c │ │ │ │ ├── diag0055.c │ │ │ │ ├── diag0056.c │ │ │ │ ├── diag0057.c │ │ │ │ ├── diag0058.c │ │ │ │ ├── diag0059.c │ │ │ │ ├── diag0060.c │ │ │ │ ├── diag0061.c │ │ │ │ ├── diag0062.c │ │ │ │ ├── diag0063.c │ │ │ │ ├── diag0064.c │ │ │ │ ├── diag0065.c │ │ │ │ ├── diag0066.c │ │ │ │ ├── diag0067.c │ │ │ │ ├── diag0068.c │ │ │ │ ├── diag0069.c │ │ │ │ ├── diag0070.c │ │ │ │ ├── diag0071.c │ │ │ │ ├── diag0072.c │ │ │ │ ├── diag0073.c │ │ │ │ ├── diag0074.c │ │ │ │ ├── diag0075.c │ │ │ │ ├── diag0076.c │ │ │ │ ├── diag0077.c │ │ │ │ ├── diag0078.c │ │ │ │ ├── diag0079.c │ │ │ │ ├── diag0080.c │ │ │ │ ├── diag0081.c │ │ │ │ ├── diag0082.c │ │ │ │ ├── diag0083.c │ │ │ │ ├── diag0084.c │ │ │ │ ├── diag0085.c │ │ │ │ ├── diag0086.c │ │ │ │ ├── diag0087.c │ │ │ │ ├── diag0088.c │ │ │ │ ├── diag0089.c │ │ │ │ ├── diag0090.c │ │ │ │ ├── diag0091.c │ │ │ │ ├── diag0092.c │ │ │ │ ├── diag0093.c │ │ │ │ ├── diag0094.c │ │ │ │ ├── diag0095.c │ │ │ │ ├── diag0096.c │ │ │ │ ├── diag0097.c │ │ │ │ ├── diag0098.c │ │ │ │ ├── diag0099.c │ │ │ │ ├── diag0100.c │ │ │ │ ├── diag0101.c │ │ │ │ ├── diag0102.c │ │ │ │ ├── diag0103.c │ │ │ │ ├── diag0103.h │ │ │ │ ├── diag0104.c │ │ │ │ ├── diag0105.c │ │ │ │ ├── diag0106.c │ │ │ │ ├── diag0107.c │ │ │ │ ├── diag0108.c │ │ │ │ ├── diag0109.c │ │ │ │ ├── diag0110.c │ │ │ │ ├── diag0111.c │ │ │ │ ├── diag0112.c │ │ │ │ ├── diag0113.c │ │ │ │ ├── diag0114.c │ │ │ │ ├── diag0115.c │ │ │ │ ├── diag0116.c │ │ │ │ ├── diag0117.c │ │ │ │ ├── diag0118.c │ │ │ │ ├── diag0119.c │ │ │ │ ├── diag0120.c │ │ │ │ ├── diag0121.c │ │ │ │ ├── diag0122.c │ │ │ │ ├── diag0123.c │ │ │ │ ├── diag0124.c │ │ │ │ ├── diag0125.c │ │ │ │ ├── diag0126.c │ │ │ │ ├── diag0127.c │ │ │ │ ├── diag0128.c │ │ │ │ ├── diag0129.c │ │ │ │ ├── diag0130.c │ │ │ │ ├── diag0131.c │ │ │ │ ├── diag0132.c │ │ │ │ ├── diag0133.c │ │ │ │ ├── diag0134.c │ │ │ │ ├── diag0135.c │ │ │ │ ├── diag0136.c │ │ │ │ ├── diag0137.c │ │ │ │ ├── diag0138.c │ │ │ │ ├── diag0139.c │ │ │ │ ├── diag0139.h │ │ │ │ ├── diag0140.c │ │ │ │ ├── diag0140.h │ │ │ │ ├── diag0141.c │ │ │ │ ├── diag0142.c │ │ │ │ ├── diag0143.c │ │ │ │ ├── diag0144.c │ │ │ │ ├── diag0145.c │ │ │ │ ├── diag0146.c │ │ │ │ ├── diag0147.c │ │ │ │ ├── diag0148.c │ │ │ │ ├── diag0149.c │ │ │ │ ├── diag0150.c │ │ │ │ ├── diag0151.c │ │ │ │ ├── diag0152.c │ │ │ │ ├── diag0153.c │ │ │ │ ├── diag0154.c │ │ │ │ ├── diag0155.c │ │ │ │ ├── diag0156.c │ │ │ │ ├── diag0157.c │ │ │ │ ├── diag0158.c │ │ │ │ ├── diag0159.c │ │ │ │ ├── diag0160.c │ │ │ │ ├── diag0161.c │ │ │ │ ├── diag0162.c │ │ │ │ ├── diag0163.c │ │ │ │ ├── diag0164.c │ │ │ │ ├── diag0165.c │ │ │ │ ├── diag0166.c │ │ │ │ ├── diag0167.c │ │ │ │ ├── diag0168.c │ │ │ │ ├── diag0169.c │ │ │ │ ├── diag0170.c │ │ │ │ ├── diag0171.c │ │ │ │ ├── diag0172.c │ │ │ │ ├── diag0173.c │ │ │ │ ├── diag0174.c │ │ │ │ ├── diag0175.c │ │ │ │ ├── diag0176.c │ │ │ │ ├── diag0177.c │ │ │ │ ├── diag0178.c │ │ │ │ ├── diag0179.c │ │ │ │ ├── diag0180.c │ │ │ │ ├── diag0181.c │ │ │ │ ├── diag0182.c │ │ │ │ ├── diag0183.c │ │ │ │ ├── diag0184.c │ │ │ │ ├── diag0185.c │ │ │ │ ├── diag0186.c │ │ │ │ ├── diag0187.c │ │ │ │ ├── diag0188.c │ │ │ │ ├── diag0189.c │ │ │ │ ├── diag0190.c │ │ │ │ ├── diag0191.c │ │ │ │ ├── diag0192.c │ │ │ │ ├── diag0192.h │ │ │ │ ├── diag0193.c │ │ │ │ ├── diag0194.c │ │ │ │ ├── diag0195.c │ │ │ │ ├── diag0196.c │ │ │ │ ├── diag0197.c │ │ │ │ ├── diag0198.c │ │ │ │ ├── diag0199.c │ │ │ │ ├── diag0200.c │ │ │ │ ├── diag0201.c │ │ │ │ ├── diag0202.c │ │ │ │ ├── diag0203.c │ │ │ │ ├── diag0204.c │ │ │ │ ├── diag0205.c │ │ │ │ ├── diag0205.h │ │ │ │ ├── diag0206.c │ │ │ │ ├── diag0207.c │ │ │ │ ├── diag0208.c │ │ │ │ ├── diag0209.c │ │ │ │ ├── diag0210.c │ │ │ │ ├── diag0211.c │ │ │ │ ├── diag0212.c │ │ │ │ ├── diag0213.c │ │ │ │ ├── diag0214.c │ │ │ │ ├── diag0215.c │ │ │ │ ├── diag0216.c │ │ │ │ ├── diag0217.c │ │ │ │ ├── diag0218.c │ │ │ │ ├── diag0219.c │ │ │ │ ├── diag0220.c │ │ │ │ ├── diag0221.c │ │ │ │ ├── diag0222.c │ │ │ │ ├── diag0223.c │ │ │ │ ├── diag0224.c │ │ │ │ ├── diag0225.c │ │ │ │ ├── diag0226.c │ │ │ │ ├── diag0227.c │ │ │ │ ├── diag0228.c │ │ │ │ ├── diag0229.c │ │ │ │ ├── diag0230.c │ │ │ │ ├── diag0231.c │ │ │ │ ├── diag0232.c │ │ │ │ ├── diag0233.c │ │ │ │ ├── diag0234.c │ │ │ │ ├── diag0235.c │ │ │ │ ├── diag0236.c │ │ │ │ ├── diag0237.c │ │ │ │ ├── diag0238.c │ │ │ │ ├── diag0239.c │ │ │ │ ├── diag0240.c │ │ │ │ ├── diag0241.c │ │ │ │ ├── diag0242.c │ │ │ │ ├── diag0243.c │ │ │ │ ├── diag0244.c │ │ │ │ ├── diag0245.c │ │ │ │ ├── diag0246.c │ │ │ │ ├── diag0247.c │ │ │ │ ├── diag0248.c │ │ │ │ ├── diag0249.c │ │ │ │ ├── diag0250.c │ │ │ │ ├── diag0251.c │ │ │ │ ├── diag0252.c │ │ │ │ ├── diag0253.c │ │ │ │ ├── diag0254.c │ │ │ │ ├── diag0255.c │ │ │ │ ├── diag0256.c │ │ │ │ ├── diag0257.c │ │ │ │ ├── diag0258.c │ │ │ │ ├── diag0259.c │ │ │ │ ├── diag0260.c │ │ │ │ ├── diag0261.c │ │ │ │ ├── diag0262.c │ │ │ │ ├── diag0263.c │ │ │ │ ├── diag0264.c │ │ │ │ ├── diag0265.c │ │ │ │ ├── diag0266.c │ │ │ │ ├── diag0267.c │ │ │ │ ├── diag0268.c │ │ │ │ ├── diag0269.c │ │ │ │ ├── diag0270.c │ │ │ │ ├── diag0271.c │ │ │ │ ├── diag0272.c │ │ │ │ ├── diag0273.c │ │ │ │ ├── diag0274.c │ │ │ │ ├── diag0275.c │ │ │ │ ├── diag0276.c │ │ │ │ ├── diag0276.h │ │ │ │ ├── diag0277.c │ │ │ │ ├── diag0278.c │ │ │ │ ├── diag0279.c │ │ │ │ ├── diag0280.c │ │ │ │ ├── diag0282.c │ │ │ │ ├── diag0283.c │ │ │ │ ├── diag0284.c │ │ │ │ ├── diag0285.c │ │ │ │ ├── diag0285.h │ │ │ │ ├── diag0285.hh │ │ │ │ ├── diag0286.c │ │ │ │ ├── diag0287.c │ │ │ │ ├── diag0288.c │ │ │ │ ├── diag0289.c │ │ │ │ ├── diag0290.c │ │ │ │ ├── diag0291.c │ │ │ │ ├── diag0291.h1 │ │ │ │ ├── diag0291.h2 │ │ │ │ ├── diag0292.c │ │ │ │ ├── diag0293.c │ │ │ │ ├── diag0294.c │ │ │ │ ├── diag0295.c │ │ │ │ ├── diag0296.c │ │ │ │ ├── diag0297.c │ │ │ │ ├── diag0298.c │ │ │ │ ├── diag0299.c │ │ │ │ ├── diag0300.c │ │ │ │ ├── diag0301.c │ │ │ │ ├── diag0302.c │ │ │ │ ├── diag0303.c │ │ │ │ ├── diag0304.c │ │ │ │ ├── diag0305.c │ │ │ │ ├── diag0306.c │ │ │ │ ├── diag0307.c │ │ │ │ ├── diag0308.c │ │ │ │ ├── diag0309.c │ │ │ │ ├── diag0310.c │ │ │ │ ├── diag0311.c │ │ │ │ ├── diag0312.c │ │ │ │ ├── diag0313.c │ │ │ │ ├── diagnose.mif │ │ │ │ ├── mp01.c │ │ │ │ ├── new_del.c │ │ │ │ ├── uc1.c │ │ │ │ ├── uc2.c │ │ │ │ ├── uc3.c │ │ │ │ ├── uc4.c │ │ │ │ ├── uc5.c │ │ │ │ ├── vf1.c │ │ │ │ ├── vf2.c │ │ │ │ ├── vf3.c │ │ │ │ ├── vf4.c │ │ │ │ ├── vf5.c │ │ │ │ ├── vf6.c │ │ │ │ ├── vf7.c │ │ │ │ ├── vf8.c │ │ │ │ └── vf9.c │ │ │ └── testrun.cmd │ │ ├── ehmix │ │ │ ├── ehmix.cpp │ │ │ ├── except.h │ │ │ ├── getidx.h │ │ │ ├── linux386.chk │ │ │ ├── makefile │ │ │ ├── nt386.chk │ │ │ ├── onetest.cmd │ │ │ ├── os2386.chk │ │ │ └── testrun.cmd │ │ ├── environ.mif │ │ ├── except │ │ │ ├── excalloc.c │ │ │ ├── excdtor.c │ │ │ ├── except.chk │ │ │ ├── excfancy.c │ │ │ ├── excok.c │ │ │ ├── excrt_01.c │ │ │ ├── excrt_02.c │ │ │ ├── excrt_03.c │ │ │ ├── excrt_04.c │ │ │ ├── excrt_05.c │ │ │ ├── excrt_06.c │ │ │ ├── excrt_07.c │ │ │ ├── excrt_08.c │ │ │ ├── excrt_09.c │ │ │ ├── excrt_10.c │ │ │ ├── excrt_11.c │ │ │ ├── fatalerr.chk │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ └── testrun.cmd │ │ ├── exercise │ │ │ ├── chkcl.cpp │ │ │ ├── ctordtor.cpp │ │ │ ├── exercise.chk │ │ │ ├── makefile │ │ │ ├── mp.cpp │ │ │ ├── onetest.cmd │ │ │ ├── ovldall.cpp │ │ │ ├── switcher.cpp │ │ │ └── testrun.cmd │ │ ├── extref │ │ │ ├── er01.h │ │ │ ├── er01a.c │ │ │ ├── er01b.c │ │ │ ├── er01c.c │ │ │ ├── er01d.c │ │ │ ├── er02.h │ │ │ ├── er02a.c │ │ │ ├── er02b.c │ │ │ ├── er03.h │ │ │ ├── er03a.c │ │ │ ├── er03b.c │ │ │ ├── er03c.c │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── test.chk │ │ │ └── testrun.cmd │ │ ├── field.64 │ │ │ ├── field.cpp │ │ │ ├── field.h │ │ │ ├── fldalloc.h │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── test.chk │ │ │ ├── test1.cpp │ │ │ ├── test2.cpp │ │ │ ├── test3.cpp │ │ │ └── testrun.cmd │ │ ├── field │ │ │ ├── field.cpp │ │ │ ├── field.h │ │ │ ├── fldalloc.h │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── test.chk │ │ │ ├── test1.cpp │ │ │ ├── test2.cpp │ │ │ ├── test3.cpp │ │ │ └── testrun.cmd │ │ ├── format │ │ │ ├── exec.chk │ │ │ ├── fformat.c │ │ │ ├── fformat.h │ │ │ ├── ftest.c │ │ │ ├── iformat.c │ │ │ ├── iformat.h │ │ │ ├── itest.c │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ └── testrun.cmd │ │ ├── getlong │ │ │ ├── getlongo.cc │ │ │ ├── getlongo.h │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── opt.chk │ │ │ ├── readme.cc │ │ │ └── testrun.cmd │ │ ├── gstring │ │ │ ├── gstring.h │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── string.c │ │ │ ├── strngrep.c │ │ │ ├── strtest.chk │ │ │ ├── strtest1.c │ │ │ └── testrun.cmd │ │ ├── inline │ │ │ ├── chk_exec.c │ │ │ ├── error.chk │ │ │ ├── inline.mif │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ └── testrun.cmd │ │ ├── jam │ │ │ ├── assert.cpp │ │ │ ├── assert.h │ │ │ ├── check2.chk │ │ │ ├── check3.chk │ │ │ ├── crcptr.h │ │ │ ├── functor0.h │ │ │ ├── functor1.h │ │ │ ├── functor2.h │ │ │ ├── jam.chk │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── testftor.cpp │ │ │ └── testrun.cmd │ │ ├── makefile │ │ ├── mscompat │ │ │ ├── diag0011.cpp │ │ │ ├── diag0085.cpp │ │ │ ├── diag0086.cpp │ │ │ ├── diag0187.cpp │ │ │ ├── diag0198.cpp │ │ │ ├── diag0251.cpp │ │ │ ├── diag0267.cpp │ │ │ ├── diag0268.cpp │ │ │ ├── dump.h │ │ │ ├── fail.h │ │ │ ├── lisa006.cpp │ │ │ ├── lisa012.cpp │ │ │ ├── makefile │ │ │ ├── ms01.cpp │ │ │ ├── mscompat.chk │ │ │ ├── ptrfun04.cpp │ │ │ ├── udcnv14.cpp │ │ │ ├── udcnv15.cpp │ │ │ ├── udcnv16.cpp │ │ │ └── udcnv17.cpp │ │ ├── nih │ │ │ ├── __ialias.h │ │ │ ├── arrayob.c │ │ │ ├── arrayob.h │ │ │ ├── assoc.c │ │ │ ├── assoc.h │ │ │ ├── assocint.c │ │ │ ├── assocint.h │ │ │ ├── bag.c │ │ │ ├── bag.h │ │ │ ├── bitboard.c │ │ │ ├── bitboard.h │ │ │ ├── bitset.c │ │ │ ├── bitset.h │ │ │ ├── class.c │ │ │ ├── collecti.c │ │ │ ├── collecti.h │ │ │ ├── date.c │ │ │ ├── date.h │ │ │ ├── dictiona.c │ │ │ ├── dictiona.h │ │ │ ├── dofile.h │ │ │ ├── errfac.h │ │ │ ├── errlib.h │ │ │ ├── errors.h │ │ │ ├── exceptac.h │ │ │ ├── exceptio.h │ │ │ ├── fdset.h │ │ │ ├── float.c │ │ │ ├── float.h │ │ │ ├── fraction.c │ │ │ ├── fraction.h │ │ │ ├── gettok.h │ │ │ ├── heap.c │ │ │ ├── heap.h │ │ │ ├── heapproc.h │ │ │ ├── identdic.c │ │ │ ├── identdic.h │ │ │ ├── identset.c │ │ │ ├── identset.h │ │ │ ├── integer.c │ │ │ ├── integer.h │ │ │ ├── iterator.c │ │ │ ├── iterator.h │ │ │ ├── keysortc.c │ │ │ ├── keysortc.h │ │ │ ├── libc.h │ │ │ ├── link.c │ │ │ ├── link.h │ │ │ ├── linkedli.c │ │ │ ├── linkedli.h │ │ │ ├── linkob.c │ │ │ ├── linkob.h │ │ │ ├── lookupke.c │ │ │ ├── lookupke.h │ │ │ ├── makefile │ │ │ ├── nihclcon.h │ │ │ ├── nihclerr.c │ │ │ ├── nihclerr.h │ │ │ ├── nihclio.h │ │ │ ├── nil.c │ │ │ ├── object.c │ │ │ ├── object.h │ │ │ ├── oio.h │ │ │ ├── oiofd.c │ │ │ ├── oiofd.h │ │ │ ├── oionih.c │ │ │ ├── oionih.h │ │ │ ├── oiostrea.c │ │ │ ├── oiostrea.h │ │ │ ├── oiotbl.c │ │ │ ├── oiotbl.h │ │ │ ├── onetest.cmd │ │ │ ├── orderedc.c │ │ │ ├── orderedc.h │ │ │ ├── osfcn.h │ │ │ ├── point.c │ │ │ ├── point.h │ │ │ ├── random.c │ │ │ ├── random.h │ │ │ ├── range.c │ │ │ ├── range.h │ │ │ ├── rectangl.c │ │ │ ├── rectangl.h │ │ │ ├── schedule.h │ │ │ ├── semaphor.h │ │ │ ├── seqcltn.c │ │ │ ├── seqcltn.h │ │ │ ├── set.c │ │ │ ├── set.h │ │ │ ├── sharedqu.c │ │ │ ├── sharedqu.h │ │ │ ├── sortedcl.c │ │ │ ├── sortedcl.h │ │ │ ├── stack.c │ │ │ ├── stack.h │ │ │ ├── stackpro.h │ │ │ ├── string.c │ │ │ ├── string.ho │ │ │ ├── testrun.cmd │ │ │ ├── time.c │ │ │ └── time.ho │ │ ├── nullptr │ │ │ ├── makefile │ │ │ ├── nullptr.chk │ │ │ ├── nullptr.cpp │ │ │ ├── onetest.cmd │ │ │ └── testrun.cmd │ │ ├── onetest.cmd │ │ ├── overload │ │ │ ├── addr01.cpp │ │ │ ├── addr02.cpp │ │ │ ├── addr03.cpp │ │ │ ├── addr04.cpp │ │ │ ├── addr05.cpp │ │ │ ├── addr06.cpp │ │ │ ├── addr07.cpp │ │ │ ├── addr08.cpp │ │ │ ├── array03.cpp │ │ │ ├── class01.cpp │ │ │ ├── class02.cpp │ │ │ ├── class03.cpp │ │ │ ├── class04.cpp │ │ │ ├── class05.cpp │ │ │ ├── class06.cpp │ │ │ ├── class07.cpp │ │ │ ├── class08.cpp │ │ │ ├── class09.cpp │ │ │ ├── class10.cpp │ │ │ ├── class11.cpp │ │ │ ├── class12.cpp │ │ │ ├── cm01.cpp │ │ │ ├── cv01.cpp │ │ │ ├── cv02.cpp │ │ │ ├── cv03.cpp │ │ │ ├── cv04.cpp │ │ │ ├── cv05.cpp │ │ │ ├── cv06.cpp │ │ │ ├── cv07.cpp │ │ │ ├── cv08.cpp │ │ │ ├── defarg02.cpp │ │ │ ├── defarg03.cpp │ │ │ ├── defarg04.cpp │ │ │ ├── distdef.cpp │ │ │ ├── dump.h │ │ │ ├── func.cpp │ │ │ ├── intprom.cpp │ │ │ ├── longlist.cpp │ │ │ ├── makefile │ │ │ ├── model01.cpp │ │ │ ├── nfptr01.cpp │ │ │ ├── nfptr02.cpp │ │ │ ├── nfref01.cpp │ │ │ ├── nfref02.cpp │ │ │ ├── nfref03.cpp │ │ │ ├── nfref04.cpp │ │ │ ├── nfvoid.cpp │ │ │ ├── null01.cpp │ │ │ ├── null02.cpp │ │ │ ├── onetest.cmd │ │ │ ├── oper01.cpp │ │ │ ├── oper02.cpp │ │ │ ├── overload.chk │ │ │ ├── overload.i86 │ │ │ ├── pmem01.cpp │ │ │ ├── pmem02.cpp │ │ │ ├── pmem03.cpp │ │ │ ├── ptrfun01.cpp │ │ │ ├── ptrfun02.cpp │ │ │ ├── ptrfun03.cpp │ │ │ ├── ptrfun04.cpp │ │ │ ├── ptrfun05.cpp │ │ │ ├── ptrfun06.cpp │ │ │ ├── ptrfun07.cpp │ │ │ ├── ptrfun08.cpp │ │ │ ├── ptrmem01.cpp │ │ │ ├── stdcnv.cpp │ │ │ ├── stdcnv02.cpp │ │ │ ├── testrun.cmd │ │ │ ├── tmplt1.cpp │ │ │ ├── tmplt3.cpp │ │ │ ├── tq01.cpp │ │ │ ├── tq02.cpp │ │ │ ├── tq03.cpp │ │ │ ├── tq05.cpp │ │ │ ├── tq06.cpp │ │ │ ├── tq07.cpp │ │ │ ├── tq08.cpp │ │ │ ├── tq09.cpp │ │ │ ├── tq10.cpp │ │ │ ├── tq11.cpp │ │ │ ├── tq13.cpp │ │ │ ├── trivcnv.cpp │ │ │ ├── udcnv.cpp │ │ │ ├── udcnv10.cpp │ │ │ ├── udcnv11.cpp │ │ │ ├── udcnv12.cpp │ │ │ ├── udcnv13.cpp │ │ │ ├── udcnv14.cpp │ │ │ ├── udcnv15.cpp │ │ │ ├── udcnv16.cpp │ │ │ ├── udcnv17.cpp │ │ │ ├── udcnv18.cpp │ │ │ ├── udcnv19.cpp │ │ │ ├── udcnv2.cpp │ │ │ ├── udcnv3.cpp │ │ │ ├── udcnv4.cpp │ │ │ ├── udcnv5.cpp │ │ │ ├── udcnv6.cpp │ │ │ ├── udcnv7.cpp │ │ │ ├── udcnv8.cpp │ │ │ └── udcnv9.cpp │ │ ├── owstl │ │ │ ├── aaa.cpp │ │ │ ├── algm01.cpp │ │ │ ├── algn01.cpp │ │ │ ├── algs01.cpp │ │ │ ├── allocxtr.hpp │ │ │ ├── bitset01.cpp │ │ │ ├── clib01.cpp │ │ │ ├── cmplx01.cpp │ │ │ ├── deque01.cpp │ │ │ ├── deque02.cpp │ │ │ ├── fun01.cpp │ │ │ ├── itcat.h │ │ │ ├── iter01.cpp │ │ │ ├── lim01.cpp │ │ │ ├── list01.cpp │ │ │ ├── locale01.cpp │ │ │ ├── makefile │ │ │ ├── map01.cpp │ │ │ ├── map02.cpp │ │ │ ├── mem01.cpp │ │ │ ├── nominmax.cpp │ │ │ ├── numer01.cpp │ │ │ ├── onetest.cmd │ │ │ ├── queue01.cpp │ │ │ ├── readme.txt │ │ │ ├── sanity.cpp │ │ │ ├── set01.cpp │ │ │ ├── set02.cpp │ │ │ ├── slist01.cpp │ │ │ ├── smtptr01.cpp │ │ │ ├── stack01.cpp │ │ │ ├── string01.cpp │ │ │ ├── string02.cpp │ │ │ ├── template.cpp │ │ │ ├── test.chk │ │ │ ├── testrun.cmd │ │ │ ├── typetr01.cpp │ │ │ ├── unoset01.cpp │ │ │ ├── util01.cpp │ │ │ └── vector01.cpp │ │ ├── perl │ │ │ ├── chgfnt.cpp │ │ │ ├── cislog.cpp │ │ │ ├── exec.chk │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── perlasso.cpp │ │ │ ├── perlasso.h │ │ │ ├── perlclas.cpp │ │ │ ├── perlclas.h │ │ │ ├── perltest.cpp │ │ │ ├── regex.c │ │ │ ├── regex.h │ │ │ ├── regexp.h │ │ │ ├── regmagic.h │ │ │ ├── t.in │ │ │ ├── t2.txt │ │ │ ├── testrun.cmd │ │ │ ├── tstio.cpp │ │ │ └── tstio.in │ │ ├── positive │ │ │ ├── chk_exec.c │ │ │ ├── error.chk │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── source │ │ │ │ ├── access01.c │ │ │ │ ├── addr01.c │ │ │ │ ├── alias.h │ │ │ │ ├── alttok1.c │ │ │ │ ├── ambig01.c │ │ │ │ ├── ambig02.c │ │ │ │ ├── array1.c │ │ │ │ ├── asm01.c │ │ │ │ ├── asm02.c │ │ │ │ ├── asm03.c │ │ │ │ ├── asm04.c │ │ │ │ ├── asm05.c │ │ │ │ ├── asm06.c │ │ │ │ ├── asm07.c │ │ │ │ ├── asm08.c │ │ │ │ ├── asm09.c │ │ │ │ ├── assert1.c │ │ │ │ ├── based01.c │ │ │ │ ├── based02.c │ │ │ │ ├── based03.c │ │ │ │ ├── bf01.c │ │ │ │ ├── bf02.c │ │ │ │ ├── bf03.c │ │ │ │ ├── bf04.c │ │ │ │ ├── bf05.c │ │ │ │ ├── bool01.c │ │ │ │ ├── bool02.c │ │ │ │ ├── bool03.c │ │ │ │ ├── bool04.c │ │ │ │ ├── bool05.c │ │ │ │ ├── cdisp1.c │ │ │ │ ├── cdisp10.c │ │ │ │ ├── cdisp11.c │ │ │ │ ├── cdisp12.c │ │ │ │ ├── cdisp13.c │ │ │ │ ├── cdisp2.c │ │ │ │ ├── cdisp3.c │ │ │ │ ├── cdisp4.c │ │ │ │ ├── cdisp5.c │ │ │ │ ├── cdisp6.c │ │ │ │ ├── cdisp7.c │ │ │ │ ├── cdisp8.c │ │ │ │ ├── cdisp9.c │ │ │ │ ├── cltemp01.c │ │ │ │ ├── cltemp02.c │ │ │ │ ├── cltemp03.c │ │ │ │ ├── cltemp04.c │ │ │ │ ├── cltemp05.c │ │ │ │ ├── cltemp06.c │ │ │ │ ├── cltemp07.c │ │ │ │ ├── cltemp08.c │ │ │ │ ├── cltemp09.c │ │ │ │ ├── cltemp10.c │ │ │ │ ├── cltemp11.c │ │ │ │ ├── cltemp12.c │ │ │ │ ├── cltemp13.c │ │ │ │ ├── cltemp14.c │ │ │ │ ├── cltemp15.c │ │ │ │ ├── cltemp16.c │ │ │ │ ├── cltemp17.c │ │ │ │ ├── cltemp18.c │ │ │ │ ├── cltemp19.c │ │ │ │ ├── cltemp20.c │ │ │ │ ├── cltemp21.c │ │ │ │ ├── cltemp22.c │ │ │ │ ├── cltemp23.c │ │ │ │ ├── cltemp24.c │ │ │ │ ├── cltemp25.c │ │ │ │ ├── cltemp26.c │ │ │ │ ├── cltemp27.c │ │ │ │ ├── cltemp28.c │ │ │ │ ├── cltemp29.c │ │ │ │ ├── cltemp30.c │ │ │ │ ├── cltemp31.c │ │ │ │ ├── cltemp32.c │ │ │ │ ├── cltemp33.c │ │ │ │ ├── cltmp21b.c │ │ │ │ ├── cmdln01.c │ │ │ │ ├── cmdln02.c │ │ │ │ ├── cmdln03.c │ │ │ │ ├── cmdln04.c │ │ │ │ ├── cmdln05.c │ │ │ │ ├── cmdln_a.h │ │ │ │ ├── cond1.c │ │ │ │ ├── conv01.c │ │ │ │ ├── conv02.c │ │ │ │ ├── conv03.c │ │ │ │ ├── conv04.c │ │ │ │ ├── conv05.c │ │ │ │ ├── conv06.c │ │ │ │ ├── ctor01.c │ │ │ │ ├── ctor02.c │ │ │ │ ├── ctor03.c │ │ │ │ ├── ctor04.c │ │ │ │ ├── ctor05.c │ │ │ │ ├── ctor06.c │ │ │ │ ├── ctor07.c │ │ │ │ ├── ctor08.c │ │ │ │ ├── ctor09.c │ │ │ │ ├── ctor10.c │ │ │ │ ├── ctor11.c │ │ │ │ ├── ctor12.c │ │ │ │ ├── ctor13.c │ │ │ │ ├── ctor14.c │ │ │ │ ├── ctor15.c │ │ │ │ ├── ctor16.c │ │ │ │ ├── ctor17.c │ │ │ │ ├── ctor18.c │ │ │ │ ├── ctor19.c │ │ │ │ ├── ctor20.c │ │ │ │ ├── ctor21.c │ │ │ │ ├── ctor22.c │ │ │ │ ├── ctor23.c │ │ │ │ ├── ctor24.c │ │ │ │ ├── ctor25.c │ │ │ │ ├── ctor26.c │ │ │ │ ├── ctor27.c │ │ │ │ ├── ctor28.c │ │ │ │ ├── ctor29.c │ │ │ │ ├── ctor30.c │ │ │ │ ├── ctor31.c │ │ │ │ ├── ctor32.c │ │ │ │ ├── ctor33.c │ │ │ │ ├── ctor34.c │ │ │ │ ├── ctor35.c │ │ │ │ ├── ctor36.c │ │ │ │ ├── ctor37.c │ │ │ │ ├── ctor38.c │ │ │ │ ├── ctor39.c │ │ │ │ ├── cv01.c │ │ │ │ ├── cv02.c │ │ │ │ ├── decl01.c │ │ │ │ ├── decl02.c │ │ │ │ ├── decl03.c │ │ │ │ ├── defarg01.c │ │ │ │ ├── defarg02.c │ │ │ │ ├── defarg03.c │ │ │ │ ├── defarg04.c │ │ │ │ ├── defarg05.c │ │ │ │ ├── defarg06.c │ │ │ │ ├── defarg07.c │ │ │ │ ├── dftemp01.c │ │ │ │ ├── dftemp02.c │ │ │ │ ├── dftemp03.c │ │ │ │ ├── dftemp04.c │ │ │ │ ├── dftemp05.c │ │ │ │ ├── dftemp06.c │ │ │ │ ├── digraph1.c │ │ │ │ ├── dtor01.c │ │ │ │ ├── dtor02.c │ │ │ │ ├── dtor03.c │ │ │ │ ├── dtor04.c │ │ │ │ ├── dtor05.c │ │ │ │ ├── dtor06.c │ │ │ │ ├── dtor07.c │ │ │ │ ├── dtor08.c │ │ │ │ ├── dtor09.c │ │ │ │ ├── dtor10.c │ │ │ │ ├── dtor11.c │ │ │ │ ├── dtor12.c │ │ │ │ ├── dtor13.c │ │ │ │ ├── dtor14.c │ │ │ │ ├── dtor15.c │ │ │ │ ├── dtor16.c │ │ │ │ ├── dtor17.c │ │ │ │ ├── dtor18.c │ │ │ │ ├── dtor19.c │ │ │ │ ├── dtor20.c │ │ │ │ ├── dtor21.c │ │ │ │ ├── dtor22.c │ │ │ │ ├── dtor23.c │ │ │ │ ├── dtor24.c │ │ │ │ ├── dtor25.c │ │ │ │ ├── dtor26.c │ │ │ │ ├── dtor27.c │ │ │ │ ├── dtor28.c │ │ │ │ ├── dtor29.c │ │ │ │ ├── dtor30.c │ │ │ │ ├── dtor31.c │ │ │ │ ├── dtor32.c │ │ │ │ ├── dtor33.c │ │ │ │ ├── dwarf01.c │ │ │ │ ├── dwarf02.c │ │ │ │ ├── dwarf03.c │ │ │ │ ├── dyn01.c │ │ │ │ ├── enum01.c │ │ │ │ ├── enum02.c │ │ │ │ ├── enum03.c │ │ │ │ ├── enum04.c │ │ │ │ ├── enum05.c │ │ │ │ ├── enum06.c │ │ │ │ ├── exc01.h │ │ │ │ ├── exc01a.c │ │ │ │ ├── exc01b.c │ │ │ │ ├── except01.c │ │ │ │ ├── except02.c │ │ │ │ ├── except03.c │ │ │ │ ├── except04.c │ │ │ │ ├── except05.c │ │ │ │ ├── except06.c │ │ │ │ ├── except07.c │ │ │ │ ├── except08.c │ │ │ │ ├── except09.c │ │ │ │ ├── except10.c │ │ │ │ ├── except11.c │ │ │ │ ├── except12.c │ │ │ │ ├── except13.c │ │ │ │ ├── except14.c │ │ │ │ ├── except15.c │ │ │ │ ├── except16.c │ │ │ │ ├── except17.c │ │ │ │ ├── except18.c │ │ │ │ ├── except19.c │ │ │ │ ├── except20.c │ │ │ │ ├── except21.c │ │ │ │ ├── except22.c │ │ │ │ ├── except23.c │ │ │ │ ├── except24.c │ │ │ │ ├── except25.c │ │ │ │ ├── except26.c │ │ │ │ ├── except27.c │ │ │ │ ├── except28.c │ │ │ │ ├── except29.c │ │ │ │ ├── except30.c │ │ │ │ ├── except31.c │ │ │ │ ├── except32.c │ │ │ │ ├── except33.c │ │ │ │ ├── except34.c │ │ │ │ ├── except35.c │ │ │ │ ├── except36.c │ │ │ │ ├── except37.c │ │ │ │ ├── except38.c │ │ │ │ ├── except39.c │ │ │ │ ├── except40.c │ │ │ │ ├── except41.c │ │ │ │ ├── except42.c │ │ │ │ ├── expr01.c │ │ │ │ ├── expr02.c │ │ │ │ ├── fail.h │ │ │ │ ├── failex.h │ │ │ │ ├── float01.c │ │ │ │ ├── float02.c │ │ │ │ ├── float03.c │ │ │ │ ├── float04.c │ │ │ │ ├── float05.c │ │ │ │ ├── fnstat1.h │ │ │ │ ├── fnstat1a.c │ │ │ │ ├── fnstat1b.c │ │ │ │ ├── fntemp01.c │ │ │ │ ├── fntemp02.c │ │ │ │ ├── fntemp03.c │ │ │ │ ├── fntemp04.c │ │ │ │ ├── fntemp05.c │ │ │ │ ├── fntemp06.c │ │ │ │ ├── fntemp07.c │ │ │ │ ├── fntemp08.c │ │ │ │ ├── fntemp09.c │ │ │ │ ├── fntemp10.c │ │ │ │ ├── fntemp11.c │ │ │ │ ├── fntemp12.c │ │ │ │ ├── fntemp13.c │ │ │ │ ├── fntemp14.c │ │ │ │ ├── fntemp15.c │ │ │ │ ├── fntemp16.c │ │ │ │ ├── fntemp17.c │ │ │ │ ├── fntemp18.c │ │ │ │ ├── fntemp19.c │ │ │ │ ├── fntemp20.c │ │ │ │ ├── fntemp21.c │ │ │ │ ├── fntemp22.c │ │ │ │ ├── fntemp23.c │ │ │ │ ├── fntemp24.c │ │ │ │ ├── fntemp25.c │ │ │ │ ├── fntemp26.c │ │ │ │ ├── fntemp27.c │ │ │ │ ├── fntemp28.c │ │ │ │ ├── fold01.c │ │ │ │ ├── fold02.c │ │ │ │ ├── for01.c │ │ │ │ ├── friend1.c │ │ │ │ ├── friend2.c │ │ │ │ ├── friend3.c │ │ │ │ ├── friend4.c │ │ │ │ ├── friend4b.c │ │ │ │ ├── friend5.c │ │ │ │ ├── friend6.c │ │ │ │ ├── gpf01.c │ │ │ │ ├── hdr1.h │ │ │ │ ├── hdr2.h │ │ │ │ ├── hdr3.h │ │ │ │ ├── hier01.c │ │ │ │ ├── hier02.c │ │ │ │ ├── hier03.c │ │ │ │ ├── hier04.c │ │ │ │ ├── huge01.c │ │ │ │ ├── i6401.c │ │ │ │ ├── i6402.c │ │ │ │ ├── i6403.c │ │ │ │ ├── i6404.c │ │ │ │ ├── i6405.c │ │ │ │ ├── i6406.c │ │ │ │ ├── i6407.c │ │ │ │ ├── i6408.c │ │ │ │ ├── i6409.c │ │ │ │ ├── i64cmp.c │ │ │ │ ├── i64cnv.c │ │ │ │ ├── i64op.c │ │ │ │ ├── init01.c │ │ │ │ ├── init02.c │ │ │ │ ├── init03.c │ │ │ │ ├── init04.c │ │ │ │ ├── init05.c │ │ │ │ ├── init06.c │ │ │ │ ├── init07.c │ │ │ │ ├── init08.c │ │ │ │ ├── init09.c │ │ │ │ ├── init10.c │ │ │ │ ├── init11.c │ │ │ │ ├── init12.c │ │ │ │ ├── init13.c │ │ │ │ ├── init14.c │ │ │ │ ├── init15.c │ │ │ │ ├── init16.c │ │ │ │ ├── init17.c │ │ │ │ ├── init18.c │ │ │ │ ├── init19.c │ │ │ │ ├── init20.c │ │ │ │ ├── init21.c │ │ │ │ ├── init22.c │ │ │ │ ├── init23.c │ │ │ │ ├── init24.c │ │ │ │ ├── init25.c │ │ │ │ ├── init26.c │ │ │ │ ├── init27.c │ │ │ │ ├── init28.c │ │ │ │ ├── init29.c │ │ │ │ ├── inline01.c │ │ │ │ ├── inline02.c │ │ │ │ ├── inline03.c │ │ │ │ ├── inline04.c │ │ │ │ ├── inline05.c │ │ │ │ ├── inline06.c │ │ │ │ ├── int01.c │ │ │ │ ├── intel01.c │ │ │ │ ├── io01.c │ │ │ │ ├── io02.c │ │ │ │ ├── io03.c │ │ │ │ ├── io04.c │ │ │ │ ├── io05.c │ │ │ │ ├── io06.c │ │ │ │ ├── io07.c │ │ │ │ ├── io08.c │ │ │ │ ├── io09.c │ │ │ │ ├── iso01.c │ │ │ │ ├── iso02.c │ │ │ │ ├── link1.c │ │ │ │ ├── link10.c │ │ │ │ ├── link11.h │ │ │ │ ├── link11a.c │ │ │ │ ├── link11b.c │ │ │ │ ├── link12.c │ │ │ │ ├── link13.c │ │ │ │ ├── link14.h │ │ │ │ ├── link14a.c │ │ │ │ ├── link14b.c │ │ │ │ ├── link14c.c │ │ │ │ ├── link15.h │ │ │ │ ├── link15a.c │ │ │ │ ├── link15b.c │ │ │ │ ├── link15c.c │ │ │ │ ├── link2.c │ │ │ │ ├── link3.h │ │ │ │ ├── link3a.c │ │ │ │ ├── link3b.c │ │ │ │ ├── link4.h │ │ │ │ ├── link4a.c │ │ │ │ ├── link4b.c │ │ │ │ ├── link5.h │ │ │ │ ├── link5a.c │ │ │ │ ├── link5b.c │ │ │ │ ├── link6.h │ │ │ │ ├── link6a.c │ │ │ │ ├── link6b.c │ │ │ │ ├── link7a.c │ │ │ │ ├── link7b.c │ │ │ │ ├── link8.h │ │ │ │ ├── link8a.c │ │ │ │ ├── link8b.c │ │ │ │ ├── link9.h │ │ │ │ ├── link9a.c │ │ │ │ ├── link9b.c │ │ │ │ ├── main1.c │ │ │ │ ├── memtmp01.c │ │ │ │ ├── memtmp02.c │ │ │ │ ├── memtmp03.c │ │ │ │ ├── mp01.c │ │ │ │ ├── mp02.c │ │ │ │ ├── mp03.c │ │ │ │ ├── mp04.c │ │ │ │ ├── mp05.c │ │ │ │ ├── mp06.c │ │ │ │ ├── mp07.c │ │ │ │ ├── mp08.c │ │ │ │ ├── mp09.c │ │ │ │ ├── mp10.c │ │ │ │ ├── mp11.c │ │ │ │ ├── mp12.c │ │ │ │ ├── mp13.c │ │ │ │ ├── ms01.c │ │ │ │ ├── munge.c │ │ │ │ ├── mut01.c │ │ │ │ ├── name1.c │ │ │ │ ├── name2.c │ │ │ │ ├── name3.c │ │ │ │ ├── new01.c │ │ │ │ ├── new02.c │ │ │ │ ├── new03.c │ │ │ │ ├── new04.c │ │ │ │ ├── new05.c │ │ │ │ ├── new06.c │ │ │ │ ├── new07.c │ │ │ │ ├── new08.c │ │ │ │ ├── new09.c │ │ │ │ ├── new10.c │ │ │ │ ├── new11.c │ │ │ │ ├── new12.c │ │ │ │ ├── new13.c │ │ │ │ ├── new14.c │ │ │ │ ├── new15.c │ │ │ │ ├── new16.c │ │ │ │ ├── new17.c │ │ │ │ ├── nogen01.c │ │ │ │ ├── nogen02.c │ │ │ │ ├── nogen03.c │ │ │ │ ├── ns01.c │ │ │ │ ├── ns02.c │ │ │ │ ├── ns03.c │ │ │ │ ├── ns04.c │ │ │ │ ├── ns05.c │ │ │ │ ├── ns06.c │ │ │ │ ├── ns07.c │ │ │ │ ├── ns08.c │ │ │ │ ├── ns09.c │ │ │ │ ├── ns10.c │ │ │ │ ├── ns11.c │ │ │ │ ├── ns12.c │ │ │ │ ├── ns13.c │ │ │ │ ├── ns14.c │ │ │ │ ├── ns15.c │ │ │ │ ├── ns16.c │ │ │ │ ├── ns17.c │ │ │ │ ├── ns18.c │ │ │ │ ├── ns19.c │ │ │ │ ├── ns20.c │ │ │ │ ├── ns21.c │ │ │ │ ├── ns22.c │ │ │ │ ├── ns23.c │ │ │ │ ├── ns24.c │ │ │ │ ├── ns25.c │ │ │ │ ├── ns26.c │ │ │ │ ├── ns27.c │ │ │ │ ├── ns28.c │ │ │ │ ├── ns29.c │ │ │ │ ├── ns30.c │ │ │ │ ├── ns31.c │ │ │ │ ├── ns32.c │ │ │ │ ├── ns33.c │ │ │ │ ├── ns34.c │ │ │ │ ├── ns35.c │ │ │ │ ├── ns36.c │ │ │ │ ├── ns37.c │ │ │ │ ├── ns38.c │ │ │ │ ├── ns39.c │ │ │ │ ├── ns40.c │ │ │ │ ├── ns41.c │ │ │ │ ├── ns42.c │ │ │ │ ├── ns43.c │ │ │ │ ├── ns44.c │ │ │ │ ├── ns45.c │ │ │ │ ├── offset01.c │ │ │ │ ├── opeq01.c │ │ │ │ ├── opeq02.c │ │ │ │ ├── opeq03.c │ │ │ │ ├── opeq04.c │ │ │ │ ├── opeq05.c │ │ │ │ ├── opeq06.c │ │ │ │ ├── opeq07.c │ │ │ │ ├── opeq08.c │ │ │ │ ├── opeq09.c │ │ │ │ ├── opeq10.c │ │ │ │ ├── opeq11.c │ │ │ │ ├── opeq12.c │ │ │ │ ├── opeq13.c │ │ │ │ ├── opeq14.c │ │ │ │ ├── opov01.c │ │ │ │ ├── opov02.c │ │ │ │ ├── opov03.c │ │ │ │ ├── opov04.c │ │ │ │ ├── opov05.c │ │ │ │ ├── opov06.c │ │ │ │ ├── opt01.c │ │ │ │ ├── opt02.c │ │ │ │ ├── opt03.c │ │ │ │ ├── opt04.c │ │ │ │ ├── opt05.c │ │ │ │ ├── opt06.c │ │ │ │ ├── opt07.c │ │ │ │ ├── opt08.c │ │ │ │ ├── opt09.c │ │ │ │ ├── opt10.c │ │ │ │ ├── opt11.c │ │ │ │ ├── opt12.c │ │ │ │ ├── opt13.c │ │ │ │ ├── opt14.c │ │ │ │ ├── opt15.c │ │ │ │ ├── opt16.c │ │ │ │ ├── opt17.c │ │ │ │ ├── opt18.c │ │ │ │ ├── opt19.c │ │ │ │ ├── opt20.c │ │ │ │ ├── opt21.c │ │ │ │ ├── opt22.c │ │ │ │ ├── opt23.c │ │ │ │ ├── opt24.c │ │ │ │ ├── opt25.c │ │ │ │ ├── opt26.c │ │ │ │ ├── opt27.c │ │ │ │ ├── opt28.c │ │ │ │ ├── opt29.c │ │ │ │ ├── opt30.c │ │ │ │ ├── opt31.c │ │ │ │ ├── opt32.c │ │ │ │ ├── opt33.c │ │ │ │ ├── opt34.c │ │ │ │ ├── opt35.c │ │ │ │ ├── opt36.c │ │ │ │ ├── opt37.c │ │ │ │ ├── opt38.c │ │ │ │ ├── opt39.c │ │ │ │ ├── opt40.c │ │ │ │ ├── opt41.c │ │ │ │ ├── opt42.c │ │ │ │ ├── opt43.c │ │ │ │ ├── opt44.c │ │ │ │ ├── opt45.c │ │ │ │ ├── over01.c │ │ │ │ ├── over02.c │ │ │ │ ├── over03.c │ │ │ │ ├── over04.c │ │ │ │ ├── over05.c │ │ │ │ ├── over06.c │ │ │ │ ├── over07.c │ │ │ │ ├── over08.c │ │ │ │ ├── over09.c │ │ │ │ ├── over10.c │ │ │ │ ├── over11.c │ │ │ │ ├── over12.c │ │ │ │ ├── over13.c │ │ │ │ ├── over14.c │ │ │ │ ├── over15.c │ │ │ │ ├── pack1.c │ │ │ │ ├── pack2.c │ │ │ │ ├── pack3.c │ │ │ │ ├── pack4.c │ │ │ │ ├── pack5.c │ │ │ │ ├── pack6.c │ │ │ │ ├── pack7.c │ │ │ │ ├── parm01.c │ │ │ │ ├── parm02.c │ │ │ │ ├── parm03.c │ │ │ │ ├── parm04.c │ │ │ │ ├── parm05.c │ │ │ │ ├── parm06.c │ │ │ │ ├── parm07.c │ │ │ │ ├── parm08.c │ │ │ │ ├── parm09.c │ │ │ │ ├── parm10.c │ │ │ │ ├── parm11.c │ │ │ │ ├── parm12.c │ │ │ │ ├── parse01.c │ │ │ │ ├── pch01.c │ │ │ │ ├── pch01.h │ │ │ │ ├── pch02.c │ │ │ │ ├── pch03.c │ │ │ │ ├── pch03.h │ │ │ │ ├── pch04.c │ │ │ │ ├── pch05.c │ │ │ │ ├── pch05.h │ │ │ │ ├── pch06.c │ │ │ │ ├── pch07.c │ │ │ │ ├── pch07.h │ │ │ │ ├── pch08.c │ │ │ │ ├── pch09.c │ │ │ │ ├── pch09.h │ │ │ │ ├── pch10.c │ │ │ │ ├── pch11.c │ │ │ │ ├── pch11.h │ │ │ │ ├── pch12.c │ │ │ │ ├── pch13.c │ │ │ │ ├── pch13.h │ │ │ │ ├── pch14.c │ │ │ │ ├── pch15.c │ │ │ │ ├── pch16.c │ │ │ │ ├── pch16.h │ │ │ │ ├── pch17.c │ │ │ │ ├── pch18.c │ │ │ │ ├── pch18.h │ │ │ │ ├── pch19.c │ │ │ │ ├── pch20.c │ │ │ │ ├── pch21.c │ │ │ │ ├── positive.mif │ │ │ │ ├── pp01.c │ │ │ │ ├── pp02.c │ │ │ │ ├── pp03.c │ │ │ │ ├── pp04.c │ │ │ │ ├── pp05.c │ │ │ │ ├── pp06.c │ │ │ │ ├── pp07.c │ │ │ │ ├── pp08.c │ │ │ │ ├── pp09.c │ │ │ │ ├── pp10.c │ │ │ │ ├── pp11.c │ │ │ │ ├── pp12.c │ │ │ │ ├── pp13.c │ │ │ │ ├── pp14.c │ │ │ │ ├── pp15.c │ │ │ │ ├── pp16.c │ │ │ │ ├── pp17.c │ │ │ │ ├── pp18.c │ │ │ │ ├── pp18.h │ │ │ │ ├── pp19.c │ │ │ │ ├── pp20.c │ │ │ │ ├── pp21.c │ │ │ │ ├── pp22.c │ │ │ │ ├── pp23.c │ │ │ │ ├── pp24.c │ │ │ │ ├── pp25.c │ │ │ │ ├── pp26.c │ │ │ │ ├── pp27.c │ │ │ │ ├── pp28.c │ │ │ │ ├── pp29.c │ │ │ │ ├── pp30.c │ │ │ │ ├── pp31.c │ │ │ │ ├── pp32.c │ │ │ │ ├── pp33.c │ │ │ │ ├── pp34.c │ │ │ │ ├── pp35.c │ │ │ │ ├── pp36.c │ │ │ │ ├── pp37.c │ │ │ │ ├── pp38.c │ │ │ │ ├── prag01.c │ │ │ │ ├── prag02.c │ │ │ │ ├── prag03.c │ │ │ │ ├── prag04.c │ │ │ │ ├── quest01.c │ │ │ │ ├── quest02.c │ │ │ │ ├── quest03.c │ │ │ │ ├── quest04.c │ │ │ │ ├── ref01.c │ │ │ │ ├── ref02.c │ │ │ │ ├── ref03.c │ │ │ │ ├── ref04.c │ │ │ │ ├── ref05.c │ │ │ │ ├── ref06.c │ │ │ │ ├── ref07.c │ │ │ │ ├── ref08.c │ │ │ │ ├── ref09.c │ │ │ │ ├── ref10.c │ │ │ │ ├── ref11.c │ │ │ │ ├── ref12.c │ │ │ │ ├── ref13.c │ │ │ │ ├── ref14.c │ │ │ │ ├── ref15.c │ │ │ │ ├── ref16.c │ │ │ │ ├── reint00.c │ │ │ │ ├── ret01.c │ │ │ │ ├── ret02.c │ │ │ │ ├── ret03.c │ │ │ │ ├── ret04.c │ │ │ │ ├── ret05.c │ │ │ │ ├── ret06.c │ │ │ │ ├── ret07.c │ │ │ │ ├── ret08.c │ │ │ │ ├── ret09.c │ │ │ │ ├── ret10.c │ │ │ │ ├── ret11.c │ │ │ │ ├── ret12.c │ │ │ │ ├── risc01.c │ │ │ │ ├── rtti01.c │ │ │ │ ├── rtti02.c │ │ │ │ ├── rtti03.c │ │ │ │ ├── rtti04.c │ │ │ │ ├── rtti05.c │ │ │ │ ├── rtti06.c │ │ │ │ ├── rtti07.c │ │ │ │ ├── rtti08.c │ │ │ │ ├── setjmp01.c │ │ │ │ ├── setjmp02.c │ │ │ │ ├── setjmp03.c │ │ │ │ ├── sizeof01.c │ │ │ │ ├── sizeof02.c │ │ │ │ ├── sizeof03.c │ │ │ │ ├── src01.c │ │ │ │ ├── src01.h │ │ │ │ ├── stat01.c │ │ │ │ ├── stat02.c │ │ │ │ ├── str01.c │ │ │ │ ├── str02.c │ │ │ │ ├── str03.c │ │ │ │ ├── str04.c │ │ │ │ ├── switch01.c │ │ │ │ ├── t_pck1.h │ │ │ │ ├── t_pck2.h │ │ │ │ ├── t_poppk.h │ │ │ │ ├── thread01.c │ │ │ │ ├── thread02.c │ │ │ │ ├── udc01.c │ │ │ │ ├── udc02.c │ │ │ │ ├── union01.c │ │ │ │ ├── union02.c │ │ │ │ ├── union03.c │ │ │ │ ├── vb01.c │ │ │ │ ├── vb02.c │ │ │ │ ├── vb03.c │ │ │ │ ├── vf01.c │ │ │ │ ├── vf02.c │ │ │ │ ├── vf03.c │ │ │ │ ├── vf04.c │ │ │ │ ├── vf05.c │ │ │ │ ├── vf06.c │ │ │ │ ├── vf07.c │ │ │ │ ├── vf08.c │ │ │ │ ├── vf09.c │ │ │ │ ├── vf10.c │ │ │ │ ├── vf11.c │ │ │ │ ├── vf12.c │ │ │ │ ├── vf13.c │ │ │ │ ├── vf14.c │ │ │ │ ├── vf15.c │ │ │ │ ├── vf16.c │ │ │ │ ├── vf17.c │ │ │ │ ├── vf18.c │ │ │ │ ├── vf19.c │ │ │ │ ├── vf20.c │ │ │ │ └── vf21.c │ │ │ └── testrun.cmd │ │ ├── preproc │ │ │ ├── exec.chk │ │ │ ├── geninput.c │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── pp01.c │ │ │ ├── pp02.c │ │ │ ├── pp03.c │ │ │ ├── pp04.c │ │ │ ├── pp05.c │ │ │ ├── pp06.c │ │ │ ├── pp07.c │ │ │ ├── pp08.c │ │ │ ├── pp08.h │ │ │ ├── pp08a.h │ │ │ ├── pp08b.h │ │ │ ├── pp09.c │ │ │ ├── pp10.c │ │ │ ├── pp11.c │ │ │ ├── pp12.c │ │ │ ├── pp13.c │ │ │ ├── pp13.h │ │ │ ├── pp14.c │ │ │ ├── pp15.c │ │ │ ├── pp16.c │ │ │ ├── pp16.h │ │ │ ├── pp17.c │ │ │ └── testrun.cmd │ │ ├── re2c │ │ │ ├── asc2ebc.c │ │ │ ├── basics.h │ │ │ ├── code.c │ │ │ ├── debug.chk │ │ │ ├── dfa.c │ │ │ ├── dfa.h │ │ │ ├── ebc2asc.c │ │ │ ├── getopt.c │ │ │ ├── getopt.h │ │ │ ├── globals.h │ │ │ ├── ins.h │ │ │ ├── main.c │ │ │ ├── makefile │ │ │ ├── misc.h │ │ │ ├── onetest.cmd │ │ │ ├── parser.c │ │ │ ├── parser.h │ │ │ ├── plusplus.lex │ │ │ ├── re.h │ │ │ ├── scanner.c │ │ │ ├── scanner.h │ │ │ ├── testrun.cmd │ │ │ ├── useful.c │ │ │ ├── useful.h │ │ │ ├── wc.chk │ │ │ └── word.chk │ │ ├── re2c05 │ │ │ ├── actions.cpp │ │ │ ├── basics.h │ │ │ ├── code.cpp │ │ │ ├── debug.chk │ │ │ ├── dfa.cpp │ │ │ ├── dfa.h │ │ │ ├── globals.h │ │ │ ├── ins.h │ │ │ ├── line.chk │ │ │ ├── main.cpp │ │ │ ├── makefile │ │ │ ├── memchk.cpp │ │ │ ├── memchk.h │ │ │ ├── memchkst.h │ │ │ ├── onetest.cmd │ │ │ ├── parser.cpp │ │ │ ├── parser.h │ │ │ ├── re.h │ │ │ ├── scanner.cpp │ │ │ ├── scanner.h │ │ │ ├── scanner.re │ │ │ ├── substr.cpp │ │ │ ├── substr.h │ │ │ ├── testrun.cmd │ │ │ ├── token.h │ │ │ ├── translat.cpp │ │ │ ├── wc.chk │ │ │ └── ytab.h │ │ ├── sizelist │ │ │ ├── check2.chk │ │ │ ├── check3.chk │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── psf1.h │ │ │ ├── psf2.c │ │ │ ├── psf2.h │ │ │ ├── psfistt.c │ │ │ ├── psfistt.chk │ │ │ └── testrun.cmd │ │ ├── splash │ │ │ ├── assoc.c │ │ │ ├── assoc.h │ │ │ ├── chgfnt.c │ │ │ ├── cislog.c │ │ │ ├── exec.chk │ │ │ ├── justify.c │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── regex.c │ │ │ ├── regex.h │ │ │ ├── regexp.h │ │ │ ├── regmagic.h │ │ │ ├── splash.c │ │ │ ├── splash.h │ │ │ ├── spltest.c │ │ │ ├── testrun.cmd │ │ │ ├── tracer.c │ │ │ ├── tracer.h │ │ │ ├── tstio.c │ │ │ └── xcl.c │ │ ├── stepanov │ │ │ ├── makefile │ │ │ ├── onetest.cmd │ │ │ ├── oop_v1p5.c │ │ │ ├── oop_v1p6.c │ │ │ ├── oop_v1p7.c │ │ │ ├── ste_v1p1.c │ │ │ ├── ste_v1p2.c │ │ │ ├── stepanov.chk │ │ │ └── testrun.cmd │ │ ├── stl.94 │ │ │ ├── algo.h │ │ │ ├── algobase.h │ │ │ ├── bool.h │ │ │ ├── bvector.h │ │ │ ├── defalloc.h │ │ │ ├── demo │ │ │ │ ├── demo.chk │ │ │ │ ├── demo.cpp │ │ │ │ ├── demo.in │ │ │ │ ├── makefile │ │ │ │ ├── onetest.cmd │ │ │ │ └── testrun.cmd │ │ │ ├── deque.h │ │ │ ├── examples │ │ │ │ ├── accum1.cpp │ │ │ │ ├── accum2.cpp │ │ │ │ ├── adjdiff0.cpp │ │ │ │ ├── adjdiff1.cpp │ │ │ │ ├── adjdiff2.cpp │ │ │ │ ├── adjfind0.cpp │ │ │ │ ├── adjfind1.cpp │ │ │ │ ├── adjfind2.cpp │ │ │ │ ├── advance.cpp │ │ │ │ ├── alg1.cpp │ │ │ │ ├── alg2.cpp │ │ │ │ ├── alg3.cpp │ │ │ │ ├── alg4.cpp │ │ │ │ ├── alg5.cpp │ │ │ │ ├── bcompos1.cpp │ │ │ │ ├── bcompos2.cpp │ │ │ │ ├── bind1st1.cpp │ │ │ │ ├── bind1st2.cpp │ │ │ │ ├── bind2nd1.cpp │ │ │ │ ├── bind2nd2.cpp │ │ │ │ ├── binsert1.cpp │ │ │ │ ├── binsert2.cpp │ │ │ │ ├── binsrch1.cpp │ │ │ │ ├── binsrch2.cpp │ │ │ │ ├── bnegate1.cpp │ │ │ │ ├── bnegate2.cpp │ │ │ │ ├── bvec1.cpp │ │ │ │ ├── copy1.cpp │ │ │ │ ├── copy2.cpp │ │ │ │ ├── copy3.cpp │ │ │ │ ├── copy4.cpp │ │ │ │ ├── copyb.cpp │ │ │ │ ├── copyb0.cpp │ │ │ │ ├── count0.cpp │ │ │ │ ├── count1.cpp │ │ │ │ ├── countif1.cpp │ │ │ │ ├── deque1.cpp │ │ │ │ ├── divides.cpp │ │ │ │ ├── eqlrnge0.cpp │ │ │ │ ├── eqlrnge1.cpp │ │ │ │ ├── eqlrnge2.cpp │ │ │ │ ├── equal0.cpp │ │ │ │ ├── equal1.cpp │ │ │ │ ├── equal2.cpp │ │ │ │ ├── equalto.cpp │ │ │ │ ├── error1.cpp │ │ │ │ ├── exec.chk │ │ │ │ ├── execi86.chk │ │ │ │ ├── fill1.cpp │ │ │ │ ├── filln1.cpp │ │ │ │ ├── find0.cpp │ │ │ │ ├── find1.cpp │ │ │ │ ├── findif0.cpp │ │ │ │ ├── findif1.cpp │ │ │ │ ├── finsert1.cpp │ │ │ │ ├── finsert2.cpp │ │ │ │ ├── foreach0.cpp │ │ │ │ ├── foreach1.cpp │ │ │ │ ├── func1.cpp │ │ │ │ ├── func2.cpp │ │ │ │ ├── func3.cpp │ │ │ │ ├── gener1.cpp │ │ │ │ ├── gener2.cpp │ │ │ │ ├── genern1.cpp │ │ │ │ ├── genern2.cpp │ │ │ │ ├── greateq.cpp │ │ │ │ ├── greater.cpp │ │ │ │ ├── incl0.cpp │ │ │ │ ├── incl1.cpp │ │ │ │ ├── incl2.cpp │ │ │ │ ├── inplmrg1.cpp │ │ │ │ ├── inplmrg2.cpp │ │ │ │ ├── inrprod0.cpp │ │ │ │ ├── inrprod1.cpp │ │ │ │ ├── inrprod2.cpp │ │ │ │ ├── insert1.cpp │ │ │ │ ├── insert2.cpp │ │ │ │ ├── iota1.cpp │ │ │ │ ├── istmit1.cpp │ │ │ │ ├── istmit1.in │ │ │ │ ├── iter1.cpp │ │ │ │ ├── iter2.cpp │ │ │ │ ├── iter3.cpp │ │ │ │ ├── iter4.cpp │ │ │ │ ├── iterswp0.cpp │ │ │ │ ├── iterswp1.cpp │ │ │ │ ├── less.cpp │ │ │ │ ├── lesseq.cpp │ │ │ │ ├── lexcmp1.cpp │ │ │ │ ├── lexcmp2.cpp │ │ │ │ ├── list1.cpp │ │ │ │ ├── list2.cpp │ │ │ │ ├── list3.cpp │ │ │ │ ├── list4.cpp │ │ │ │ ├── logicand.cpp │ │ │ │ ├── logicnot.cpp │ │ │ │ ├── logicor.cpp │ │ │ │ ├── lwrbnd1.cpp │ │ │ │ ├── lwrbnd2.cpp │ │ │ │ ├── makefile │ │ │ │ ├── map1.cpp │ │ │ │ ├── max1.cpp │ │ │ │ ├── max2.cpp │ │ │ │ ├── maxelem1.cpp │ │ │ │ ├── maxelem2.cpp │ │ │ │ ├── merge0.cpp │ │ │ │ ├── merge1.cpp │ │ │ │ ├── merge2.cpp │ │ │ │ ├── min1.cpp │ │ │ │ ├── min2.cpp │ │ │ │ ├── minelem1.cpp │ │ │ │ ├── minelem2.cpp │ │ │ │ ├── minus.cpp │ │ │ │ ├── mismtch0.cpp │ │ │ │ ├── mismtch1.cpp │ │ │ │ ├── mismtch2.cpp │ │ │ │ ├── mkheap0.cpp │ │ │ │ ├── mkheap1.cpp │ │ │ │ ├── mmap1.cpp │ │ │ │ ├── mmap2.cpp │ │ │ │ ├── modulus.cpp │ │ │ │ ├── mset1.cpp │ │ │ │ ├── mset2.cpp │ │ │ │ ├── mset3.cpp │ │ │ │ ├── mset4.cpp │ │ │ │ ├── mset5.cpp │ │ │ │ ├── negate.cpp │ │ │ │ ├── nequal.cpp │ │ │ │ ├── nextprm0.cpp │ │ │ │ ├── nextprm1.cpp │ │ │ │ ├── nextprm2.cpp │ │ │ │ ├── nthelem0.cpp │ │ │ │ ├── nthelem1.cpp │ │ │ │ ├── nthelem2.cpp │ │ │ │ ├── onetest.cmd │ │ │ │ ├── ostmit.cpp │ │ │ │ ├── pair0.cpp │ │ │ │ ├── pair1.cpp │ │ │ │ ├── pair2.cpp │ │ │ │ ├── parsrt0.cpp │ │ │ │ ├── parsrt1.cpp │ │ │ │ ├── parsrt2.cpp │ │ │ │ ├── parsrtc0.cpp │ │ │ │ ├── parsrtc1.cpp │ │ │ │ ├── parsrtc2.cpp │ │ │ │ ├── partsrt0.cpp │ │ │ │ ├── partsum0.cpp │ │ │ │ ├── partsum1.cpp │ │ │ │ ├── partsum2.cpp │ │ │ │ ├── pheap1.cpp │ │ │ │ ├── pheap2.cpp │ │ │ │ ├── plus.cpp │ │ │ │ ├── pqueue1.cpp │ │ │ │ ├── pqueue2.cpp │ │ │ │ ├── prevprm0.cpp │ │ │ │ ├── prevprm1.cpp │ │ │ │ ├── prevprm2.cpp │ │ │ │ ├── ptition0.cpp │ │ │ │ ├── ptition1.cpp │ │ │ │ ├── ptrbinf1.cpp │ │ │ │ ├── ptrbinf2.cpp │ │ │ │ ├── ptrunf1.cpp │ │ │ │ ├── ptrunf2.cpp │ │ │ │ ├── queue1.cpp │ │ │ │ ├── remcopy1.cpp │ │ │ │ ├── remcpif1.cpp │ │ │ │ ├── remif1.cpp │ │ │ │ ├── remove1.cpp │ │ │ │ ├── repcpif1.cpp │ │ │ │ ├── replace0.cpp │ │ │ │ ├── replace1.cpp │ │ │ │ ├── replcpy1.cpp │ │ │ │ ├── replif1.cpp │ │ │ │ ├── revbit2.cpp │ │ │ │ ├── revcopy1.cpp │ │ │ │ ├── reverse1.cpp │ │ │ │ ├── reviter2.cpp │ │ │ │ ├── rndshuf0.cpp │ │ │ │ ├── rndshuf1.cpp │ │ │ │ ├── rndshuf2.cpp │ │ │ │ ├── rotate0.cpp │ │ │ │ ├── rotate1.cpp │ │ │ │ ├── rotcopy0.cpp │ │ │ │ ├── rotcopy1.cpp │ │ │ │ ├── search0.cpp │ │ │ │ ├── search1.cpp │ │ │ │ ├── search2.cpp │ │ │ │ ├── set1.cpp │ │ │ │ ├── set2.cpp │ │ │ │ ├── setdiff0.cpp │ │ │ │ ├── setdiff1.cpp │ │ │ │ ├── setdiff2.cpp │ │ │ │ ├── setintr0.cpp │ │ │ │ ├── setintr1.cpp │ │ │ │ ├── setintr2.cpp │ │ │ │ ├── setsymd0.cpp │ │ │ │ ├── setsymd1.cpp │ │ │ │ ├── setsymd2.cpp │ │ │ │ ├── setunon0.cpp │ │ │ │ ├── setunon1.cpp │ │ │ │ ├── setunon2.cpp │ │ │ │ ├── sort1.cpp │ │ │ │ ├── sort2.cpp │ │ │ │ ├── stack1.cpp │ │ │ │ ├── stack2.cpp │ │ │ │ ├── stblptn0.cpp │ │ │ │ ├── stblptn1.cpp │ │ │ │ ├── stblsrt1.cpp │ │ │ │ ├── stblsrt2.cpp │ │ │ │ ├── stl_test.mif │ │ │ │ ├── swap1.cpp │ │ │ │ ├── swprnge1.cpp │ │ │ │ ├── tech01.cpp │ │ │ │ ├── testrun.cmd │ │ │ │ ├── times.cpp │ │ │ │ ├── trnsfrm1.cpp │ │ │ │ ├── trnsfrm2.cpp │ │ │ │ ├── ucompos1.cpp │ │ │ │ ├── ucompos2.cpp │ │ │ │ ├── unegate1.cpp │ │ │ │ ├── unegate2.cpp │ │ │ │ ├── uniqcpy1.cpp │ │ │ │ ├── uniqcpy2.cpp │ │ │ │ ├── unique1.cpp │ │ │ │ ├── unique2.cpp │ │ │ │ ├── uprbnd1.cpp │ │ │ │ ├── uprbnd2.cpp │ │ │ │ ├── vec1.cpp │ │ │ │ ├── vec2.cpp │ │ │ │ ├── vec3.cpp │ │ │ │ ├── vec4.cpp │ │ │ │ ├── vec5.cpp │ │ │ │ ├── vec6.cpp │ │ │ │ ├── vec7.cpp │ │ │ │ ├── vec8.cpp │ │ │ │ └── world.h │ │ │ ├── faralloc.h │ │ │ ├── fdeque.h │ │ │ ├── flist.h │ │ │ ├── fmap.h │ │ │ ├── fmultmap.h │ │ │ ├── fmultset.h │ │ │ ├── fset.h │ │ │ ├── function.h │ │ │ ├── hdeque.h │ │ │ ├── heap.h │ │ │ ├── hlist.h │ │ │ ├── hmap.h │ │ │ ├── hmultmap.h │ │ │ ├── hmultset.h │ │ │ ├── hset.h │ │ │ ├── hugalloc.h │ │ │ ├── hvector.h │ │ │ ├── iterator.h │ │ │ ├── lbvector.h │ │ │ ├── ldeque.h │ │ │ ├── list.h │ │ │ ├── llist.h │ │ │ ├── lmap.h │ │ │ ├── lmultmap.h │ │ │ ├── lmultset.h │ │ │ ├── lngalloc.h │ │ │ ├── lset.h │ │ │ ├── map.h │ │ │ ├── multimap.h │ │ │ ├── multiset.h │ │ │ ├── neralloc.h │ │ │ ├── nmap.h │ │ │ ├── nmultmap.h │ │ │ ├── nmultset.h │ │ │ ├── nset.h │ │ │ ├── onetest.cmd │ │ │ ├── pair.h │ │ │ ├── pch.h │ │ │ ├── projectn.h │ │ │ ├── random.cpp │ │ │ ├── set.h │ │ │ ├── stack.h │ │ │ ├── stl.h │ │ │ ├── tempbuf.cpp │ │ │ ├── tempbuf.h │ │ │ ├── testrun.cmd │ │ │ ├── tree.h │ │ │ └── vector.h │ │ ├── stl.95 │ │ │ ├── algo.h │ │ │ ├── algobase.h │ │ │ ├── bool.h │ │ │ ├── bvector.h │ │ │ ├── defalloc.h │ │ │ ├── deque.h │ │ │ ├── examples │ │ │ │ ├── exec.chk │ │ │ │ ├── execi86.chk │ │ │ │ ├── fixpath.sed │ │ │ │ ├── istmit1.in │ │ │ │ ├── makefile │ │ │ │ ├── onetest.cmd │ │ │ │ └── testrun.cmd │ │ │ ├── faralloc.h │ │ │ ├── fdeque.h │ │ │ ├── flist.h │ │ │ ├── fmap.h │ │ │ ├── fmultmap.h │ │ │ ├── fmultset.h │ │ │ ├── fset.h │ │ │ ├── ftp.txt │ │ │ ├── function.h │ │ │ ├── hdeque.h │ │ │ ├── heap.h │ │ │ ├── hlist.h │ │ │ ├── hmap.h │ │ │ ├── hmultmap.h │ │ │ ├── hmultset.h │ │ │ ├── hset.h │ │ │ ├── hugalloc.h │ │ │ ├── hvector.h │ │ │ ├── iterator.h │ │ │ ├── lbvector.h │ │ │ ├── ldeque.h │ │ │ ├── list.h │ │ │ ├── llist.h │ │ │ ├── lmap.h │ │ │ ├── lmultmap.h │ │ │ ├── lmultset.h │ │ │ ├── lngalloc.h │ │ │ ├── lset.h │ │ │ ├── map.h │ │ │ ├── multimap.h │ │ │ ├── multiset.h │ │ │ ├── neralloc.h │ │ │ ├── nmap.h │ │ │ ├── nmultmap.h │ │ │ ├── nmultset.h │ │ │ ├── nset.h │ │ │ ├── onetest.cmd │ │ │ ├── pair.h │ │ │ ├── pch.h │ │ │ ├── projectn.h │ │ │ ├── random.cpp │ │ │ ├── read.me │ │ │ ├── set.h │ │ │ ├── stack.h │ │ │ ├── stl.h │ │ │ ├── tempbuf.cpp │ │ │ ├── tempbuf.h │ │ │ ├── testrun.cmd │ │ │ ├── tree.h │ │ │ └── vector.h │ │ ├── testrun.cmd │ │ ├── torture │ │ │ ├── __ialias.h │ │ │ ├── array.h │ │ │ ├── assert.cpp │ │ │ ├── assert.hpp │ │ │ ├── comparat.h │ │ │ ├── crcptr.h │ │ │ ├── ctrldarr.cpp │ │ │ ├── ctrldarr.h │ │ │ ├── dim2arr.cpp │ │ │ ├── exec.chk │ │ │ ├── iter.h │ │ │ ├── jamstr.cpp │ │ │ ├── jamstr.h │ │ │ ├── list.cpp │ │ │ ├── list.h │ │ │ ├── makefile │ │ │ ├── mdarrtst.cpp │ │ │ ├── memdefau.h │ │ │ ├── newlog.cpp │ │ │ ├── newlog.h │ │ │ ├── noinline.h │ │ │ ├── onetest.cmd │ │ │ ├── ordkeyma.cpp │ │ │ ├── ordkeyma.h │ │ │ ├── ordset.cpp │ │ │ ├── ordset.h │ │ │ ├── placenew.h │ │ │ ├── pool.cpp │ │ │ ├── pool.h │ │ │ ├── rcptr.h │ │ │ ├── shared.h │ │ │ ├── testrun.cmd │ │ │ ├── vector.cpp │ │ │ ├── vector.h │ │ │ ├── vpset.cpp │ │ │ └── vpset.h │ │ ├── wclass │ │ │ ├── makefile │ │ │ ├── nullfunc.cpp │ │ │ ├── onetest.cmd │ │ │ ├── testrun.cmd │ │ │ ├── wboolsw.cpp │ │ │ ├── wboolsw.hpp │ │ │ ├── wbrush.cpp │ │ │ ├── wbrush.hpp │ │ │ ├── wbutton.cpp │ │ │ ├── wbutton.hpp │ │ │ ├── wcheckbx.cpp │ │ │ ├── wcheckbx.hpp │ │ │ ├── wclient.cpp │ │ │ ├── wclient.hpp │ │ │ ├── wcombox.cpp │ │ │ ├── wcombox.hpp │ │ │ ├── wcontrol.cpp │ │ │ ├── wcontrol.hpp │ │ │ ├── wdialog.hpp │ │ │ ├── wdraw.cpp │ │ │ ├── wdraw.hpp │ │ │ ├── weditbox.cpp │ │ │ ├── weditbox.hpp │ │ │ ├── wfiledlg.cpp │ │ │ ├── wfiledlg.hpp │ │ │ ├── wfont.cpp │ │ │ ├── wfont.hpp │ │ │ ├── wgroupbx.cpp │ │ │ ├── wgroupbx.hpp │ │ │ ├── wlibmain.cpp │ │ │ ├── wlibmain.hpp │ │ │ ├── wlist.hpp │ │ │ ├── wlistbox.cpp │ │ │ ├── wlistbox.hpp │ │ │ ├── wmdichld.cpp │ │ │ ├── wmdichld.hpp │ │ │ ├── wmdiwndw.cpp │ │ │ ├── wmdiwndw.hpp │ │ │ ├── wmenu.cpp │ │ │ ├── wmenu.hpp │ │ │ ├── wmenuitm.cpp │ │ │ ├── wmenuitm.hpp │ │ │ ├── wmsgdlg.cpp │ │ │ ├── wmsgdlg.hpp │ │ │ ├── wobject.hpp │ │ │ ├── wobjmap.cpp │ │ │ ├── wobjmap.hpp │ │ │ ├── wpalette.cpp │ │ │ ├── wpalette.hpp │ │ │ ├── wpen.cpp │ │ │ ├── wpen.hpp │ │ │ ├── wpopmenu.cpp │ │ │ ├── wpopmenu.hpp │ │ │ ├── wport.cpp │ │ │ ├── wport.hpp │ │ │ ├── wpshbttn.cpp │ │ │ ├── wpshbttn.hpp │ │ │ ├── wradbttn.cpp │ │ │ ├── wradbttn.hpp │ │ │ ├── wrect.cpp │ │ │ ├── wrect.hpp │ │ │ ├── wregion.hpp │ │ │ ├── wserver.cpp │ │ │ ├── wserver.hpp │ │ │ ├── wstring.cpp │ │ │ ├── wstring.hpp │ │ │ ├── wtest.cpp │ │ │ ├── wtest.hpp │ │ │ ├── wtext.cpp │ │ │ ├── wtext.hpp │ │ │ ├── wtimer.cpp │ │ │ ├── wtimer.hpp │ │ │ ├── wvcllctn.cpp │ │ │ ├── wvcllctn.hpp │ │ │ ├── wvlist.cpp │ │ │ ├── wvlist.hpp │ │ │ ├── wwindow.cpp │ │ │ ├── wwindow.hpp │ │ │ ├── wwinmain.cpp │ │ │ └── wwinmain.hpp │ │ ├── winnt │ │ │ ├── exec.chk │ │ │ ├── makefile │ │ │ ├── testrun.cmd │ │ │ ├── tomdll.c │ │ │ └── tomexe.c │ │ └── yacl │ │ │ ├── base │ │ │ ├── base.h │ │ │ ├── basicops.cpp │ │ │ ├── basicops.h │ │ │ ├── binding.h │ │ │ ├── bitset.cpp │ │ │ ├── bitset.h │ │ │ ├── btreedef.h │ │ │ ├── builder.h │ │ │ ├── bytarray.cpp │ │ │ ├── bytarray.h │ │ │ ├── bytestrm.cpp │ │ │ ├── bytestrm.h │ │ │ ├── bytstrng.cpp │ │ │ ├── bytstrng.h │ │ │ ├── classid.h │ │ │ ├── clntset.cpp │ │ │ ├── clntset.h │ │ │ ├── cmparatr.h │ │ │ ├── date.cpp │ │ │ ├── date.h │ │ │ ├── defs.h │ │ │ ├── error.cpp │ │ │ ├── error.h │ │ │ ├── gbtree.cpp │ │ │ ├── gbtree.h │ │ │ ├── genseq.cpp │ │ │ ├── genseq.h │ │ │ ├── gseq.h │ │ │ ├── integer.cpp │ │ │ ├── integer.h │ │ │ ├── intseq.cpp │ │ │ ├── intseq.h │ │ │ ├── intset.cpp │ │ │ ├── intset.h │ │ │ ├── iofilter.cpp │ │ │ ├── iofilter.h │ │ │ ├── long.h │ │ │ ├── makefile │ │ │ ├── map.cpp │ │ │ ├── map.h │ │ │ ├── mapdef.h │ │ │ ├── mapimp.cpp │ │ │ ├── memory.cpp │ │ │ ├── memory.h │ │ │ ├── object.cpp │ │ │ ├── object.h │ │ │ ├── objptr.h │ │ │ ├── objseq.cpp │ │ │ ├── objseq.h │ │ │ ├── objset.cpp │ │ │ ├── objset.h │ │ │ ├── seqimp.cpp │ │ │ ├── sequence.cpp │ │ │ ├── sequence.h │ │ │ ├── set.cpp │ │ │ ├── set.h │ │ │ ├── setdef.h │ │ │ ├── setimp.cpp │ │ │ ├── stream.cpp │ │ │ ├── stream.h │ │ │ ├── strgseq.cpp │ │ │ ├── strgseq.h │ │ │ ├── strgset.cpp │ │ │ ├── strgset.h │ │ │ ├── string.cpp │ │ │ ├── string.h │ │ │ ├── strsplit.cpp │ │ │ ├── strsplit.h │ │ │ ├── tbtree.cpp │ │ │ ├── tbtree.h │ │ │ ├── tbtreimp.cpp │ │ │ ├── timeofda.cpp │ │ │ ├── timeofda.h │ │ │ ├── tree.cpp │ │ │ ├── tree.h │ │ │ ├── treedef.h │ │ │ ├── treeimp.cpp │ │ │ ├── treewalk.cpp │ │ │ ├── treewalk.h │ │ │ ├── treewdef.h │ │ │ └── voidptr.h │ │ │ ├── io │ │ │ ├── binfile.cpp │ │ │ ├── binfile.h │ │ │ ├── bytstore.cpp │ │ │ ├── bytstore.h │ │ │ ├── dskbtree.cpp │ │ │ ├── dskbtree.h │ │ │ ├── io.h │ │ │ ├── makefile │ │ │ ├── slotfile.cpp │ │ │ └── slotfile.h │ │ │ ├── onetest.cmd │ │ │ ├── test │ │ │ ├── bittest.cpp │ │ │ ├── btreetst.cpp │ │ │ ├── bytstrm.cpp │ │ │ ├── dkbtrtst.cpp │ │ │ ├── format1.cpp │ │ │ ├── gseqtest.cpp │ │ │ ├── holidays.cpp │ │ │ ├── makefile │ │ │ ├── maptest.cpp │ │ │ ├── perstest.cpp │ │ │ ├── seqtest.cpp │ │ │ ├── settest.cpp │ │ │ ├── slotftst.cpp │ │ │ ├── strset.cpp │ │ │ ├── strtest.cpp │ │ │ ├── test.chk │ │ │ ├── treeprnt.cpp │ │ │ ├── treetest.cpp │ │ │ └── wordcnt.cpp │ │ │ └── testrun.cmd │ └── test │ │ ├── execute.mak │ │ ├── logsave.bat │ │ ├── template │ │ ├── tc01.c │ │ ├── tc02.c │ │ ├── tc03.c │ │ ├── tc04.c │ │ ├── tc05.c │ │ ├── tc06a.c │ │ ├── tc06b.c │ │ ├── tc07.c │ │ ├── tc08.c │ │ ├── tc09.c │ │ ├── tc10.c │ │ ├── tc11.c │ │ ├── tc12.c │ │ ├── tc13.c │ │ ├── tc14.c │ │ ├── tc15.c │ │ ├── tc16.c │ │ ├── tc17.c │ │ ├── tc18.c │ │ ├── tc19.c │ │ ├── tc20.c │ │ ├── tc21.c │ │ ├── tc22.c │ │ ├── tc23.c │ │ ├── tc24.c │ │ ├── tc25.c │ │ ├── tc26.c │ │ ├── tc27.c │ │ ├── tc28.c │ │ ├── tc29.c │ │ ├── tf01.c │ │ ├── tf02.c │ │ ├── tf03.c │ │ ├── tf04.c │ │ ├── tf05.c │ │ ├── tf06.c │ │ ├── tf07.c │ │ ├── tf08.c │ │ ├── tf09.c │ │ ├── tf10.c │ │ ├── tf11.c │ │ ├── tf12.c │ │ ├── tf13.c │ │ ├── tf14.c │ │ ├── tf15.c │ │ ├── tf16.c │ │ ├── tf17.c │ │ ├── tf18.c │ │ ├── tf19.c │ │ ├── tf20.c │ │ ├── tf21.c │ │ ├── tf22.c │ │ ├── tf23.c │ │ └── tf24.c │ │ ├── test.bat │ │ ├── testall.bat │ │ ├── testarch.bat │ │ ├── testbeg.bat │ │ ├── testdarc.bat │ │ ├── testend.bat │ │ ├── testenv.mak │ │ ├── testinc.bat │ │ ├── testinit.mak │ │ ├── testmsg.mdl │ │ ├── testmsgf.bat │ │ ├── testmsgr.bat │ │ ├── testmsgs.bat │ │ ├── testmsgt.bat │ │ ├── teststrm.bat │ │ ├── teststrm.cmd │ │ ├── tstream.mak │ │ ├── tstrm.bat │ │ ├── tstrm.cmd │ │ ├── verasm.bat │ │ ├── vercall.bat │ │ ├── verclog.bat │ │ └── verpp.bat ├── pmake │ ├── boot.ctl │ ├── bootmake │ ├── dos386 │ │ └── makefile │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── pmake.c │ ├── pmake.h │ ├── pmkcmd.c │ └── prereq.ctl ├── posix │ ├── h │ │ ├── argvenv.h │ │ ├── argvrx.h │ │ ├── console.h │ │ ├── filerx.h │ │ ├── fnutils.h │ │ ├── getopt.h │ │ ├── lineprt.h │ │ ├── misc.h │ │ └── regexp.h │ ├── lang.ctl │ ├── mif │ │ ├── commands.mif │ │ ├── common.mif │ │ ├── lib.mif │ │ ├── makeall.mif │ │ ├── makelib.mif │ │ ├── makeone.mif │ │ └── targos.mif │ ├── misc │ │ ├── alloc.c │ │ ├── argvenv.c │ │ ├── argvrx.c │ │ ├── console.c │ │ ├── die.c │ │ ├── dos │ │ │ ├── mc │ │ │ │ └── makefile │ │ │ └── ms │ │ │ │ └── makefile │ │ ├── dosos2 │ │ │ ├── mc │ │ │ │ └── makefile │ │ │ └── ms │ │ │ │ └── makefile │ │ ├── filerx.c │ │ ├── fncomp.c │ │ ├── fnlower.c │ │ ├── getclsz.c │ │ ├── getopt.c │ │ ├── isdotdot.c │ │ ├── lineprt.c │ │ ├── nt386 │ │ │ └── mf │ │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── _s │ │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── mf │ │ │ │ └── makefile │ │ ├── pharlap │ │ │ └── mf │ │ │ │ └── makefile │ │ ├── qnx │ │ │ └── ms │ │ │ │ └── makefile │ │ ├── qnx16 │ │ │ └── mc │ │ │ │ └── makefile │ │ ├── quit.c │ │ └── regexp.c │ ├── prereq.ctl │ ├── readme │ ├── src │ │ ├── basename │ │ │ ├── basename.c │ │ │ └── makefile │ │ ├── cat │ │ │ ├── cat.c │ │ │ └── makefile │ │ ├── chmod │ │ │ ├── chmod.c │ │ │ └── makefile │ │ ├── clean.bat │ │ ├── clean.cmd │ │ ├── cmp │ │ │ ├── cmp.c │ │ │ └── makefile │ │ ├── comm │ │ │ ├── comm.c │ │ │ └── makefile │ │ ├── compress │ │ │ ├── compapi.c │ │ │ ├── compress.c │ │ │ ├── compress.fns │ │ │ ├── compress.h │ │ │ ├── compusi.c │ │ │ └── makefile │ │ ├── cp │ │ │ ├── cp.c │ │ │ ├── cp.h │ │ │ ├── cpfile.c │ │ │ ├── cpglob.c │ │ │ ├── cpio.c │ │ │ ├── cpmem.c │ │ │ └── makefile │ │ ├── cut │ │ │ ├── cut.c │ │ │ └── makefile │ │ ├── date │ │ │ ├── date.c │ │ │ └── makefile │ │ ├── dev │ │ │ ├── dev.c │ │ │ └── makefile │ │ ├── df │ │ │ ├── df.c │ │ │ └── makefile │ │ ├── dirname │ │ │ ├── dirname.c │ │ │ └── makefile │ │ ├── du │ │ │ ├── du.c │ │ │ └── makefile │ │ ├── egrep │ │ │ ├── egrep.c │ │ │ └── makefile │ │ ├── env │ │ │ ├── env.c │ │ │ └── makefile │ │ ├── expand │ │ │ ├── expand.c │ │ │ └── makefile │ │ ├── false │ │ │ ├── false.c │ │ │ └── makefile │ │ ├── fgrep │ │ │ ├── fgrep.c │ │ │ └── makefile │ │ ├── fmt │ │ │ ├── fmt.c │ │ │ └── makefile │ │ ├── fold │ │ │ ├── fold.c │ │ │ └── makefile │ │ ├── gnutar │ │ │ ├── buffer.c │ │ │ ├── buffer.h │ │ │ ├── create.c │ │ │ ├── create.h │ │ │ ├── ctime.c │ │ │ ├── extract.c │ │ │ ├── extract.h │ │ │ ├── getoopt.c │ │ │ ├── getopt.c │ │ │ ├── getopt.h │ │ │ ├── list.c │ │ │ ├── list.h │ │ │ ├── makefile │ │ │ ├── misc │ │ │ │ ├── dosio.c │ │ │ │ ├── lk │ │ │ │ ├── makefile.c5 │ │ │ │ ├── makefile.mnx │ │ │ │ ├── makefile.unx │ │ │ │ ├── ndir.c │ │ │ │ ├── ndir.h │ │ │ │ ├── pdtar.msg │ │ │ │ ├── porting │ │ │ │ ├── readme │ │ │ │ ├── tar.1 │ │ │ │ ├── tar.5 │ │ │ │ └── todo │ │ │ ├── names.c │ │ │ ├── port.c │ │ │ ├── port.h │ │ │ ├── readme │ │ │ ├── tar.c │ │ │ └── tar.h │ │ ├── head │ │ │ ├── head.c │ │ │ └── makefile │ │ ├── lc │ │ │ ├── lc.c │ │ │ └── makefile │ │ ├── line │ │ │ ├── line.c │ │ │ └── makefile │ │ ├── ls │ │ │ ├── ls.c │ │ │ └── makefile │ │ ├── mkdir │ │ │ ├── makefile │ │ │ └── mkdir.c │ │ ├── more │ │ │ ├── makefile │ │ │ └── more.c │ │ ├── od │ │ │ ├── makefile │ │ │ └── od.c │ │ ├── paste │ │ │ ├── makefile │ │ │ └── paste.c │ │ ├── ps │ │ │ ├── makefile │ │ │ └── ps.c │ │ ├── pwd │ │ │ ├── makefile │ │ │ └── pwd.c │ │ ├── rev │ │ │ ├── makefile │ │ │ └── rev.c │ │ ├── rm │ │ │ ├── makefile │ │ │ ├── rm.c │ │ │ └── test.cmd │ │ ├── rmdir │ │ │ ├── makefile │ │ │ └── rmdir.c │ │ ├── sed │ │ │ ├── ctrans │ │ │ ├── makefile │ │ │ ├── pascal │ │ │ ├── sed.c │ │ │ ├── sed.h │ │ │ ├── sed.man │ │ │ ├── sedcomp.c │ │ │ ├── sedtest.bat │ │ │ └── sedtest.mak │ │ ├── sleep │ │ │ ├── makefile │ │ │ └── sleep.c │ │ ├── sort │ │ │ ├── makefile │ │ │ └── sort.c │ │ ├── split │ │ │ ├── makefile │ │ │ └── split.c │ │ ├── strings │ │ │ ├── makefile │ │ │ └── strings.c │ │ ├── tail │ │ │ ├── makefile │ │ │ └── tail.c │ │ ├── tee │ │ │ ├── makefile │ │ │ └── tee.c │ │ ├── tr │ │ │ ├── makefile │ │ │ └── tr.c │ │ ├── true │ │ │ ├── makefile │ │ │ └── true.c │ │ ├── trunc │ │ │ ├── makefile │ │ │ └── trunc.c │ │ ├── unexpand │ │ │ ├── makefile │ │ │ └── unexpand.c │ │ ├── uniq │ │ │ ├── makefile │ │ │ └── uniq.c │ │ ├── uudecode │ │ │ ├── makefile │ │ │ └── uudecode.c │ │ ├── uuencode │ │ │ ├── makefile │ │ │ └── uuencode.c │ │ ├── wc │ │ │ ├── makefile │ │ │ └── wc.c │ │ ├── which │ │ │ ├── makefile │ │ │ └── which.c │ │ └── who │ │ │ ├── makefile │ │ │ └── who.c │ └── systems │ │ ├── dos │ │ └── makefile │ │ ├── dosos2 │ │ └── makefile │ │ ├── nt386 │ │ └── makefile │ │ ├── ntaxp │ │ └── makefile │ │ ├── os2386 │ │ └── makefile │ │ ├── pharlap │ │ └── makefile │ │ ├── qnx │ │ └── makefile │ │ └── qnx16 │ │ └── makefile ├── rcsdll │ ├── bat │ │ ├── gen_ci.bat │ │ ├── gen_co.bat │ │ ├── mks_ci.bat │ │ ├── mks_co.bat │ │ ├── p4_ci.bat │ │ ├── p4_co.bat │ │ ├── pvcs_ci.bat │ │ ├── pvcs_co.bat │ │ ├── wat_ci.bat │ │ └── wat_co.bat │ ├── cmd │ │ ├── gen_ci.cmd │ │ ├── gen_co.cmd │ │ ├── mks_ci.cmd │ │ ├── mks_co.cmd │ │ ├── p4_ci.cmd │ │ ├── p4_co.cmd │ │ ├── pvcs_ci.cmd │ │ ├── pvcs_co.cmd │ │ ├── wat_ci.cmd │ │ └── wat_co.cmd │ ├── dos386 │ │ └── makefile │ ├── dosi86 │ │ └── makefile │ ├── files.dat │ ├── inifile.cpp │ ├── inifile.hpp │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── master.mif │ ├── mkssi │ │ └── mkssi.cpp │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── ocycle │ │ └── objcycle.cpp │ ├── os2386 │ │ └── makefile │ ├── qnxi86 │ │ └── makefile │ ├── rcsapi.h │ ├── rcscli.h │ ├── rcsdll.cpp │ ├── rcsdll.hpp │ ├── test │ │ ├── makefile │ │ ├── test.c │ │ ├── test.h │ │ └── test.rc │ ├── version.rc │ └── wini86 │ │ └── makefile ├── re2c │ ├── boot.ctl │ ├── bootmake │ ├── cpp │ │ ├── actions.cpp │ │ ├── code.cpp │ │ ├── dfa.cpp │ │ ├── main.cpp │ │ ├── parser.cpp │ │ ├── scanner.cpp │ │ ├── substr.cpp │ │ └── translat.cpp │ ├── dos386 │ │ └── makefile │ ├── h │ │ ├── basics.h │ │ ├── dfa.h │ │ ├── globals.h │ │ ├── ins.h │ │ ├── memchkst.h │ │ ├── parser.h │ │ ├── re.h │ │ ├── scanner.h │ │ ├── substr.h │ │ ├── token.h │ │ └── ytab.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386 │ │ └── makefile │ └── prereq.ctl ├── redist │ ├── dos32a │ │ ├── dos32a.exe │ │ ├── license.d32 │ │ ├── readme.d32 │ │ ├── sb.exe │ │ ├── sc.exe │ │ ├── sd.exe │ │ ├── ss.exe │ │ ├── stub32a.exe │ │ ├── stub32c.exe │ │ └── sver.exe │ ├── dos4gw │ │ ├── dos4gw.doc │ │ ├── dos4gw.exe │ │ ├── pminfo.exe │ │ ├── rminfo.exe │ │ ├── rsi.trp │ │ ├── rsihelp.exp │ │ └── rsihelp.sym │ ├── files.dat │ ├── lang.ctl │ └── pmodew │ │ ├── pmodew.doc │ │ ├── pmodew.exe │ │ ├── pmodew.faq │ │ ├── pmwbind.exe │ │ ├── pmwlite.exe │ │ ├── pmwsetup.exe │ │ └── pmwver.com ├── rtdll │ ├── brfunc.lst │ ├── dllbase.mif │ ├── dllname.mif │ ├── files.dat │ ├── lang.ctl │ ├── master.mif │ ├── proclbc.awk │ └── wrtlib │ │ ├── os2.386 │ │ ├── mf_r │ │ │ └── makefile │ │ ├── mf_s │ │ │ └── makefile │ │ └── objs.mif │ │ ├── os2.387 │ │ ├── mf_r │ │ │ └── makefile │ │ ├── mf_s │ │ │ └── makefile │ │ └── objs.mif │ │ ├── winnt.386 │ │ ├── mf_r │ │ │ └── makefile │ │ ├── mf_s │ │ │ └── makefile │ │ ├── objs.mif │ │ └── verinfo.rc │ │ └── winnt.387 │ │ ├── mf_r │ │ └── makefile │ │ ├── mf_s │ │ └── makefile │ │ ├── objs.mif │ │ └── verinfo.rc ├── sdk │ ├── ddespy │ │ ├── appmanif.xml │ │ ├── cbfilt.h │ │ ├── conv.bmp │ │ ├── convaka.bmp │ │ ├── dde.c │ │ ├── ddebox.c │ │ ├── ddecfg.c │ │ ├── ddeflter.c │ │ ├── ddeglob.c │ │ ├── ddemisc.c │ │ ├── ddemsg.c │ │ ├── ddeproc.c │ │ ├── ddespy.ico │ │ ├── ddespy.msg │ │ ├── ddetool.c │ │ ├── ddetrack.c │ │ ├── erase.bmp │ │ ├── exever.rc │ │ ├── hwndaka.bmp │ │ ├── lang.ctl │ │ ├── link.bmp │ │ ├── log.bmp │ │ ├── mark.bmp │ │ ├── master.mif │ │ ├── menu.rc │ │ ├── msgfilt.h │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── res │ │ │ ├── cbfilt.dlg │ │ │ ├── kanji │ │ │ │ ├── cbfilt.dlg │ │ │ │ └── msgfilt.dlg │ │ │ └── msgfilt.dlg │ │ ├── server.bmp │ │ ├── string.bmp │ │ ├── taskaka.bmp │ │ ├── wddespy.h │ │ ├── wddespy.rc │ │ └── wini86 │ │ │ └── makefile │ ├── drwat │ │ ├── chic │ │ │ ├── makefile │ │ │ └── reg.c │ │ ├── common │ │ │ ├── dipload.dlg │ │ │ ├── dipload.h │ │ │ ├── disasm.c │ │ │ ├── drwatcom.ico │ │ │ ├── err.ico │ │ │ ├── intdlg.dlg │ │ │ ├── intdlg.h │ │ │ ├── lddips.c │ │ │ ├── listbox.c │ │ │ ├── listbox.h │ │ │ ├── lognote.c │ │ │ ├── notelog.dlg │ │ │ ├── notelog.h │ │ │ ├── rvalue.h │ │ │ ├── segmap.h │ │ │ ├── stat.c │ │ │ ├── stat.dlg │ │ │ └── stat.h │ │ ├── faults │ │ │ ├── master.mif │ │ │ ├── nt386 │ │ │ │ └── makefile │ │ │ ├── src │ │ │ │ ├── div0.c │ │ │ │ ├── gp.c │ │ │ │ ├── invins.c │ │ │ │ ├── msg.c │ │ │ │ └── stack.c │ │ │ └── wini86 │ │ │ │ └── makefile │ │ ├── lang.ctl │ │ ├── mif │ │ │ └── master.mif │ │ ├── nt │ │ │ ├── appmanif.xml │ │ │ ├── autoget.c │ │ │ ├── bitman.c │ │ │ ├── bitman.h │ │ │ ├── dipcli.c │ │ │ ├── disasm.c │ │ │ ├── drnt.rc │ │ │ ├── drproc.c │ │ │ ├── drwatcom.c │ │ │ ├── drwatcom.h │ │ │ ├── drwatcom.msg │ │ │ ├── end.dlg │ │ │ ├── end.h │ │ │ ├── exever.rc │ │ │ ├── fault.c │ │ │ ├── global.c │ │ │ ├── handler.c │ │ │ ├── log.c │ │ │ ├── log.dlg │ │ │ ├── log.h │ │ │ ├── madrtn.c │ │ │ ├── madrtn.h │ │ │ ├── madsys.c │ │ │ ├── madsys.h │ │ │ ├── memdmp.dlg │ │ │ ├── memdmp.h │ │ │ ├── memory.c │ │ │ ├── memory.dlg │ │ │ ├── memory.h │ │ │ ├── memview.c │ │ │ ├── memwndcd.c │ │ │ ├── menu.h │ │ │ ├── menu.rc │ │ │ ├── nt386 │ │ │ │ └── makefile │ │ │ ├── ntaxp │ │ │ │ └── makefile │ │ │ ├── param.c │ │ │ ├── pefile.c │ │ │ ├── priority.dlg │ │ │ ├── priority.h │ │ │ ├── procctl.c │ │ │ ├── procctl.dlg │ │ │ ├── procctl.h │ │ │ ├── proclist.c │ │ │ ├── profile.c │ │ │ ├── reg.c │ │ │ ├── reg.h │ │ │ ├── reg95.c │ │ │ ├── regcmbo.dlg │ │ │ ├── regcmbo.h │ │ │ ├── regcrt.c │ │ │ ├── regcrt.h │ │ │ ├── regedit.dlg │ │ │ ├── regedit.h │ │ │ ├── reglist.c │ │ │ ├── reglist.h │ │ │ ├── regstr.c │ │ │ ├── regstr.h │ │ │ ├── retcode.dlg │ │ │ ├── retcode.h │ │ │ ├── stat.c │ │ │ ├── stat.dlg │ │ │ ├── stat.h │ │ │ ├── strcnv.c │ │ │ ├── strcnv.h │ │ │ ├── sym.c │ │ │ ├── thrdctl.c │ │ │ ├── thrdctl.dlg │ │ │ ├── thrdctl.h │ │ │ └── win95 │ │ │ │ └── makefile │ │ └── win │ │ │ ├── const.h │ │ │ ├── dbgopt.dlg │ │ │ ├── dbgopt.h │ │ │ ├── debug.c │ │ │ ├── disasm.c │ │ │ ├── dmptask.dlg │ │ │ ├── dmptask.h │ │ │ ├── drwatcom.c │ │ │ ├── drwatcom.h │ │ │ ├── drwatcom.msg │ │ │ ├── drwatcom.rc │ │ │ ├── dump.c │ │ │ ├── dump.h │ │ │ ├── fault.c │ │ │ ├── globals.c │ │ │ ├── log.c │ │ │ ├── log.dlg │ │ │ ├── log.h │ │ │ ├── menu.rc │ │ │ ├── notify.c │ │ │ ├── pmdbg.h │ │ │ ├── profile.c │ │ │ ├── read.me │ │ │ ├── segmap.dlg │ │ │ ├── stack.c │ │ │ ├── stackt.dlg │ │ │ ├── stackt.h │ │ │ ├── stat.c │ │ │ ├── stat.dlg │ │ │ ├── stat.h │ │ │ ├── sym.c │ │ │ ├── taskctl.dlg │ │ │ ├── taskctl.h │ │ │ ├── win32app.c │ │ │ ├── wini86 │ │ │ └── makefile │ │ │ └── winproc.c │ ├── files.dat │ ├── heapwalk │ │ ├── add.dlg │ │ ├── add.h │ │ ├── alloc.dlg │ │ ├── alloc.h │ │ ├── code.dlg │ │ ├── code.h │ │ ├── config.dlg │ │ ├── config.h │ │ ├── freen.dlg │ │ ├── freen.h │ │ ├── heapinfo.dlg │ │ ├── heapinfo.h │ │ ├── heapwalk.c │ │ ├── heapwalk.h │ │ ├── heapwalk.msg │ │ ├── heapwlk.dlg │ │ ├── heapwlk.h │ │ ├── hwalloc.c │ │ ├── hwbiglb.c │ │ ├── hwbiglb.h │ │ ├── hwbox.c │ │ ├── hwconfig.c │ │ ├── hwdisp.c │ │ ├── hwglob.c │ │ ├── hwinfo.c │ │ ├── hwldstr.c │ │ ├── hwlist.c │ │ ├── hwlocal.c │ │ ├── hwlsort.c │ │ ├── hwmonit.c │ │ ├── hwobjec.c │ │ ├── hwproc.c │ │ ├── hwsave.c │ │ ├── hwsort.c │ │ ├── hwtable.c │ │ ├── hwutil.c │ │ ├── lang.ctl │ │ ├── lclinfo.dlg │ │ ├── lclinfo.h │ │ ├── master.mif │ │ ├── memman.dlg │ │ ├── memman.h │ │ ├── menu.dlg │ │ ├── menu.h │ │ ├── menu.rc │ │ ├── wheapwlk.ico │ │ ├── wheapwlk.rc │ │ └── wini86 │ │ │ └── makefile │ ├── imgedit │ │ ├── c │ │ │ ├── bits.c │ │ │ ├── bkcolor.c │ │ │ ├── chgsize.c │ │ │ ├── clip.c │ │ │ ├── closeall.c │ │ │ ├── clrcntls.c │ │ │ ├── colors.c │ │ │ ├── curclr.c │ │ │ ├── drawproc.c │ │ │ ├── errors.c │ │ │ ├── fill.c │ │ │ ├── freehand.c │ │ │ ├── funcbar.c │ │ │ ├── getdata.c │ │ │ ├── hinttext.c │ │ │ ├── icon.c │ │ │ ├── iconinfo.c │ │ │ ├── iebmpdat.c │ │ │ ├── ieclrpal.c │ │ │ ├── iectl3d.c │ │ │ ├── iedde.c │ │ │ ├── iedraw.c │ │ │ ├── iefonts.c │ │ │ ├── ieglob.c │ │ │ ├── ieicodat.c │ │ │ ├── iemem.c │ │ │ ├── ienew.c │ │ │ ├── ieopen.c │ │ │ ├── ieproc.c │ │ │ ├── ieprofil.c │ │ │ ├── iesave.c │ │ │ ├── iestatus.c │ │ │ ├── ietoolbr.c │ │ │ ├── ieutil.c │ │ │ ├── ieviewin.c │ │ │ ├── imgdata.c │ │ │ ├── imgedit.c │ │ │ ├── modclrs.c │ │ │ ├── pickbmp.c │ │ │ ├── settings.c │ │ │ ├── snap.c │ │ │ ├── title.c │ │ │ ├── trnsform.c │ │ │ ├── undo.c │ │ │ ├── wincreat.c │ │ │ ├── winutils.c │ │ │ ├── wpi_mem.c │ │ │ └── xorand.c │ │ ├── exever.rc │ │ ├── h │ │ │ ├── bits.h │ │ │ ├── colors.h │ │ │ ├── dialogs.h │ │ │ ├── drawproc.h │ │ │ ├── errors.h │ │ │ ├── fill.h │ │ │ ├── funcbar.h │ │ │ ├── hinttext.h │ │ │ ├── icon.h │ │ │ ├── iconinfo.h │ │ │ ├── iebmpdat.h │ │ │ ├── ieclrpal.h │ │ │ ├── iedde.h │ │ │ ├── iedraw.h │ │ │ ├── iemem.h │ │ │ ├── ieprofil.h │ │ │ ├── ietoolbr.h │ │ │ ├── img_os2.h │ │ │ ├── img_win.h │ │ │ ├── img_wpi.h │ │ │ ├── imgedit.h │ │ │ ├── macros.h │ │ │ ├── menuids.h │ │ │ ├── settings.h │ │ │ ├── title.h │ │ │ ├── trnsform.h │ │ │ ├── undo.h │ │ │ └── wimgedit.msg │ │ ├── lang.ctl │ │ ├── manual │ │ │ ├── about.gml │ │ │ ├── basic.gml │ │ │ ├── chgsize.ps │ │ │ ├── clredit.ps │ │ │ ├── clrpal.ps │ │ │ ├── colours.gml │ │ │ ├── edit.gml │ │ │ ├── file.gml │ │ │ ├── funcbar.ps │ │ │ ├── iestrt1.ps │ │ │ ├── iestrt2.ps │ │ │ ├── imged.gml │ │ │ ├── imgstrt1.ps │ │ │ ├── imgstrt2.ps │ │ │ ├── intro.gml │ │ │ ├── makefile │ │ │ ├── open.ps │ │ │ ├── options.ps │ │ │ ├── outline.txt │ │ │ ├── save.ps │ │ │ ├── selbmp.ps │ │ │ ├── selimg.ps │ │ │ ├── setscrn.ps │ │ │ ├── tools.gml │ │ │ └── toolwnd.ps │ │ ├── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── objos2 │ │ │ ├── c │ │ │ │ ├── getdata.c │ │ │ │ ├── iefonts.c │ │ │ │ ├── ieopen.c │ │ │ │ ├── iesave.c │ │ │ │ ├── imgedit.c │ │ │ │ ├── palette.c │ │ │ │ ├── pmcreate.c │ │ │ │ ├── pmicon.c │ │ │ │ ├── pmutils.c │ │ │ │ └── wbitmap.c │ │ │ ├── h │ │ │ │ ├── palette.h │ │ │ │ ├── pmicon.h │ │ │ │ └── wbitmap.h │ │ │ ├── makefile │ │ │ └── res │ │ │ │ ├── make.cmd │ │ │ │ ├── selcolor.dlg │ │ │ │ ├── selimg.dlg │ │ │ │ ├── settings.dlg │ │ │ │ └── wimgedit.rc │ │ ├── res │ │ │ ├── app_pm.ico │ │ │ ├── appmanif.xml │ │ │ ├── bitmap.ico │ │ │ ├── brush.bmp │ │ │ ├── brushd.bmp │ │ │ ├── button.bmp │ │ │ ├── circlef.bmp │ │ │ ├── circlefd.bmp │ │ │ ├── circleo.bmp │ │ │ ├── circleod.bmp │ │ │ ├── clprect.bmp │ │ │ ├── clprectd.bmp │ │ │ ├── crosshrs.cur │ │ │ ├── crosshrs.ptr │ │ │ ├── cursor.ico │ │ │ ├── down.bmp │ │ │ ├── fill.bmp │ │ │ ├── fill.cur │ │ │ ├── fill.ptr │ │ │ ├── filld.bmp │ │ │ ├── fliph.bmp │ │ │ ├── fliphd.bmp │ │ │ ├── flipv.bmp │ │ │ ├── flipvd.bmp │ │ │ ├── grid.bmp │ │ │ ├── gridd.bmp │ │ │ ├── hand.cur │ │ │ ├── hand.ptr │ │ │ ├── hotspot.bmp │ │ │ ├── hotspot.cur │ │ │ ├── hotspot.ptr │ │ │ ├── hotspotd.bmp │ │ │ ├── icon.ico │ │ │ ├── left.bmp │ │ │ ├── line.bmp │ │ │ ├── lined.bmp │ │ │ ├── maxmize.bmp │ │ │ ├── maxmized.bmp │ │ │ ├── paintb.cur │ │ │ ├── paintb.ptr │ │ │ ├── pasteptr.cur │ │ │ ├── pasteptr.ptr │ │ │ ├── pencil.bmp │ │ │ ├── pencil.cur │ │ │ ├── pencil.ptr │ │ │ ├── pencild.bmp │ │ │ ├── rectf.bmp │ │ │ ├── rectfd.bmp │ │ │ ├── recto.bmp │ │ │ ├── rectod.bmp │ │ │ ├── right.bmp │ │ │ ├── rotcc.bmp │ │ │ ├── rotccd.bmp │ │ │ ├── rotcl.bmp │ │ │ ├── rotcld.bmp │ │ │ ├── selcolor.dlg │ │ │ ├── selimg.dlg │ │ │ ├── settings.dlg │ │ │ ├── snap.bmp │ │ │ ├── title.dlg │ │ │ ├── up.bmp │ │ │ ├── wimgedit.bmp │ │ │ ├── wimgedit.ico │ │ │ ├── wimgedit.men │ │ │ └── wimgedit.rc │ │ └── wini86 │ │ │ └── makefile │ ├── lang.ctl │ ├── misc │ │ ├── clear.bmp │ │ ├── closebmp.bmp │ │ ├── copy.bmp │ │ ├── ctl3d.dll │ │ ├── ctl3d.h │ │ ├── cut.bmp │ │ ├── makemsg.awk │ │ ├── msgtoh.awk │ │ ├── new.bmp │ │ ├── open.bmp │ │ ├── paste.bmp │ │ ├── redo.bmp │ │ ├── save.bmp │ │ └── undo.bmp │ ├── rc │ │ ├── boot.ctl │ │ ├── exedmp │ │ │ ├── c │ │ │ │ ├── format.c │ │ │ │ ├── main.c │ │ │ │ ├── param.c │ │ │ │ └── read.c │ │ │ ├── h │ │ │ │ ├── common.h │ │ │ │ ├── format.h │ │ │ │ ├── main.h │ │ │ │ ├── param.h │ │ │ │ ├── read.h │ │ │ │ ├── strings.h │ │ │ │ └── strings2.h │ │ │ ├── master.mif │ │ │ ├── nt386 │ │ │ │ └── makefile │ │ │ └── os2386 │ │ │ │ └── makefile │ │ ├── lang.ctl │ │ ├── mkcdpg │ │ │ ├── master.mif │ │ │ ├── mkcdpg.c │ │ │ ├── nt386 │ │ │ │ └── makefile │ │ │ └── ntaxp │ │ │ │ └── makefile │ │ ├── prereq.ctl │ │ ├── rc │ │ │ ├── 1250.uni │ │ │ ├── 1251.uni │ │ │ ├── 1252.uni │ │ │ ├── 936.uni │ │ │ ├── 949.uni │ │ │ ├── 950.uni │ │ │ ├── bootmake │ │ │ ├── c │ │ │ │ ├── autodep.c │ │ │ │ ├── bootstub.c │ │ │ │ ├── dbtable.c │ │ │ │ ├── errors.c │ │ │ │ ├── exelxobj.c │ │ │ │ ├── exeobj.c │ │ │ │ ├── exeres.c │ │ │ │ ├── exeres2.c │ │ │ │ ├── exereslx.c │ │ │ │ ├── exerespe.c │ │ │ │ ├── exeseg.c │ │ │ │ ├── exeutil.c │ │ │ │ ├── global.c │ │ │ │ ├── ideentry.c │ │ │ │ ├── incdirs.c │ │ │ │ ├── keyword.c │ │ │ │ ├── keyword2.c │ │ │ │ ├── layer0.c │ │ │ │ ├── leadbyte.c │ │ │ │ ├── libmain.c │ │ │ │ ├── maindrv.c │ │ │ │ ├── param.c │ │ │ │ ├── pass2.c │ │ │ │ ├── ppalloc.c │ │ │ │ ├── rc.c │ │ │ │ ├── rcalloc0.c │ │ │ │ ├── rcalloc1.c │ │ │ │ ├── rcio.c │ │ │ │ ├── rcldstr.c │ │ │ │ ├── rcmem.c │ │ │ │ ├── rcspawn.c │ │ │ │ ├── rcstr.c │ │ │ │ ├── scan.c │ │ │ │ ├── scan2.c │ │ │ │ ├── sem2accl.c │ │ │ │ ├── sem2diag.c │ │ │ │ ├── sem2help.c │ │ │ │ ├── sem2menu.c │ │ │ │ ├── sem2sngl.c │ │ │ │ ├── sem2str.c │ │ │ │ ├── semaccel.c │ │ │ │ ├── semantc2.c │ │ │ │ ├── semantic.c │ │ │ │ ├── semdiag.c │ │ │ │ ├── semmenu.c │ │ │ │ ├── semraw.c │ │ │ │ ├── semresfl.c │ │ │ │ ├── semsingl.c │ │ │ │ ├── semstr.c │ │ │ │ ├── semtbar.c │ │ │ │ ├── semutil.c │ │ │ │ ├── semver.c │ │ │ │ ├── sharedio.c │ │ │ │ ├── tmpctl.c │ │ │ │ └── wrstubs.c │ │ │ ├── dos386 │ │ │ │ └── makefile │ │ │ ├── exever.rc │ │ │ ├── h │ │ │ │ ├── dbtable.h │ │ │ │ ├── depend.h │ │ │ │ ├── errors.h │ │ │ │ ├── errprt.h │ │ │ │ ├── exelxobj.h │ │ │ │ ├── exeobj.h │ │ │ │ ├── exeres.h │ │ │ │ ├── exereslx.h │ │ │ │ ├── exerespe.h │ │ │ │ ├── exeseg.h │ │ │ │ ├── exeutil.h │ │ │ │ ├── global.h │ │ │ │ ├── iortns.h │ │ │ │ ├── keyword.h │ │ │ │ ├── keyword2.h │ │ │ │ ├── leadbyte.h │ │ │ │ ├── os2res.h │ │ │ │ ├── param.h │ │ │ │ ├── pass2.h │ │ │ │ ├── rc.msg │ │ │ │ ├── rcalloc0.h │ │ │ │ ├── rcalloc1.h │ │ │ │ ├── rcio.h │ │ │ │ ├── rclayer0.h │ │ │ │ ├── rcldstr.h │ │ │ │ ├── rcmem.h │ │ │ │ ├── rcspawn.h │ │ │ │ ├── rcstr.h │ │ │ │ ├── rctypes.h │ │ │ │ ├── scan.h │ │ │ │ ├── scan2.h │ │ │ │ ├── semaccel.h │ │ │ │ ├── semantic.h │ │ │ │ ├── semdiag.h │ │ │ │ ├── semhelp.h │ │ │ │ ├── semmenu.h │ │ │ │ ├── semraw.h │ │ │ │ ├── semresfl.h │ │ │ │ ├── semsingl.h │ │ │ │ ├── semstr.h │ │ │ │ ├── semtbar.h │ │ │ │ ├── semutil.h │ │ │ │ ├── semver.h │ │ │ │ ├── sharedio.h │ │ │ │ ├── tmpctl.h │ │ │ │ ├── yydriver.h │ │ │ │ └── yydrivr2.h │ │ │ ├── hash │ │ │ │ ├── rc.key │ │ │ │ ├── rcos2.key │ │ │ │ └── read.me │ │ │ ├── kanji.uni │ │ │ ├── linux386 │ │ │ │ └── makefile │ │ │ ├── linuxmps │ │ │ │ └── makefile │ │ │ ├── local.dbg │ │ │ ├── mif │ │ │ │ └── master.mif │ │ │ ├── nt386.dll │ │ │ │ └── makefile │ │ │ ├── nt386 │ │ │ │ └── makefile │ │ │ ├── nt386rt.dll │ │ │ │ └── makefile │ │ │ ├── ntaxp.dll │ │ │ │ └── makefile │ │ │ ├── ntaxp │ │ │ │ └── makefile │ │ │ ├── ntaxprt.dll │ │ │ │ └── makefile │ │ │ ├── os2386.dll │ │ │ │ └── makefile │ │ │ ├── os2386 │ │ │ │ └── makefile │ │ │ ├── osi386 │ │ │ │ └── makefile │ │ │ ├── rc.rc │ │ │ ├── regress │ │ │ │ └── os2 │ │ │ │ │ ├── accel.ico │ │ │ │ │ ├── def.rc │ │ │ │ │ ├── def.rez │ │ │ │ │ ├── help.h │ │ │ │ │ ├── help.rc │ │ │ │ │ ├── help.rez │ │ │ │ │ ├── makefile │ │ │ │ │ ├── rcdata.rc │ │ │ │ │ ├── rcdata.rez │ │ │ │ │ ├── restyp.rc │ │ │ │ │ ├── restyp.rez │ │ │ │ │ ├── t1.rc │ │ │ │ │ ├── t1.rez │ │ │ │ │ ├── t2.rc │ │ │ │ │ ├── t2.rez │ │ │ │ │ ├── t3.h │ │ │ │ │ ├── t3.rc │ │ │ │ │ ├── t3.rez │ │ │ │ │ ├── test.bmp │ │ │ │ │ ├── test.dlg │ │ │ │ │ ├── test.h │ │ │ │ │ ├── test.ico │ │ │ │ │ ├── test.rc │ │ │ │ │ ├── test.rez │ │ │ │ │ ├── test1.bmp │ │ │ │ │ ├── test1.ico │ │ │ │ │ ├── test2.ico │ │ │ │ │ └── test_dlg.h │ │ │ ├── resmagic │ │ │ ├── todo.txt │ │ │ ├── unixbld │ │ │ ├── version.rc │ │ │ └── y │ │ │ │ ├── rc.y │ │ │ │ ├── rcos2.y │ │ │ │ ├── yydriver.c │ │ │ │ └── yydrivr2.c │ │ ├── res2c │ │ │ ├── loadchar.c │ │ │ ├── loadchar.h │ │ │ ├── loadtype.c │ │ │ ├── loadtype.h │ │ │ ├── master.mif │ │ │ ├── os2386 │ │ │ │ └── makefile │ │ │ └── resdump.c │ │ ├── res2res │ │ │ ├── c │ │ │ │ ├── bincpy.c │ │ │ │ ├── convert.c │ │ │ │ ├── layer0.c │ │ │ │ ├── m2wres.c │ │ │ │ ├── param.c │ │ │ │ ├── res2res.c │ │ │ │ └── w2mres.c │ │ │ ├── h │ │ │ │ ├── bincpy.h │ │ │ │ ├── convert.h │ │ │ │ ├── m2wres.h │ │ │ │ ├── param.h │ │ │ │ ├── types.h │ │ │ │ └── w2mres.h │ │ │ ├── master.mif │ │ │ ├── nt386 │ │ │ │ └── makefile │ │ │ └── os2386 │ │ │ │ └── makefile │ │ ├── rescmp │ │ │ ├── c │ │ │ │ ├── bincmp.c │ │ │ │ ├── cmpcont.c │ │ │ │ ├── cmpfiles.c │ │ │ │ ├── cmpres.c │ │ │ │ ├── global.c │ │ │ │ ├── layer0.c │ │ │ │ ├── param.c │ │ │ │ └── rescmp.c │ │ │ ├── h │ │ │ │ ├── bincmp.h │ │ │ │ ├── cmpcont.h │ │ │ │ ├── cmpfiles.h │ │ │ │ ├── cmpres.h │ │ │ │ ├── global.h │ │ │ │ ├── param.h │ │ │ │ └── types.h │ │ │ └── o │ │ │ │ └── makefile │ │ ├── restest │ │ │ ├── accel.c │ │ │ ├── bitmap.c │ │ │ ├── cursor.c │ │ │ ├── data.c │ │ │ ├── dialog.c │ │ │ ├── getnum.dlg │ │ │ ├── getnum.h │ │ │ ├── gettype.dlg │ │ │ ├── gettype.h │ │ │ ├── icon.c │ │ │ ├── master.mif │ │ │ ├── menu.c │ │ │ ├── msgtbl.c │ │ │ ├── nt386 │ │ │ │ └── makefile │ │ │ ├── res.h │ │ │ ├── resname.dlg │ │ │ ├── resname.h │ │ │ ├── resproc.c │ │ │ ├── restest.c │ │ │ ├── restest.h │ │ │ ├── restest.rc │ │ │ ├── string.c │ │ │ ├── test.bmp │ │ │ ├── test.cur │ │ │ ├── test.ico │ │ │ ├── test.rc │ │ │ ├── verinfo.c │ │ │ ├── verinfo.dlg │ │ │ └── verinfo.h │ │ ├── wres │ │ │ ├── bootmake │ │ │ ├── c │ │ │ │ ├── layer0.c │ │ │ │ ├── loadfind.c │ │ │ │ ├── loadres.c │ │ │ │ ├── loadstr.c │ │ │ │ ├── mem2.x │ │ │ │ ├── mropnewf.c │ │ │ │ ├── mrrdrh.c │ │ │ │ ├── opcl.x │ │ │ │ ├── ralliae.c │ │ │ │ ├── rclosef.c │ │ │ │ ├── rdlli.c │ │ │ │ ├── rduint16.c │ │ │ │ ├── rduint32.c │ │ │ │ ├── rduint8.c │ │ │ │ ├── read.x │ │ │ │ ├── resaccel.c │ │ │ │ ├── resbitmp.c │ │ │ │ ├── resdiag.c │ │ │ │ ├── resfont.c │ │ │ │ ├── resiccu.c │ │ │ │ ├── resmenu.c │ │ │ │ ├── resnamor.c │ │ │ │ ├── resraw.c │ │ │ │ ├── resseek.c │ │ │ │ ├── resstr.c │ │ │ │ ├── restbar.c │ │ │ │ ├── restell.c │ │ │ │ ├── resver.c │ │ │ │ ├── rillia.c │ │ │ │ ├── rillib.c │ │ │ │ ├── ropenfro.c │ │ │ │ ├── ropenfrw.c │ │ │ │ ├── rrdstr.c │ │ │ │ ├── rrlli.c │ │ │ │ ├── rrnamoor.c │ │ │ │ ├── util.x │ │ │ │ ├── varstr.c │ │ │ │ ├── wraddres.c │ │ │ │ ├── wrauto.c │ │ │ │ ├── wrchkwrf.c │ │ │ │ ├── wrdelrs.c │ │ │ │ ├── wrerror.c │ │ │ │ ├── wres.x │ │ │ │ ├── wresrtns.c │ │ │ │ ├── wrfilein.c │ │ │ │ ├── wrfindrs.c │ │ │ │ ├── wrfirres.c │ │ │ │ ├── wrfree.c │ │ │ │ ├── wrfreedi.c │ │ │ │ ├── wrgetli.c │ │ │ │ ├── wrgetri.c │ │ │ │ ├── wrgetti.c │ │ │ │ ├── wrhidcmp.c │ │ │ │ ├── wrhidexb.c │ │ │ │ ├── wrhidfno.c │ │ │ │ ├── wrhidfre.c │ │ │ │ ├── wrhidfrn.c │ │ │ │ ├── wrhidfrs.c │ │ │ │ ├── wridcmp.c │ │ │ │ ├── wridexby.c │ │ │ │ ├── wridfnoo.c │ │ │ │ ├── wridfree.c │ │ │ │ ├── wridfrnu.c │ │ │ │ ├── wridfrst.c │ │ │ │ ├── wridnacm.c │ │ │ │ ├── wridnfst.c │ │ │ │ ├── wridtnoo.c │ │ │ │ ├── wridtonu.c │ │ │ │ ├── wridtost.c │ │ │ │ ├── wrihidf.c │ │ │ │ ├── wriidfn.c │ │ │ │ ├── wrinitdi.c │ │ │ │ ├── wrisempt.c │ │ │ │ ├── wrislr.c │ │ │ │ ├── wriswrf.c │ │ │ │ ├── write.c │ │ │ │ ├── wrmergdi.c │ │ │ │ ├── wrnextrs.c │ │ │ │ ├── wropnewf.c │ │ │ │ ├── wrreaddi.c │ │ │ │ ├── wrrewrid.c │ │ │ │ ├── wrrfrr.c │ │ │ │ ├── wrrftr.c │ │ │ │ ├── wrrfwrid.c │ │ │ │ ├── wrrhr.c │ │ │ │ ├── wrrrr.c │ │ │ │ ├── wrrtr.c │ │ │ │ ├── wrrwrid.c │ │ │ │ ├── wrrwridn.c │ │ │ │ └── wrwritdi.c │ │ │ ├── dosi86 │ │ │ │ ├── mc │ │ │ │ │ └── makefile │ │ │ │ ├── mh │ │ │ │ │ └── makefile │ │ │ │ ├── ml │ │ │ │ │ └── makefile │ │ │ │ ├── mm │ │ │ │ │ └── makefile │ │ │ │ └── ms │ │ │ │ │ └── makefile │ │ │ ├── flat386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── h │ │ │ │ ├── filefmt.h │ │ │ │ ├── layer0.h │ │ │ │ ├── layer1.h │ │ │ │ ├── loadstr.h │ │ │ │ ├── mem2.h │ │ │ │ ├── mresfmt.h │ │ │ │ ├── opcl.h │ │ │ │ ├── read.h │ │ │ │ ├── resaccel.h │ │ │ │ ├── resbitmp.h │ │ │ │ ├── resdiag.h │ │ │ │ ├── reserr.h │ │ │ │ ├── resfmt.h │ │ │ │ ├── resfont.h │ │ │ │ ├── resiccu.h │ │ │ │ ├── resmenu.h │ │ │ │ ├── resnamor.h │ │ │ │ ├── resraw.h │ │ │ │ ├── resstr.h │ │ │ │ ├── restbar.h │ │ │ │ ├── resutil.h │ │ │ │ ├── resver.h │ │ │ │ ├── util.h │ │ │ │ ├── varstr.h │ │ │ │ ├── wres.h │ │ │ │ ├── wresall.h │ │ │ │ ├── wresrtns.h │ │ │ │ ├── wressetr.h │ │ │ │ ├── write.h │ │ │ │ └── wrmergdi.h │ │ │ ├── linux386 │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── linuxmps │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── linuxppc │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── master.mif │ │ │ ├── nt386.dll │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── nt386.gui │ │ │ │ ├── mf_r │ │ │ │ │ └── makefile │ │ │ │ └── mf_s │ │ │ │ │ └── makefile │ │ │ ├── ntaxp │ │ │ │ └── _s │ │ │ │ │ └── makefile │ │ │ ├── os2i86 │ │ │ │ └── ml │ │ │ │ │ └── makefile │ │ │ ├── prereq.ctl │ │ │ ├── qnx386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── read.me │ │ │ ├── small386 │ │ │ │ ├── ms_r │ │ │ │ │ └── makefile │ │ │ │ └── ms_s │ │ │ │ │ └── makefile │ │ │ ├── wini86 │ │ │ │ └── ml │ │ │ │ │ └── makefile │ │ │ └── wrobjs.mif │ │ └── wresdmp │ │ │ ├── c │ │ │ ├── dmpcont.c │ │ │ ├── dmpcurgr.c │ │ │ ├── dmpdiag.c │ │ │ ├── dmpfile.c │ │ │ ├── dmpicogr.c │ │ │ ├── dmpmenu.c │ │ │ ├── dmpstr.c │ │ │ ├── fatal.c │ │ │ ├── flag.c │ │ │ ├── global.c │ │ │ ├── layer0.c │ │ │ ├── param.c │ │ │ └── wresdmp.c │ │ │ ├── dos386 │ │ │ └── makefile │ │ │ ├── h │ │ │ ├── dmpcont.h │ │ │ ├── dmpcurgr.h │ │ │ ├── dmpdiag.h │ │ │ ├── dmpfile.h │ │ │ ├── dmpicogr.h │ │ │ ├── dmpmenu.h │ │ │ ├── dmpstr.h │ │ │ ├── fatal.h │ │ │ ├── flag.h │ │ │ ├── global.h │ │ │ ├── param.h │ │ │ └── types.h │ │ │ ├── master.mif │ │ │ ├── nt386 │ │ │ └── makefile │ │ │ └── os2386 │ │ │ └── makefile │ ├── spy │ │ ├── appmanif.xml │ │ ├── erase.bmp │ │ ├── exever.rc │ │ ├── lang.ctl │ │ ├── magnify.bmp │ │ ├── magno.bmp │ │ ├── mark.bmp │ │ ├── master.mif │ │ ├── msgs.dlg │ │ ├── msgs.h │ │ ├── msgsel.dlg │ │ ├── msgsel.h │ │ ├── notonoff.bmp │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── off.bmp │ │ ├── on.bmp │ │ ├── peek.bmp │ │ ├── peekmsg.dlg │ │ ├── peekmsg.h │ │ ├── peekwin.dlg │ │ ├── peekwin.h │ │ ├── selwin.dlg │ │ ├── selwin.h │ │ ├── showwin.bmp │ │ ├── spy.c │ │ ├── spy.h │ │ ├── spy.ico │ │ ├── spy.msg │ │ ├── spyarray.c │ │ ├── spyarray.h │ │ ├── spybox.c │ │ ├── spycfg.c │ │ ├── spydll.c │ │ ├── spydll.h │ │ ├── spyexmsg.h │ │ ├── spyfilt.c │ │ ├── spyglob.c │ │ ├── spylog.c │ │ ├── spymdlgs.c │ │ ├── spymenu.h │ │ ├── spymisc.c │ │ ├── spymsgs.c │ │ ├── spymsgs.dlg │ │ ├── spymsgs.h │ │ ├── spypick.c │ │ ├── spyproc.c │ │ ├── spysel.c │ │ ├── spytool.c │ │ ├── spyzord.c │ │ ├── stopmsg.bmp │ │ ├── watchmsg.bmp │ │ ├── wini86 │ │ │ └── makefile │ │ ├── winpick.dlg │ │ ├── winpick.h │ │ ├── winpick.ico │ │ └── wspy.rc │ ├── wde │ │ ├── c │ │ │ ├── wde_wres.c │ │ │ ├── wdealign.c │ │ │ ├── wdeclear.c │ │ │ ├── wdecsize.c │ │ │ ├── wdectl3d.c │ │ │ ├── wdectool.c │ │ │ ├── wdecurr.c │ │ │ ├── wdecursr.c │ │ │ ├── wdedde.c │ │ │ ├── wdedebug.c │ │ │ ├── wdedefin.c │ │ │ ├── wdedefsz.c │ │ │ ├── wdeedit.c │ │ │ ├── wdefani.c │ │ │ ├── wdefbase.c │ │ │ ├── wdefbutt.c │ │ │ ├── wdefcbox.c │ │ │ ├── wdefcntl.c │ │ │ ├── wdefdiag.c │ │ │ ├── wdefdlg.c │ │ │ ├── wdefedit.c │ │ │ ├── wdefhdr.c │ │ │ ├── wdefhtky.c │ │ │ ├── wdefinit.c │ │ │ ├── wdeflbox.c │ │ │ ├── wdeflvw.c │ │ │ ├── wdefmenu.c │ │ │ ├── wdefont.c │ │ │ ├── wdefordr.c │ │ │ ├── wdefprog.c │ │ │ ├── wdefsbar.c │ │ │ ├── wdefscrl.c │ │ │ ├── wdefstat.c │ │ │ ├── wdeftabc.c │ │ │ ├── wdeftrak.c │ │ │ ├── wdeftvw.c │ │ │ ├── wdefupdn.c │ │ │ ├── wdefutil.c │ │ │ ├── wdegeted.c │ │ │ ├── wdegetfn.c │ │ │ ├── wdegoto.c │ │ │ ├── wdehash.c │ │ │ ├── wdehints.c │ │ │ ├── wdei2mem.c │ │ │ ├── wdeinfo.c │ │ │ ├── wdeldres.c │ │ │ ├── wdelist.c │ │ │ ├── wdemain.c │ │ │ ├── wdemem.c │ │ │ ├── wdemsgbx.c │ │ │ ├── wdeopts.c │ │ │ ├── wdeppmem.c │ │ │ ├── wderes.c │ │ │ ├── wderesin.c │ │ │ ├── wderibbn.c │ │ │ ├── wdesdlg.c │ │ │ ├── wdesdup.c │ │ │ ├── wdeselft.c │ │ │ ├── wdesnap.c │ │ │ ├── wdestat.c │ │ │ ├── wdestken.c │ │ │ ├── wdestyle.c │ │ │ ├── wdesvdlg.c │ │ │ ├── wdesvobj.c │ │ │ ├── wdesvres.c │ │ │ ├── wdesym.c │ │ │ ├── wdetest.c │ │ │ ├── wdetfile.c │ │ │ ├── wdetmenu.c │ │ │ ├── wdetoolb.c │ │ │ ├── wdetxtsz.c │ │ │ ├── wdewait.c │ │ │ ├── wdezordr.c │ │ │ ├── windlg.c │ │ │ └── windlg32.c │ │ ├── exever.rc │ │ ├── h │ │ │ ├── anitool.bmp │ │ │ ├── anitoold.bmp │ │ │ ├── appmanif.xml │ │ │ ├── bcompatf.bmp │ │ │ ├── bcompatn.bmp │ │ │ ├── bcompatp.bmp │ │ │ ├── bor_901.bmp │ │ │ ├── bor_902.bmp │ │ │ ├── bor_903.bmp │ │ │ ├── bor_904.bmp │ │ │ ├── born_1.bmp │ │ │ ├── born_2.bmp │ │ │ ├── born_201.bmp │ │ │ ├── born_3.bmp │ │ │ ├── born_4.bmp │ │ │ ├── born_5.bmp │ │ │ ├── born_6.bmp │ │ │ ├── born_7.bmp │ │ │ ├── born_998.bmp │ │ │ ├── borp_1.bmp │ │ │ ├── borp_2.bmp │ │ │ ├── borp_201.bmp │ │ │ ├── borp_3.bmp │ │ │ ├── borp_4.bmp │ │ │ ├── borp_5.bmp │ │ │ ├── borp_6.bmp │ │ │ ├── borp_7.bmp │ │ │ ├── borp_998.bmp │ │ │ ├── bottom.bmp │ │ │ ├── cbtool.bmp │ │ │ ├── cbtoold.bmp │ │ │ ├── ccompatf.bmp │ │ │ ├── ccompatn.bmp │ │ │ ├── ccompatp.bmp │ │ │ ├── chekmode.bmp │ │ │ ├── chektldn.bmp │ │ │ ├── chektool.bmp │ │ │ ├── chktldn.bmp │ │ │ ├── chktool.bmp │ │ │ ├── combmode.bmp │ │ │ ├── combtldn.bmp │ │ │ ├── combtool.bmp │ │ │ ├── crt.cur │ │ │ ├── cst1mode.bmp │ │ │ ├── cst1tldn.bmp │ │ │ ├── cst1tool.bmp │ │ │ ├── cst2mode.bmp │ │ │ ├── cst2tldn.bmp │ │ │ ├── cst2tool.bmp │ │ │ ├── daisy.ico │ │ │ ├── defani.dlg │ │ │ ├── defcheck.dlg │ │ │ ├── defcombo.dlg │ │ │ ├── defdlg.dlg │ │ │ ├── defedit.dlg │ │ │ ├── defframe.dlg │ │ │ ├── defgbox.dlg │ │ │ ├── defhdr.dlg │ │ │ ├── defhkey.dlg │ │ │ ├── defhscrl.dlg │ │ │ ├── deficon.dlg │ │ │ ├── define.h │ │ │ ├── deflbox.dlg │ │ │ ├── deflview.dlg │ │ │ ├── defpbar.dlg │ │ │ ├── defpush.dlg │ │ │ ├── defradio.dlg │ │ │ ├── defsbar.dlg │ │ │ ├── defsbox.dlg │ │ │ ├── deftab.dlg │ │ │ ├── deftbar.dlg │ │ │ ├── deftext.dlg │ │ │ ├── deftview.dlg │ │ │ ├── defupdn.dlg │ │ │ ├── defvscrl.dlg │ │ │ ├── diagmode.bmp │ │ │ ├── diagtldn.bmp │ │ │ ├── diagtool.bmp │ │ │ ├── dlgfile.ico │ │ │ ├── dlgtool.bmp │ │ │ ├── dlgtoold.bmp │ │ │ ├── editmode.bmp │ │ │ ├── edittldn.bmp │ │ │ ├── edittool.bmp │ │ │ ├── etool.bmp │ │ │ ├── etoold.bmp │ │ │ ├── frammode.bmp │ │ │ ├── framtldn.bmp │ │ │ ├── framtool.bmp │ │ │ ├── frtool.bmp │ │ │ ├── frtoold.bmp │ │ │ ├── generic.dlg │ │ │ ├── groups.bmp │ │ │ ├── grpmode.bmp │ │ │ ├── grptldn.bmp │ │ │ ├── grptool.bmp │ │ │ ├── gtool.bmp │ │ │ ├── gtoold.bmp │ │ │ ├── hcenter.bmp │ │ │ ├── hdrtool.bmp │ │ │ ├── hdrtoold.bmp │ │ │ ├── hktool.bmp │ │ │ ├── hktoold.bmp │ │ │ ├── hscrmode.bmp │ │ │ ├── hscrtldn.bmp │ │ │ ├── hscrtool.bmp │ │ │ ├── hstool.bmp │ │ │ ├── hstoold.bmp │ │ │ ├── iconmode.bmp │ │ │ ├── icontlbk.bmp │ │ │ ├── icontool.bmp │ │ │ ├── info.dlg │ │ │ ├── info.h │ │ │ ├── left.bmp │ │ │ ├── listmode.bmp │ │ │ ├── listtldn.bmp │ │ │ ├── listtool.bmp │ │ │ ├── loadcust.dlg │ │ │ ├── loadcust.h │ │ │ ├── logo.bmp │ │ │ ├── logo2.bmp │ │ │ ├── logo3.bmp │ │ │ ├── logo4.bmp │ │ │ ├── ltool.bmp │ │ │ ├── ltoold.bmp │ │ │ ├── lvtool.bmp │ │ │ ├── lvtoold.bmp │ │ │ ├── opts.dlg │ │ │ ├── opts.h │ │ │ ├── order.bmp │ │ │ ├── orestext.ico │ │ │ ├── owde.ico │ │ │ ├── pgtool.bmp │ │ │ ├── pgtoold.bmp │ │ │ ├── pshtool.bmp │ │ │ ├── pshtoold.bmp │ │ │ ├── pushmode.bmp │ │ │ ├── pushtldn.bmp │ │ │ ├── pushtool.bmp │ │ │ ├── radmode.bmp │ │ │ ├── radtldn.bmp │ │ │ ├── radtool.bmp │ │ │ ├── rdtldn.bmp │ │ │ ├── rdtool.bmp │ │ │ ├── res.ico │ │ │ ├── right.bmp │ │ │ ├── sameh.bmp │ │ │ ├── samehw.bmp │ │ │ ├── samew.bmp │ │ │ ├── sboxmode.bmp │ │ │ ├── sboxtldn.bmp │ │ │ ├── sboxtool.bmp │ │ │ ├── sbtool.bmp │ │ │ ├── sbtoold.bmp │ │ │ ├── selcust.dlg │ │ │ ├── selcust.h │ │ │ ├── seldlg.dlg │ │ │ ├── seldlg.h │ │ │ ├── selmode.bmp │ │ │ ├── seltldn.bmp │ │ │ ├── seltool.bmp │ │ │ ├── splash.dlg │ │ │ ├── stikmode.bmp │ │ │ ├── stiktldn.bmp │ │ │ ├── stiktool.bmp │ │ │ ├── symbols.dlg │ │ │ ├── symbols.h │ │ │ ├── sztotxt.bmp │ │ │ ├── tabs.bmp │ │ │ ├── tabtool.bmp │ │ │ ├── tabtoold.bmp │ │ │ ├── tbtool.bmp │ │ │ ├── tbtoold.bmp │ │ │ ├── test.bmp │ │ │ ├── textmode.bmp │ │ │ ├── texttldn.bmp │ │ │ ├── texttool.bmp │ │ │ ├── toolbk.bmp │ │ │ ├── top.bmp │ │ │ ├── tvtool.bmp │ │ │ ├── tvtoold.bmp │ │ │ ├── udtool.bmp │ │ │ ├── udtoold.bmp │ │ │ ├── vcenter.bmp │ │ │ ├── vscrmode.bmp │ │ │ ├── vscrtldn.bmp │ │ │ ├── vscrtool.bmp │ │ │ ├── vstool.bmp │ │ │ ├── vstoold.bmp │ │ │ ├── wde.ico │ │ │ ├── wde.men │ │ │ ├── wde.msg │ │ │ ├── wde.rc │ │ │ ├── wde3.bmp │ │ │ ├── wde4.bmp │ │ │ ├── wde_rc.h │ │ │ ├── wde_wres.h │ │ │ ├── wdeactn.h │ │ │ ├── wdealign.h │ │ │ ├── wdecctl.h │ │ │ ├── wdeclear.h │ │ │ ├── wdecsize.h │ │ │ ├── wdectl3d.h │ │ │ ├── wdectool.h │ │ │ ├── wdecurr.h │ │ │ ├── wdecursr.h │ │ │ ├── wdedde.h │ │ │ ├── wdedebug.h │ │ │ ├── wdedefin.h │ │ │ ├── wdedefsz.h │ │ │ ├── wdeedit.h │ │ │ ├── wdefani.h │ │ │ ├── wdefbase.h │ │ │ ├── wdefbutt.h │ │ │ ├── wdefcbox.h │ │ │ ├── wdefcntl.h │ │ │ ├── wdefdiag.h │ │ │ ├── wdefdlg.h │ │ │ ├── wdefedit.h │ │ │ ├── wdefhdr.h │ │ │ ├── wdefhtky.h │ │ │ ├── wdefinit.h │ │ │ ├── wdeflbox.h │ │ │ ├── wdeflvw.h │ │ │ ├── wdefmenu.h │ │ │ ├── wdefont.h │ │ │ ├── wdefordr.h │ │ │ ├── wdefprog.h │ │ │ ├── wdefsbar.h │ │ │ ├── wdefscrl.h │ │ │ ├── wdefstat.h │ │ │ ├── wdeftabc.h │ │ │ ├── wdeftrak.h │ │ │ ├── wdeftvw.h │ │ │ ├── wdefupdn.h │ │ │ ├── wdefutil.h │ │ │ ├── wdegeted.h │ │ │ ├── wdegetfn.h │ │ │ ├── wdeglbl.h │ │ │ ├── wdegoto.h │ │ │ ├── wdehash.h │ │ │ ├── wdehints.h │ │ │ ├── wdei2mem.h │ │ │ ├── wdeinfo.h │ │ │ ├── wdeldres.h │ │ │ ├── wdelist.h │ │ │ ├── wdemain.h │ │ │ ├── wdemem.h │ │ │ ├── wdemsgbx.h │ │ │ ├── wdeobjid.h │ │ │ ├── wdeoinfo.h │ │ │ ├── wdeopts.h │ │ │ ├── wdereq.h │ │ │ ├── wderes.h │ │ │ ├── wderesin.h │ │ │ ├── wderesiz.h │ │ │ ├── wderibbn.h │ │ │ ├── wdesdlg.h │ │ │ ├── wdesdup.h │ │ │ ├── wdeselft.h │ │ │ ├── wdesnap.h │ │ │ ├── wdestat.h │ │ │ ├── wdestken.h │ │ │ ├── wdestyle.h │ │ │ ├── wdesvdlg.h │ │ │ ├── wdesvobj.h │ │ │ ├── wdesvres.h │ │ │ ├── wdesym.h │ │ │ ├── wdetest.h │ │ │ ├── wdetfile.h │ │ │ ├── wdetmenu.h │ │ │ ├── wdetoolb.h │ │ │ ├── wdetxtsz.h │ │ │ ├── wdewait.h │ │ │ ├── wdezordr.h │ │ │ ├── windlg.h │ │ │ └── windlg32.h │ │ ├── lang.ctl │ │ ├── mif │ │ │ └── master.mif │ │ ├── nt386 │ │ │ ├── c │ │ │ │ ├── wdecust.c │ │ │ │ └── wdefcust.c │ │ │ ├── h │ │ │ │ ├── wdecust.h │ │ │ │ └── wdefcust.h │ │ │ ├── makefile │ │ │ └── wde.dep │ │ ├── ntaxp │ │ │ ├── c │ │ │ │ ├── wdecust.c │ │ │ │ └── wdefcust.c │ │ │ ├── h │ │ │ │ ├── wdecust.h │ │ │ │ └── wdefcust.h │ │ │ ├── makefile │ │ │ └── wde.dep │ │ └── wini86 │ │ │ ├── c │ │ │ ├── wdecust.c │ │ │ └── wdefcust.c │ │ │ ├── h │ │ │ ├── wdecust.h │ │ │ └── wdefcust.h │ │ │ └── makefile │ ├── wr │ │ ├── c │ │ │ ├── rcerrprt.c │ │ │ ├── rcgetenv.c │ │ │ ├── test.c │ │ │ ├── wr_wres.c │ │ │ ├── wrbitmap.c │ │ │ ├── wrclean.c │ │ │ ├── wrctl3d.c │ │ │ ├── wrdata.c │ │ │ ├── wrdel.c │ │ │ ├── wrdmsg.c │ │ │ ├── wredit.c │ │ │ ├── wrfindt.c │ │ │ ├── wrhash.c │ │ │ ├── wricon.c │ │ │ ├── wridfile.c │ │ │ ├── wrimg.c │ │ │ ├── wrinfo.c │ │ │ ├── wrlist.c │ │ │ ├── wrmain.c │ │ │ ├── wrmem.c │ │ │ ├── wrmemf.c │ │ │ ├── wrmsg.c │ │ │ ├── wrnamoor.c │ │ │ ├── wrrcmem.c │ │ │ ├── wrrdres.c │ │ │ ├── wrrdw16.c │ │ │ ├── wrrdwnt.c │ │ │ ├── wrrnames.c │ │ │ ├── wrselft.c │ │ │ ├── wrselimg.c │ │ │ ├── wrstr.c │ │ │ ├── wrstrdup.c │ │ │ ├── wrsvexe.c │ │ │ ├── wrsvres.c │ │ │ ├── wrtmpfil.c │ │ │ ├── wrutil.c │ │ │ └── wrwresid.c │ │ ├── h │ │ │ ├── addsym.dlg │ │ │ ├── addsym.h │ │ │ ├── editsym.dlg │ │ │ ├── editsym.h │ │ │ ├── master.msg │ │ │ ├── memflags.dlg │ │ │ ├── memflags.h │ │ │ ├── selft.dlg │ │ │ ├── selft.h │ │ │ ├── selimage.dlg │ │ │ ├── selimage.h │ │ │ ├── wr.msg │ │ │ ├── wr.rc │ │ │ ├── wr_rc.h │ │ │ ├── wr_wres.h │ │ │ ├── wrbitmap.h │ │ │ ├── wrclean.h │ │ │ ├── wrclipbd.h │ │ │ ├── wrctl3d.h │ │ │ ├── wrdata.h │ │ │ ├── wrdatai.h │ │ │ ├── wrdel.h │ │ │ ├── wrdll.h │ │ │ ├── wrdmsg.h │ │ │ ├── wrdmsgi.h │ │ │ ├── wredit.h │ │ │ ├── wrfindt.h │ │ │ ├── wrfindti.h │ │ │ ├── wrglbl.h │ │ │ ├── wrhash.h │ │ │ ├── wricon.h │ │ │ ├── wridfile.h │ │ │ ├── wrimg.h │ │ │ ├── wrinfo.h │ │ │ ├── wrinfoi.h │ │ │ ├── wrlist.h │ │ │ ├── wrmain.h │ │ │ ├── wrmaini.h │ │ │ ├── wrmem.h │ │ │ ├── wrmemf.h │ │ │ ├── wrmemi.h │ │ │ ├── wrmsg.h │ │ │ ├── wrnamoor.h │ │ │ ├── wrrdres.h │ │ │ ├── wrrdw16.h │ │ │ ├── wrrdwnt.h │ │ │ ├── wrrnames.h │ │ │ ├── wrselft.h │ │ │ ├── wrselimg.h │ │ │ ├── wrstr.h │ │ │ ├── wrstrdup.h │ │ │ ├── wrsvexe.h │ │ │ ├── wrsvres.h │ │ │ ├── wrtmpfil.h │ │ │ ├── wrutil.h │ │ │ └── wrwresid.h │ │ ├── lang.ctl │ │ ├── mif │ │ │ └── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── version.rc │ │ └── wini86 │ │ │ └── makefile │ ├── wre │ │ ├── c │ │ │ ├── wre_wres.c │ │ │ ├── wreaccel.c │ │ │ ├── wreclip.c │ │ │ ├── wrectl3d.c │ │ │ ├── wredde.c │ │ │ ├── wredel.c │ │ │ ├── wredlg.c │ │ │ ├── wrefres.c │ │ │ ├── wreftype.c │ │ │ ├── wregcres.c │ │ │ ├── wregetfn.c │ │ │ ├── wrehints.c │ │ │ ├── wreimage.c │ │ │ ├── wreimg.c │ │ │ ├── wrelist.c │ │ │ ├── wremain.c │ │ │ ├── wremem.c │ │ │ ├── wrememf.c │ │ │ ├── wremenu.c │ │ │ ├── wremsg.c │ │ │ ├── wrenames.c │ │ │ ├── wrenew.c │ │ │ ├── wreopts.c │ │ │ ├── wreprop.c │ │ │ ├── wrerenam.c │ │ │ ├── wreres.c │ │ │ ├── wreresin.c │ │ │ ├── wreribbn.c │ │ │ ├── wreselft.c │ │ │ ├── wreseted.c │ │ │ ├── wrestat.c │ │ │ ├── wrestr.c │ │ │ ├── wrestrdp.c │ │ │ ├── wresvmlt.c │ │ │ ├── wresvobj.c │ │ │ ├── wresym.c │ │ │ ├── wretoolb.c │ │ │ └── wrewait.c │ │ ├── exever.rc │ │ ├── h │ │ │ ├── accel.bmp │ │ │ ├── acceld.bmp │ │ │ ├── appmanif.xml │ │ │ ├── bmp.bmp │ │ │ ├── bmpd.bmp │ │ │ ├── clip.bmp │ │ │ ├── cur.bmp │ │ │ ├── curd.bmp │ │ │ ├── del.dlg │ │ │ ├── del.h │ │ │ ├── dlg.bmp │ │ │ ├── dlgd.bmp │ │ │ ├── font.bmp │ │ │ ├── fontd.bmp │ │ │ ├── icon.bmp │ │ │ ├── icond.bmp │ │ │ ├── logo.bmp │ │ │ ├── logo4.bmp │ │ │ ├── menu.bmp │ │ │ ├── menud.bmp │ │ │ ├── orestext.ico │ │ │ ├── owre.ico │ │ │ ├── paste.dlg │ │ │ ├── paste.h │ │ │ ├── prop.dlg │ │ │ ├── prop.h │ │ │ ├── renam.dlg │ │ │ ├── renam.h │ │ │ ├── res.dlg │ │ │ ├── res.h │ │ │ ├── respal.bmp │ │ │ ├── restext.ico │ │ │ ├── splash.dlg │ │ │ ├── str.bmp │ │ │ ├── strd.bmp │ │ │ ├── user.bmp │ │ │ ├── userd.bmp │ │ │ ├── wre.ico │ │ │ ├── wre.men │ │ │ ├── wre.msg │ │ │ ├── wre.rc │ │ │ ├── wre_rc.h │ │ │ ├── wre_wres.h │ │ │ ├── wreaccel.h │ │ │ ├── wreclip.h │ │ │ ├── wrectl3d.h │ │ │ ├── wredde.h │ │ │ ├── wredel.h │ │ │ ├── wredlg.h │ │ │ ├── wrefres.h │ │ │ ├── wreftype.h │ │ │ ├── wregcres.h │ │ │ ├── wregetfn.h │ │ │ ├── wreglbl.h │ │ │ ├── wrehints.h │ │ │ ├── wreimage.h │ │ │ ├── wreimg.h │ │ │ ├── wrelist.h │ │ │ ├── wremain.h │ │ │ ├── wremem.h │ │ │ ├── wrememf.h │ │ │ ├── wremenu.h │ │ │ ├── wremsg.h │ │ │ ├── wrenames.h │ │ │ ├── wrenew.h │ │ │ ├── wreopts.h │ │ │ ├── wreprop.h │ │ │ ├── wrerenam.h │ │ │ ├── wreres.h │ │ │ ├── wreresin.h │ │ │ ├── wreribbn.h │ │ │ ├── wreselft.h │ │ │ ├── wreseted.h │ │ │ ├── wresrvr.h │ │ │ ├── wrestat.h │ │ │ ├── wrestr.h │ │ │ ├── wrestrdp.h │ │ │ ├── wresvmlt.h │ │ │ ├── wresvobj.h │ │ │ ├── wresym.h │ │ │ ├── wretoolb.h │ │ │ └── wrewait.h │ │ ├── lang.ctl │ │ ├── mif │ │ │ └── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ └── wini86 │ │ │ └── makefile │ ├── wresedit │ │ ├── c │ │ │ ├── wclip.c │ │ │ ├── wcopystr.c │ │ │ ├── wctl3d.c │ │ │ ├── weditsym.c │ │ │ ├── wgetfn.c │ │ │ ├── widn2str.c │ │ │ ├── winst.c │ │ │ ├── wisedit.c │ │ │ ├── wlist.c │ │ │ ├── wmem.c │ │ │ ├── wmemf.c │ │ │ ├── wmsg.c │ │ │ ├── wopts.c │ │ │ ├── wrename.c │ │ │ ├── wselft.c │ │ │ ├── wsetedit.c │ │ │ ├── wstrdup.c │ │ │ └── wwait.c │ │ ├── h │ │ │ ├── clip.bmp │ │ │ ├── rename.dlg │ │ │ ├── rename.h │ │ │ ├── w.msg │ │ │ ├── w.rc │ │ │ ├── w_rc.h │ │ │ ├── wclip.h │ │ │ ├── wcopystr.h │ │ │ ├── wctl3d.h │ │ │ ├── weditsym.h │ │ │ ├── wgetfn.h │ │ │ ├── wglbl.h │ │ │ ├── widn2str.h │ │ │ ├── winst.h │ │ │ ├── wisedit.h │ │ │ ├── wlist.h │ │ │ ├── wmem.h │ │ │ ├── wmemf.h │ │ │ ├── wmsg.h │ │ │ ├── wopts.h │ │ │ ├── wrename.h │ │ │ ├── wselft.h │ │ │ ├── wsetedit.h │ │ │ ├── wstrdup.h │ │ │ └── wwait.h │ │ ├── lang.ctl │ │ ├── mif │ │ │ └── master.mif │ │ ├── waccel │ │ │ ├── c │ │ │ │ ├── wacc.c │ │ │ │ ├── wacc2rc.c │ │ │ │ ├── wdel.c │ │ │ │ ├── wedit.c │ │ │ │ ├── whints.c │ │ │ │ ├── whndl.c │ │ │ │ ├── winfo.c │ │ │ │ ├── wkey.c │ │ │ │ ├── wmain.c │ │ │ │ ├── wnewitem.c │ │ │ │ ├── wribbon.c │ │ │ │ ├── wstat.c │ │ │ │ ├── wsvobj.c │ │ │ │ ├── wtoolbar.c │ │ │ │ └── wvk2str.c │ │ │ ├── h │ │ │ │ ├── accedit.dlg │ │ │ │ ├── accedit.h │ │ │ │ ├── acckey.dlg │ │ │ │ ├── delkey.bmp │ │ │ │ ├── inskey.bmp │ │ │ │ ├── inskey1.bmp │ │ │ │ ├── key.bmp │ │ │ │ ├── key1.bmp │ │ │ │ ├── key2.bmp │ │ │ │ ├── logo.bmp │ │ │ │ ├── old.ico │ │ │ │ ├── presskey.bmp │ │ │ │ ├── sys_rc.h │ │ │ │ ├── wacc.h │ │ │ │ ├── wacc.men │ │ │ │ ├── wacc.msg │ │ │ │ ├── wacc.rc │ │ │ │ ├── wacc2rc.h │ │ │ │ ├── waccel.h │ │ │ │ ├── waccel.ico │ │ │ │ ├── wdel.h │ │ │ │ ├── wedit.h │ │ │ │ ├── whints.h │ │ │ │ ├── whndl.h │ │ │ │ ├── winfo.h │ │ │ │ ├── wkey.h │ │ │ │ ├── wmain.h │ │ │ │ ├── wnewitem.h │ │ │ │ ├── wribbon.h │ │ │ │ ├── wstat.h │ │ │ │ ├── wsvobj.h │ │ │ │ ├── wtoolbar.h │ │ │ │ └── wvk2str.h │ │ │ ├── mif │ │ │ │ └── waccel.mif │ │ │ ├── nt386 │ │ │ │ └── makefile │ │ │ ├── ntaxp │ │ │ │ └── makefile │ │ │ ├── version.rc │ │ │ └── wini86 │ │ │ │ └── makefile │ │ ├── wmenu │ │ │ ├── c │ │ │ │ ├── w_menu.c │ │ │ │ ├── wdel.c │ │ │ │ ├── wedit.c │ │ │ │ ├── whints.c │ │ │ │ ├── whndl.c │ │ │ │ ├── winfo.c │ │ │ │ ├── wmain.c │ │ │ │ ├── wmen2rc.c │ │ │ │ ├── wnewitem.c │ │ │ │ ├── wprev.c │ │ │ │ ├── wribbon.c │ │ │ │ ├── wstat.c │ │ │ │ ├── wsvobj.c │ │ │ │ └── wtoolbar.c │ │ │ ├── h │ │ │ │ ├── delitem.bmp │ │ │ │ ├── insafter.bmp │ │ │ │ ├── insbefor.bmp │ │ │ │ ├── insitem.bmp │ │ │ │ ├── insnosub.bmp │ │ │ │ ├── inspopup.bmp │ │ │ │ ├── inssep.bmp │ │ │ │ ├── inssub.bmp │ │ │ │ ├── logo.bmp │ │ │ │ ├── menedit.dlg │ │ │ │ ├── menedit.h │ │ │ │ ├── old.ico │ │ │ │ ├── sys_rc.h │ │ │ │ ├── w_menu.h │ │ │ │ ├── wdel.h │ │ │ │ ├── wedit.h │ │ │ │ ├── whints.h │ │ │ │ ├── whndl.h │ │ │ │ ├── winfo.h │ │ │ │ ├── wmain.h │ │ │ │ ├── wmen2rc.h │ │ │ │ ├── wmenu.h │ │ │ │ ├── wmenu.ico │ │ │ │ ├── wmenu.men │ │ │ │ ├── wmenu.msg │ │ │ │ ├── wmenu.rc │ │ │ │ ├── wnewitem.h │ │ │ │ ├── wprev.h │ │ │ │ ├── wribbon.h │ │ │ │ ├── wstat.h │ │ │ │ ├── wsvobj.h │ │ │ │ └── wtoolbar.h │ │ │ ├── mif │ │ │ │ └── wmenu.mif │ │ │ ├── nt386 │ │ │ │ └── makefile │ │ │ ├── ntaxp │ │ │ │ └── makefile │ │ │ ├── version.rc │ │ │ └── wini86 │ │ │ │ └── makefile │ │ └── wstring │ │ │ ├── c │ │ │ ├── wdel.c │ │ │ ├── wedit.c │ │ │ ├── whints.c │ │ │ ├── whndl.c │ │ │ ├── winfo.c │ │ │ ├── wmain.c │ │ │ ├── wnewitem.c │ │ │ ├── wribbon.c │ │ │ ├── wstat.c │ │ │ ├── wstr.c │ │ │ ├── wstr2rc.c │ │ │ ├── wsvobj.c │ │ │ └── wtoolbar.c │ │ │ ├── h │ │ │ ├── delkey.bmp │ │ │ ├── inskey.bmp │ │ │ ├── logo.bmp │ │ │ ├── old.ico │ │ │ ├── stredit.dlg │ │ │ ├── stredit.h │ │ │ ├── sys_rc.h │ │ │ ├── wdel.h │ │ │ ├── wedit.h │ │ │ ├── whints.h │ │ │ ├── whndl.h │ │ │ ├── winfo.h │ │ │ ├── wmain.h │ │ │ ├── wnewitem.h │ │ │ ├── wribbon.h │ │ │ ├── wstat.h │ │ │ ├── wstr.h │ │ │ ├── wstr2rc.h │ │ │ ├── wstring.h │ │ │ ├── wstring.ico │ │ │ ├── wstring.men │ │ │ ├── wstring.msg │ │ │ ├── wstring.rc │ │ │ ├── wsvobj.h │ │ │ └── wtoolbar.h │ │ │ ├── mif │ │ │ └── wstring.mif │ │ │ ├── nt386 │ │ │ └── makefile │ │ │ ├── ntaxp │ │ │ └── makefile │ │ │ ├── version.rc │ │ │ └── wini86 │ │ │ └── makefile │ └── zoom │ │ ├── appmanif.xml │ │ ├── config.h │ │ ├── config.res │ │ ├── configj.dlg │ │ ├── exever.rc │ │ ├── lang.ctl │ │ ├── master.mif │ │ ├── menu.rc │ │ ├── nt386 │ │ └── makefile │ │ ├── ntaxp │ │ └── makefile │ │ ├── res │ │ ├── config.dlg │ │ └── kanji │ │ │ └── config.dlg │ │ ├── wini86 │ │ └── makefile │ │ ├── wzoom.h │ │ ├── wzoom.msg │ │ ├── wzoom.rc │ │ ├── zmconfig.c │ │ ├── zmglob.c │ │ ├── zmproc.c │ │ ├── zmscreen.c │ │ ├── zoom.c │ │ └── zoom.ico ├── setupgui │ ├── c │ │ ├── dlggen.c │ │ ├── dosstub.c │ │ ├── dynarray.c │ │ ├── exetype.c │ │ ├── gendlg.c │ │ ├── genvbl.c │ │ ├── guicolor.c │ │ ├── guictrl.c │ │ ├── guistat.c │ │ ├── guiutil.c │ │ ├── hash.c │ │ ├── loadfind.c │ │ ├── nlmver.c │ │ ├── os2util.c │ │ ├── setup.c │ │ ├── setupfil.c │ │ ├── setupinf.c │ │ ├── setupio.c │ │ ├── setupiod.c │ │ ├── setupmem.c │ │ ├── utils.c │ │ ├── winddeml.c │ │ └── winutil.c │ ├── dos386 │ │ └── makefile │ ├── dosi86 │ │ └── makefile │ ├── exever.rc │ ├── h │ │ ├── disksize.h │ │ ├── dlgbutn.h │ │ ├── dlggen.h │ │ ├── dynarray.h │ │ ├── genctrl.h │ │ ├── gendlg.h │ │ ├── genvbl.h │ │ ├── hash.h │ │ ├── nlmver.h │ │ ├── resource.h │ │ ├── setup.h │ │ ├── setupdlg.h │ │ ├── setupgui.h │ │ ├── setupinf.h │ │ ├── setupio.h │ │ ├── setupui.h │ │ ├── setupwpi.h │ │ ├── status.h │ │ ├── utils.h │ │ └── vhandle.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── linuxmps │ │ └── makefile │ ├── mkdisk │ │ ├── genmkfil.c │ │ ├── langdat.c │ │ ├── makefile │ │ ├── microzip.c │ │ ├── mkdisk.c │ │ ├── mkexezip.c │ │ ├── mkinf.c │ │ ├── packsize.c │ │ └── splitfil.c │ ├── nt386.gui │ │ └── makefile │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386.gui │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── patch.inf │ ├── res │ │ ├── f77.bmp │ │ ├── generic.bmp │ │ ├── nt │ │ │ ├── appmanif.xml │ │ │ ├── disk.ico │ │ │ ├── setup.ico │ │ │ └── setup.rc │ │ ├── os2 │ │ │ ├── foros2pm.rc │ │ │ ├── setup.ico │ │ │ └── setup.rc │ │ ├── setupui.rc │ │ ├── splash.rc │ │ ├── wcc.bmp │ │ └── win │ │ │ ├── disk.ico │ │ │ ├── setup.ico │ │ │ └── setup.rc │ ├── setup.mif │ ├── setup.txt │ ├── setupinf.txt │ ├── sql.inf │ ├── templat2.inf │ ├── win386 │ │ └── makefile │ ├── wini86 │ │ └── makefile │ ├── ziplib │ │ ├── linux386 │ │ │ └── makefile │ │ ├── master.mif │ │ ├── osi386 │ │ │ └── makefile │ │ └── osiaxp │ │ │ └── makefile │ └── zlib │ │ ├── master.mif │ │ ├── osi386 │ │ └── makefile │ │ └── osiaxp │ │ └── makefile ├── src │ ├── afxexamp │ │ ├── explore │ │ │ ├── appmanif.xml │ │ │ ├── expldoc.cpp │ │ │ ├── expldoc.h │ │ │ ├── explfrm.cpp │ │ │ ├── explfrm.h │ │ │ ├── explore.cpp │ │ │ ├── explore.h │ │ │ ├── explore.ico │ │ │ ├── explore.rc │ │ │ ├── itemdlg.cpp │ │ │ ├── itemdlg.h │ │ │ ├── leftview.cpp │ │ │ ├── leftview.h │ │ │ ├── listitem.ico │ │ │ ├── makefile │ │ │ ├── resource.h │ │ │ ├── rightvw.cpp │ │ │ ├── rightvw.h │ │ │ ├── stdafx.h │ │ │ ├── toolbar.bmp │ │ │ └── treeitem.ico │ │ ├── hello │ │ │ ├── appmanif.xml │ │ │ ├── hello.cpp │ │ │ ├── hello.h │ │ │ ├── hello.rc │ │ │ ├── hellownd.cpp │ │ │ ├── hellownd.h │ │ │ ├── makefile │ │ │ ├── resource.h │ │ │ └── stdafx.h │ │ ├── quikdraw │ │ │ ├── appmanif.xml │ │ │ ├── drawdoc.cpp │ │ │ ├── drawdoc.h │ │ │ ├── drawdoc.ico │ │ │ ├── drawfrm.cpp │ │ │ ├── drawfrm.h │ │ │ ├── drawview.cpp │ │ │ ├── drawview.h │ │ │ ├── makefile │ │ │ ├── quikdraw.cpp │ │ │ ├── quikdraw.h │ │ │ ├── quikdraw.ico │ │ │ ├── quikdraw.rc │ │ │ ├── quikfrm.cpp │ │ │ ├── quikfrm.h │ │ │ ├── resource.h │ │ │ ├── shapes.cpp │ │ │ ├── shapes.h │ │ │ ├── stdafx.h │ │ │ └── toolbar.bmp │ │ └── textedit │ │ │ ├── appmanif.xml │ │ │ ├── editfrm.cpp │ │ │ ├── editfrm.h │ │ │ ├── makefile │ │ │ ├── resource.h │ │ │ ├── stdafx.h │ │ │ ├── textdoc.cpp │ │ │ ├── textdoc.h │ │ │ ├── textdoc.ico │ │ │ ├── textedit.cpp │ │ │ ├── textedit.h │ │ │ ├── textedit.ico │ │ │ ├── textedit.rc │ │ │ ├── textview.cpp │ │ │ ├── textview.h │ │ │ └── toolbar.bmp │ ├── clibexam │ │ ├── _atouni.c │ │ ├── _bfreese.c │ │ ├── _bgetcmd.c │ │ ├── _bheapse.c │ │ ├── _bprintf.c │ │ ├── _bthread.c │ │ ├── _clear87.c │ │ ├── _cmdname.c │ │ ├── _disable.c │ │ ├── _dwdelcl.c │ │ ├── _dwshutd.c │ │ ├── _dwstabo.c │ │ ├── _dwstapt.c │ │ ├── _dwstcnt.c │ │ ├── _dwyield.c │ │ ├── _enable.c │ │ ├── _ethread.c │ │ ├── _exit.c │ │ ├── _expand.c │ │ ├── _fpreset.c │ │ ├── _freect.c │ │ ├── _fsopen.c │ │ ├── _fullpat.c │ │ ├── _grow_ha.c │ │ ├── _harderr.c │ │ ├── _hdopen.c │ │ ├── _heapchk.c │ │ ├── _heapena.c │ │ ├── _heapgrw.c │ │ ├── _heapmin.c │ │ ├── _heapset.c │ │ ├── _heapshr.c │ │ ├── _heapwal.c │ │ ├── _lrotl.c │ │ ├── _lrotr.c │ │ ├── _makepat.c │ │ ├── _memavl.c │ │ ├── _memmax.c │ │ ├── _msize.c │ │ ├── _pclose.c │ │ ├── _pipe.c │ │ ├── _popen.c │ │ ├── _rotl.c │ │ ├── _rotr.c │ │ ├── _searche.c │ │ ├── _setmath.c │ │ ├── _splitp2.c │ │ ├── _splitpa.c │ │ ├── _status8.c │ │ ├── _vbprint.c │ │ ├── abort.c │ │ ├── abrt_hnd.c │ │ ├── abs.c │ │ ├── access.c │ │ ├── acos.c │ │ ├── acosh.c │ │ ├── alloca.c │ │ ├── allocmem.c │ │ ├── asctim_s.c │ │ ├── asctime.c │ │ ├── asin.c │ │ ├── asinh.c │ │ ├── assert.c │ │ ├── atan.c │ │ ├── atan2.c │ │ ├── atanh.c │ │ ├── atexit.c │ │ ├── atof.c │ │ ├── atoi.c │ │ ├── atol.c │ │ ├── atoll.c │ │ ├── b_disk.c │ │ ├── b_equip.c │ │ ├── b_keybrd.c │ │ ├── b_memsiz.c │ │ ├── b_print.c │ │ ├── b_serial.c │ │ ├── b_time.c │ │ ├── basename.c │ │ ├── bcmp.c │ │ ├── bcopy.c │ │ ├── bdos.c │ │ ├── bessel.c │ │ ├── breakoff.c │ │ ├── bsearch.c │ │ ├── bsrch_s.c │ │ ├── btowc.c │ │ ├── bzero.c │ │ ├── cabs.c │ │ ├── calloc.c │ │ ├── ceil.c │ │ ├── cgets.c │ │ ├── chainint.c │ │ ├── chdir.c │ │ ├── chdrive.c │ │ ├── child.c │ │ ├── chmod.c │ │ ├── chsize.c │ │ ├── clearenv.c │ │ ├── clearerr.c │ │ ├── clock.c │ │ ├── close.c │ │ ├── closedir.c │ │ ├── control8.c │ │ ├── controlf.c │ │ ├── cos.c │ │ ├── cosh.c │ │ ├── cprintf.c │ │ ├── cputs.c │ │ ├── creat.c │ │ ├── creatnew.c │ │ ├── cscanf.c │ │ ├── ctime.c │ │ ├── ctime_s.c │ │ ├── cwait.c │ │ ├── d_close.c │ │ ├── d_creat.c │ │ ├── d_open.c │ │ ├── d_read.c │ │ ├── d_write.c │ │ ├── delay.c │ │ ├── dgetdriv.c │ │ ├── dgetdskf.c │ │ ├── difftime.c │ │ ├── dirname.c │ │ ├── div.c │ │ ├── dos │ │ │ └── makefile │ │ ├── dos32 │ │ │ └── makefile │ │ ├── doscommi.c │ │ ├── dosexter.c │ │ ├── dosfind.c │ │ ├── dup.c │ │ ├── dup2.c │ │ ├── ecvt.c │ │ ├── eof.c │ │ ├── exec.c │ │ ├── exit.c │ │ ├── exp.c │ │ ├── fabs.c │ │ ├── fclose.c │ │ ├── fcloseal.c │ │ ├── fcvt.c │ │ ├── fdopen.c │ │ ├── feof.c │ │ ├── ferror.c │ │ ├── fflush.c │ │ ├── ffs.c │ │ ├── fgetc.c │ │ ├── fgetchar.c │ │ ├── fgetpos.c │ │ ├── fgets.c │ │ ├── fileleng.c │ │ ├── fileno.c │ │ ├── files.dat │ │ ├── findclos.c │ │ ├── findfirs.c │ │ ├── findnext.c │ │ ├── floor.c │ │ ├── flushall.c │ │ ├── fmod.c │ │ ├── fnmatch.c │ │ ├── fopen.c │ │ ├── fopen_s.c │ │ ├── fp_off.c │ │ ├── fp_seg.c │ │ ├── fpclassf.c │ │ ├── fprintf.c │ │ ├── fputc.c │ │ ├── fputchar.c │ │ ├── fputs.c │ │ ├── fread.c │ │ ├── free.c │ │ ├── freemem.c │ │ ├── freop_s.c │ │ ├── freopen.c │ │ ├── frexp.c │ │ ├── fscanf.c │ │ ├── fscanf_s.c │ │ ├── fseek.c │ │ ├── fsetpos.c │ │ ├── fstat.c │ │ ├── fsync.c │ │ ├── ftell.c │ │ ├── ftime.c │ │ ├── fwide.c │ │ ├── fwrite.c │ │ ├── gcvt.c │ │ ├── getc.c │ │ ├── getch.c │ │ ├── getchar.c │ │ ├── getche.c │ │ ├── getcmd.c │ │ ├── getcwd.c │ │ ├── getdate.c │ │ ├── getdcwd.c │ │ ├── getdiskf.c │ │ ├── getdrive.c │ │ ├── getenv.c │ │ ├── getenv_s.c │ │ ├── getfattr.c │ │ ├── getftime.c │ │ ├── getmbcp.c │ │ ├── getopt.c │ │ ├── getosfha.c │ │ ├── getpid.c │ │ ├── gets.c │ │ ├── gettime.c │ │ ├── getvect.c │ │ ├── getw.c │ │ ├── gmtime.c │ │ ├── gmtime_s.c │ │ ├── halloc.c │ │ ├── hfree.c │ │ ├── hypot.c │ │ ├── ign_hnd.c │ │ ├── imaxabs.c │ │ ├── imaxdiv.c │ │ ├── inp.c │ │ ├── inpd.c │ │ ├── inpw.c │ │ ├── int386.c │ │ ├── int386x.c │ │ ├── int86.c │ │ ├── int86x.c │ │ ├── intdos.c │ │ ├── intdosx.c │ │ ├── intr.c │ │ ├── isalnum.c │ │ ├── isalpha.c │ │ ├── isascii.c │ │ ├── isatty.c │ │ ├── isblank.c │ │ ├── iscntrl.c │ │ ├── iscsym.c │ │ ├── iscsymf.c │ │ ├── isdigit.c │ │ ├── isfinite.c │ │ ├── isgraph.c │ │ ├── isinf.c │ │ ├── isleadb.c │ │ ├── islower.c │ │ ├── ismbbaln.c │ │ ├── ismbbalp.c │ │ ├── ismbbgra.c │ │ ├── ismbbkal.c │ │ ├── ismbbkan.c │ │ ├── ismbbkap.c │ │ ├── ismbbkpr.c │ │ ├── ismbbkpu.c │ │ ├── ismbblea.c │ │ ├── ismbbpri.c │ │ ├── ismbbpun.c │ │ ├── ismbbtra.c │ │ ├── ismbcaln.c │ │ ├── ismbcalp.c │ │ ├── ismbccnt.c │ │ ├── ismbcdig.c │ │ ├── ismbcgra.c │ │ ├── ismbchir.c │ │ ├── ismbckat.c │ │ ├── ismbcl0.c │ │ ├── ismbcl1.c │ │ ├── ismbcl2.c │ │ ├── ismbcleg.c │ │ ├── ismbclow.c │ │ ├── ismbcpri.c │ │ ├── ismbcpun.c │ │ ├── ismbcspa.c │ │ ├── ismbcsym.c │ │ ├── ismbcupp.c │ │ ├── ismbcxdi.c │ │ ├── isnan.c │ │ ├── isnormal.c │ │ ├── isprint.c │ │ ├── ispunct.c │ │ ├── isspace.c │ │ ├── isupper.c │ │ ├── iswctype.c │ │ ├── isxdigit.c │ │ ├── itoa.c │ │ ├── kanji │ │ │ ├── btom.c │ │ │ ├── chkctype.c │ │ │ ├── hantozen.c │ │ │ ├── isalkana.c │ │ │ ├── isalnmka.c │ │ │ ├── isgrkana.c │ │ │ ├── iskana.c │ │ │ ├── iskanji.c │ │ │ ├── iskanji2.c │ │ │ ├── iskmoji.c │ │ │ ├── iskpun.c │ │ │ ├── ispnkana.c │ │ │ ├── isprkana.c │ │ │ ├── jasctime.c │ │ │ ├── jctime.c │ │ │ ├── jgetmoji.c │ │ │ ├── jisalpha.c │ │ │ ├── jisdigit.c │ │ │ ├── jishira.c │ │ │ ├── jiskana.c │ │ │ ├── jiskigou.c │ │ │ ├── jisl0.c │ │ │ ├── jisl1.c │ │ │ ├── jisl2.c │ │ │ ├── jislower.c │ │ │ ├── jisprint.c │ │ │ ├── jisspace.c │ │ │ ├── jistojms.c │ │ │ ├── jisupper.c │ │ │ ├── jiszen.c │ │ │ ├── jmstojis.c │ │ │ ├── jperror.c │ │ │ ├── jputmoji.c │ │ │ ├── jstradv.c │ │ │ ├── jstrcat.c │ │ │ ├── jstrchr.c │ │ │ ├── jstrcmp.c │ │ │ ├── jstrcspn.c │ │ │ ├── jstrerro.c │ │ │ ├── jstricmp.c │ │ │ ├── jstrlen.c │ │ │ ├── jstrlwr.c │ │ │ ├── jstrmatc.c │ │ │ ├── jstrncat.c │ │ │ ├── jstrncmp.c │ │ │ ├── jstrncpy.c │ │ │ ├── jstrnicm.c │ │ │ ├── jstrnset.c │ │ │ ├── jstrrchr.c │ │ │ ├── jstrrev.c │ │ │ ├── jstrset.c │ │ │ ├── jstrskip.c │ │ │ ├── jstrspn.c │ │ │ ├── jstrstr.c │ │ │ ├── jstrtok.c │ │ │ ├── jstrupr.c │ │ │ ├── jtohira.c │ │ │ ├── jtokata.c │ │ │ ├── jtolower.c │ │ │ ├── jtoupper.c │ │ │ ├── mtob.c │ │ │ ├── nthctype.c │ │ │ └── zentohan.c │ │ ├── kbhit.c │ │ ├── keep.c │ │ ├── labs.c │ │ ├── lcltim_s.c │ │ ├── ldexp.c │ │ ├── ldiv.c │ │ ├── lfind.c │ │ ├── llabs.c │ │ ├── lldiv.c │ │ ├── lltoa.c │ │ ├── localeco.c │ │ ├── localtim.c │ │ ├── lock.c │ │ ├── locking.c │ │ ├── log.c │ │ ├── log10.c │ │ ├── log2.c │ │ ├── longjmp.c │ │ ├── lsearch.c │ │ ├── lseek.c │ │ ├── ltoa.c │ │ ├── main.c │ │ ├── malloc.c │ │ ├── master.mif │ │ ├── matherr.c │ │ ├── max.c │ │ ├── mbbtombc.c │ │ ├── mbbtype.c │ │ ├── mbccmp.c │ │ ├── mbccpy.c │ │ ├── mbcicmp.c │ │ ├── mbcjisto.c │ │ ├── mbcjmsto.c │ │ ├── mbclen.c │ │ ├── mbctohir.c │ │ ├── mbctokat.c │ │ ├── mbctolow.c │ │ ├── mbctombb.c │ │ ├── mbctoupp.c │ │ ├── mbgetcod.c │ │ ├── mblen.c │ │ ├── mbputcha.c │ │ ├── mbrlen.c │ │ ├── mbrtowc.c │ │ ├── mbsbtype.c │ │ ├── mbsinit.c │ │ ├── mbsnbcat.c │ │ ├── mbsnbcmp.c │ │ ├── mbsnbcnt.c │ │ ├── mbsnbcpy.c │ │ ├── mbsnbicm.c │ │ ├── mbsnbset.c │ │ ├── mbsnccnt.c │ │ ├── mbsnextc.c │ │ ├── mbsrto_s.c │ │ ├── mbsrtowc.c │ │ ├── mbstow_s.c │ │ ├── mbstowcs.c │ │ ├── mbterm.c │ │ ├── mbtowc.c │ │ ├── mbvtop.c │ │ ├── memccpy.c │ │ ├── memchr.c │ │ ├── memcmp.c │ │ ├── memcpy.c │ │ ├── memcpy_s.c │ │ ├── memicmp.c │ │ ├── memmov_s.c │ │ ├── memmove.c │ │ ├── mempty.c │ │ ├── memset.c │ │ ├── mfromint.c │ │ ├── min.c │ │ ├── mk_fp.c │ │ ├── mkdir.c │ │ ├── mkstemp.c │ │ ├── mktemp.c │ │ ├── mktime.c │ │ ├── modf.c │ │ ├── movedata.c │ │ ├── mpaddb.c │ │ ├── mpaddd.c │ │ ├── mpaddsb.c │ │ ├── mpaddsw.c │ │ ├── mpaddusb.c │ │ ├── mpaddusw.c │ │ ├── mpaddw.c │ │ ├── mpand.c │ │ ├── mpandn.c │ │ ├── mpckssdw.c │ │ ├── mpcksswb.c │ │ ├── mpckuswb.c │ │ ├── mpcmpeqb.c │ │ ├── mpcmpeqd.c │ │ ├── mpcmpeqw.c │ │ ├── mpcmpgtb.c │ │ ├── mpcmpgtd.c │ │ ├── mpcmpgtw.c │ │ ├── mpmaddwd.c │ │ ├── mpmulhw.c │ │ ├── mpmullw.c │ │ ├── mpor.c │ │ ├── mpslld.c │ │ ├── mpslldi.c │ │ ├── mpsllq.c │ │ ├── mpsllqi.c │ │ ├── mpsllw.c │ │ ├── mpsllwi.c │ │ ├── mpsrad.c │ │ ├── mpsradi.c │ │ ├── mpsraw.c │ │ ├── mpsrawi.c │ │ ├── mpsrld.c │ │ ├── mpsrldi.c │ │ ├── mpsrlq.c │ │ ├── mpsrlqi.c │ │ ├── mpsrlw.c │ │ ├── mpsrlwi.c │ │ ├── mpsubb.c │ │ ├── mpsubd.c │ │ ├── mpsubsb.c │ │ ├── mpsubsw.c │ │ ├── mpsubusb.c │ │ ├── mpsubusw.c │ │ ├── mpsubw.c │ │ ├── mpxor.c │ │ ├── mtoint.c │ │ ├── mupckhbw.c │ │ ├── mupckhdq.c │ │ ├── mupckhwd.c │ │ ├── mupcklbw.c │ │ ├── mupckldq.c │ │ ├── mupcklwd.c │ │ ├── netware │ │ │ ├── makefile │ │ │ └── netware.mif │ │ ├── nosound.c │ │ ├── offsetof.c │ │ ├── onexit.c │ │ ├── open.c │ │ ├── opendir.c │ │ ├── openosfh.c │ │ ├── os2-16 │ │ │ └── makefile │ │ ├── os2-32 │ │ │ └── makefile │ │ ├── os2-32w │ │ │ └── makefile │ │ ├── oshandle.c │ │ ├── outp.c │ │ ├── outpd.c │ │ ├── outpw.c │ │ ├── perror.c │ │ ├── pow.c │ │ ├── printf.c │ │ ├── putc.c │ │ ├── putch.c │ │ ├── putchar.c │ │ ├── putenv.c │ │ ├── puts.c │ │ ├── putw.c │ │ ├── qsort.c │ │ ├── qsort_s.c │ │ ├── raise.c │ │ ├── rand.c │ │ ├── read.c │ │ ├── readdir.c │ │ ├── realloc.c │ │ ├── remove.c │ │ ├── rename.c │ │ ├── rewind.c │ │ ├── rewinddi.c │ │ ├── rmdir.c │ │ ├── sbrk.c │ │ ├── scanf.c │ │ ├── scanf_s.c │ │ ├── segread.c │ │ ├── set_chnd.c │ │ ├── setblock.c │ │ ├── setbuf.c │ │ ├── setdate.c │ │ ├── setdrive.c │ │ ├── setenv.c │ │ ├── setfattr.c │ │ ├── setftime.c │ │ ├── setjmp.c │ │ ├── setlocal.c │ │ ├── setmbcp.c │ │ ├── setmode.c │ │ ├── setnew.c │ │ ├── settime.c │ │ ├── setvbuf.c │ │ ├── setvect.c │ │ ├── signal.c │ │ ├── signbit.c │ │ ├── sin.c │ │ ├── sinh.c │ │ ├── sisinit.c │ │ ├── sleep.c │ │ ├── snprintf.c │ │ ├── snprntf.c │ │ ├── sopen.c │ │ ├── sound.c │ │ ├── spawn.c │ │ ├── sprintf.c │ │ ├── sqrt.c │ │ ├── srand.c │ │ ├── sscanf.c │ │ ├── sscanf_s.c │ │ ├── stackava.c │ │ ├── stat.c │ │ ├── stncat_s.c │ │ ├── stncpy_s.c │ │ ├── strcase.c │ │ ├── strcat.c │ │ ├── strcat_s.c │ │ ├── strchr.c │ │ ├── strcmp.c │ │ ├── strcmpi.c │ │ ├── strcoll.c │ │ ├── strcpy.c │ │ ├── strcpy_s.c │ │ ├── strcspn.c │ │ ├── strdate.c │ │ ├── strdec.c │ │ ├── strdup.c │ │ ├── streln_s.c │ │ ├── strerr_s.c │ │ ├── strerror.c │ │ ├── strftime.c │ │ ├── stricmp.c │ │ ├── stricoll.c │ │ ├── strinc.c │ │ ├── strlcat.c │ │ ├── strlcpy.c │ │ ├── strlen.c │ │ ├── strlwr.c │ │ ├── strncase.c │ │ ├── strncat.c │ │ ├── strncmp.c │ │ ├── strncoll.c │ │ ├── strncpy.c │ │ ├── strnicmp.c │ │ ├── strnicol.c │ │ ├── strninc.c │ │ ├── strnln_s.c │ │ ├── strnset.c │ │ ├── strpbrk.c │ │ ├── strrchr.c │ │ ├── strrev.c │ │ ├── strset.c │ │ ├── strspn.c │ │ ├── strspnp.c │ │ ├── strstr.c │ │ ├── strtime.c │ │ ├── strtod.c │ │ ├── strtoimx.c │ │ ├── strtok.c │ │ ├── strtok_s.c │ │ ├── strtol.c │ │ ├── strtoll.c │ │ ├── strtoul.c │ │ ├── strtoull.c │ │ ├── strtoumx.c │ │ ├── strupr.c │ │ ├── strxfrm.c │ │ ├── swab.c │ │ ├── system.c │ │ ├── tan.c │ │ ├── tanh.c │ │ ├── tell.c │ │ ├── tempnam.c │ │ ├── test │ │ │ ├── cl.bat │ │ │ ├── clr.bat │ │ │ ├── file.sav │ │ │ ├── jpn.bat │ │ │ └── program.asm │ │ ├── time.c │ │ ├── tmpfile.c │ │ ├── tmpfl_s.c │ │ ├── tmpnam.c │ │ ├── tmpnm_s.c │ │ ├── tolower.c │ │ ├── toupper.c │ │ ├── towctrns.c │ │ ├── tzset.c │ │ ├── ulltoa.c │ │ ├── ultoa.c │ │ ├── umask.c │ │ ├── ungetc.c │ │ ├── ungetch.c │ │ ├── unlink.c │ │ ├── unlock.c │ │ ├── utime.c │ │ ├── utoa.c │ │ ├── va_arg.c │ │ ├── va_end.c │ │ ├── va_start.c │ │ ├── vcprintf.c │ │ ├── vcscanf.c │ │ ├── vfprintf.c │ │ ├── vfscanf.c │ │ ├── vfscnf_s.c │ │ ├── vprintf.c │ │ ├── vscanf.c │ │ ├── vscanf_s.c │ │ ├── vsnprint.c │ │ ├── vsnprntf.c │ │ ├── vsprintf.c │ │ ├── vsscanf.c │ │ ├── vsscnf_s.c │ │ ├── wait.c │ │ ├── wcrtom_s.c │ │ ├── wcrtomb.c │ │ ├── wcsrto_s.c │ │ ├── wcsrtomb.c │ │ ├── wcstom_s.c │ │ ├── wcstombs.c │ │ ├── wctob.c │ │ ├── wctomb.c │ │ ├── wctomb_s.c │ │ ├── wctrans.c │ │ ├── wctype.c │ │ ├── win16 │ │ │ └── makefile │ │ ├── win32 │ │ │ └── makefile │ │ ├── win32w │ │ │ └── makefile │ │ ├── win386 │ │ │ └── makefile │ │ └── write.c │ ├── cplbexam │ │ ├── complex │ │ │ ├── friend │ │ │ │ ├── lshift.cpp │ │ │ │ ├── makefile │ │ │ │ └── rshift.cpp │ │ │ ├── pubfun │ │ │ │ ├── assign.cpp │ │ │ │ ├── construc.cpp │ │ │ │ ├── decre.cpp │ │ │ │ ├── div.cpp │ │ │ │ ├── imag.cpp │ │ │ │ ├── incre.cpp │ │ │ │ ├── makefile │ │ │ │ ├── minus.cpp │ │ │ │ ├── multi.cpp │ │ │ │ ├── plus.cpp │ │ │ │ └── real.cpp │ │ │ ├── relfun │ │ │ │ ├── abs.cpp │ │ │ │ ├── acos.cpp │ │ │ │ ├── acosh.cpp │ │ │ │ ├── arg.cpp │ │ │ │ ├── asin.cpp │ │ │ │ ├── asinh.cpp │ │ │ │ ├── atan.cpp │ │ │ │ ├── atanh.cpp │ │ │ │ ├── conj.cpp │ │ │ │ ├── cos.cpp │ │ │ │ ├── cosh.cpp │ │ │ │ ├── exp.cpp │ │ │ │ ├── imag.cpp │ │ │ │ ├── log.cpp │ │ │ │ ├── log10.cpp │ │ │ │ ├── makefile │ │ │ │ ├── norm.cpp │ │ │ │ ├── polar.cpp │ │ │ │ ├── pow.cpp │ │ │ │ ├── real.cpp │ │ │ │ ├── sin.cpp │ │ │ │ ├── sinh.cpp │ │ │ │ ├── sqrt.cpp │ │ │ │ ├── tan.cpp │ │ │ │ └── tanh.cpp │ │ │ └── relop │ │ │ │ ├── add.cpp │ │ │ │ ├── divide.cpp │ │ │ │ ├── equal.cpp │ │ │ │ ├── makefile │ │ │ │ ├── multiply.cpp │ │ │ │ ├── notequal.cpp │ │ │ │ └── subtract.cpp │ │ ├── contain │ │ │ ├── alloctor.cpp │ │ │ ├── makefile │ │ │ ├── wcldintr.cpp │ │ │ ├── wcldptr.cpp │ │ │ ├── wcldval.cpp │ │ │ ├── wcqueue.cpp │ │ │ ├── wcstack.cpp │ │ │ └── wcvdli.cpp │ │ ├── files.dat │ │ ├── fstream │ │ │ ├── fstream │ │ │ │ ├── construc.cpp │ │ │ │ ├── handbuf.cpp │ │ │ │ ├── handle.cpp │ │ │ │ ├── makefile │ │ │ │ └── open.cpp │ │ │ ├── ifstream │ │ │ │ ├── construc.cpp │ │ │ │ ├── handbuf.cpp │ │ │ │ ├── handle.cpp │ │ │ │ ├── makefile │ │ │ │ └── open.cpp │ │ │ └── ofstream │ │ │ │ ├── construc.cpp │ │ │ │ ├── handbuf.cpp │ │ │ │ ├── handle.cpp │ │ │ │ ├── makefile │ │ │ │ └── open.cpp │ │ ├── ios │ │ │ ├── bad.cpp │ │ │ ├── bitalloc.cpp │ │ │ ├── clear.cpp │ │ │ ├── constrbu.cpp │ │ │ ├── eof.cpp │ │ │ ├── except.cpp │ │ │ ├── fail.cpp │ │ │ ├── fill.cpp │ │ │ ├── flags.cpp │ │ │ ├── good.cpp │ │ │ ├── init.cpp │ │ │ ├── iword.cpp │ │ │ ├── makefile │ │ │ ├── opexam.cpp │ │ │ ├── opvoid.cpp │ │ │ ├── precisio.cpp │ │ │ ├── pword.cpp │ │ │ ├── rdbuf.cpp │ │ │ ├── rdstate.cpp │ │ │ ├── setf.cpp │ │ │ ├── tie.cpp │ │ │ ├── unsetf.cpp │ │ │ └── width.cpp │ │ ├── iostream │ │ │ ├── iostream │ │ │ │ ├── conbuf.cpp │ │ │ │ ├── conios.cpp │ │ │ │ ├── destruct.cpp │ │ │ │ ├── eqiostrm.cpp │ │ │ │ ├── eqstrmbu.cpp │ │ │ │ └── makefile │ │ │ ├── istream │ │ │ │ ├── conbuf.cpp │ │ │ │ ├── conistrm.cpp │ │ │ │ ├── destruct.cpp │ │ │ │ ├── eatwhite.cpp │ │ │ │ ├── eqistrm.cpp │ │ │ │ ├── eqstrmbu.cpp │ │ │ │ ├── gcount.cpp │ │ │ │ ├── get.cpp │ │ │ │ ├── getchar.cpp │ │ │ │ ├── getinbuf.cpp │ │ │ │ ├── getinstr.cpp │ │ │ │ ├── getline.cpp │ │ │ │ ├── ignore.cpp │ │ │ │ ├── ipfx.cpp │ │ │ │ ├── makefile │ │ │ │ ├── open.cpp │ │ │ │ ├── peek.cpp │ │ │ │ ├── putback.cpp │ │ │ │ ├── read.cpp │ │ │ │ ├── rshchar.cpp │ │ │ │ ├── rshchbuf.cpp │ │ │ │ ├── rshman.cpp │ │ │ │ ├── rshnum.cpp │ │ │ │ ├── rshstrbu.cpp │ │ │ │ ├── seekgoff.cpp │ │ │ │ ├── seekgpos.cpp │ │ │ │ ├── sync.cpp │ │ │ │ └── tellg.cpp │ │ │ └── ostream │ │ │ │ ├── conbuf.cpp │ │ │ │ ├── conostrm.cpp │ │ │ │ ├── destruct.cpp │ │ │ │ ├── eqostrm.cpp │ │ │ │ ├── eqstrmbu.cpp │ │ │ │ ├── flush.cpp │ │ │ │ ├── lshchar.cpp │ │ │ │ ├── lshfloat.cpp │ │ │ │ ├── lshint.cpp │ │ │ │ ├── lshman.cpp │ │ │ │ ├── lshptr.cpp │ │ │ │ ├── lshstr.cpp │ │ │ │ ├── lshstrbu.cpp │ │ │ │ ├── makefile │ │ │ │ ├── opfx.cpp │ │ │ │ ├── put.cpp │ │ │ │ ├── seekpoff.cpp │ │ │ │ ├── seekppos.cpp │ │ │ │ ├── tellp.cpp │ │ │ │ └── write.cpp │ │ ├── string │ │ │ ├── friend │ │ │ │ ├── add.cpp │ │ │ │ ├── equal.cpp │ │ │ │ ├── lonequal.cpp │ │ │ │ ├── long.cpp │ │ │ │ ├── lshift.cpp │ │ │ │ ├── makefile │ │ │ │ ├── notequal.cpp │ │ │ │ ├── rshift.cpp │ │ │ │ ├── short.cpp │ │ │ │ ├── shtequal.cpp │ │ │ │ └── valid.cpp │ │ │ └── pubfun │ │ │ │ ├── alloc.cpp │ │ │ │ ├── char.cpp │ │ │ │ ├── conchar.cpp │ │ │ │ ├── concstr.cpp │ │ │ │ ├── condef.cpp │ │ │ │ ├── constr.cpp │ │ │ │ ├── cstr.cpp │ │ │ │ ├── index.cpp │ │ │ │ ├── length.cpp │ │ │ │ ├── lower.cpp │ │ │ │ ├── makefile │ │ │ │ ├── match.cpp │ │ │ │ ├── opequal.cpp │ │ │ │ ├── opincre.cpp │ │ │ │ ├── poschara.cpp │ │ │ │ ├── poscharb.cpp │ │ │ │ ├── poslen.cpp │ │ │ │ ├── upper.cpp │ │ │ │ └── valid.cpp │ │ └── strstrea │ │ │ ├── istrstre │ │ │ ├── char.cpp │ │ │ ├── charlen.cpp │ │ │ └── makefile │ │ │ ├── ostrstre │ │ │ ├── charlen.cpp │ │ │ ├── construc.cpp │ │ │ ├── makefile │ │ │ ├── pcount.cpp │ │ │ └── str.cpp │ │ │ └── strstre │ │ │ ├── charlen.cpp │ │ │ ├── construc.cpp │ │ │ ├── makefile │ │ │ └── str.cpp │ ├── cppexamp │ │ ├── cppexamp.mif │ │ ├── excarea │ │ │ ├── excarea.cpp │ │ │ ├── main.cpp │ │ │ ├── makefile │ │ │ └── readme.txt │ │ ├── files.dat │ │ ├── local.mif │ │ ├── membfun │ │ │ ├── cfun.c │ │ │ ├── main.cpp │ │ │ ├── makefile │ │ │ └── readme.txt │ │ ├── readme.txt │ │ └── rtti │ │ │ ├── impl.cpp │ │ │ ├── impl.h │ │ │ ├── main.cpp │ │ │ ├── makefile │ │ │ ├── readme.txt │ │ │ ├── user.cpp │ │ │ └── user.h │ ├── directx │ │ ├── c │ │ │ ├── d3d │ │ │ │ ├── d3d.c │ │ │ │ └── makefile │ │ │ ├── dinput │ │ │ │ ├── dinput.c │ │ │ │ └── makefile │ │ │ ├── dshow │ │ │ │ ├── dshow.c │ │ │ │ └── makefile │ │ │ └── dsound │ │ │ │ ├── dsound.c │ │ │ │ └── makefile │ │ ├── cpp │ │ │ ├── d3d │ │ │ │ ├── d3d.cpp │ │ │ │ └── makefile │ │ │ ├── dinput │ │ │ │ ├── dinput.cpp │ │ │ │ └── makefile │ │ │ ├── dshow │ │ │ │ ├── dshow.cpp │ │ │ │ └── makefile │ │ │ └── dsound │ │ │ │ ├── dsound.cpp │ │ │ │ └── makefile │ │ ├── files.dat │ │ └── readme.txt │ ├── dll │ │ ├── cover16.c │ │ ├── dll16.c │ │ ├── dll16.lnk │ │ ├── dll32.c │ │ ├── dll32.lnk │ │ ├── files.dat │ │ ├── gen16.c │ │ ├── gen16.lnk │ │ ├── gen32.c │ │ ├── gen32.lnk │ │ ├── makefile │ │ └── vbdll32.c │ ├── files.dat │ ├── goodies │ │ ├── _matherr.for │ │ ├── bimo.asm │ │ ├── bimodal.c │ │ ├── bindata.fil │ │ ├── bindata.for │ │ ├── cpuid.c │ │ ├── cw87.for │ │ ├── dta.for │ │ ├── fhandles.for │ │ ├── fileio.c │ │ ├── files.dat │ │ ├── fmemory.for │ │ ├── fscreen.for │ │ ├── handles.c │ │ ├── keystapl.c │ │ ├── keystat.c │ │ ├── makefile │ │ ├── makefile.c │ │ ├── makefile.for │ │ ├── mathdemo.for │ │ ├── memory.c │ │ ├── mempls40.c │ │ ├── memwin.c │ │ ├── mix1c.c │ │ ├── mix1f.for │ │ ├── mix2c.c │ │ ├── mix2f.for │ │ ├── mix3c.c │ │ ├── mix3f.for │ │ ├── mix4c.c │ │ ├── mix4f.for │ │ ├── mix5c.c │ │ ├── mix5f.for │ │ ├── mix6.for │ │ ├── mouse.c │ │ ├── screen.c │ │ ├── screenpl.c │ │ ├── simulate.c │ │ ├── spwndcw.c │ │ ├── spwndd4g.c │ │ ├── spwndpls.c │ │ ├── spwnrcw.c │ │ ├── spwnrd4g.c │ │ └── spwnrpls.c │ ├── lang.ctl │ ├── misc │ │ ├── _matherr.c │ │ ├── calendar.c │ │ ├── calendar.cpp │ │ ├── calendar.jc │ │ ├── files.dat │ │ ├── grdemo.c │ │ ├── grdemo.cpp │ │ ├── hello.c │ │ ├── hello.cpp │ │ ├── memos.c │ │ ├── memos.def │ │ ├── memos.h │ │ ├── pgdemo.c │ │ ├── pmhello.c │ │ └── winhello.c │ ├── old_win │ │ ├── alarm │ │ │ ├── alarm.c │ │ │ ├── alarm.h │ │ │ ├── alarm.ico │ │ │ ├── alarm.rc │ │ │ ├── makefile.nt │ │ │ ├── makefile.w16 │ │ │ └── makefile.w32 │ │ ├── build.mif │ │ ├── chart │ │ │ ├── bardlg.ctl │ │ │ ├── bardlg.h │ │ │ ├── chart.c │ │ │ ├── chart.h │ │ │ ├── chart.sdl │ │ │ ├── ctluser.c │ │ │ ├── dialog.dlg │ │ │ ├── dialog.h │ │ │ ├── makefile │ │ │ ├── testcht.c │ │ │ ├── testcht.h │ │ │ ├── testcht.rc │ │ │ └── testcht2.c │ │ ├── datactl │ │ │ ├── check.c │ │ │ ├── combo.c │ │ │ ├── combomod.c │ │ │ ├── ctltype.c │ │ │ ├── ctltype.h │ │ │ ├── ctluser.c │ │ │ ├── ctluser.h │ │ │ ├── dcombo.c │ │ │ ├── dialog.dlg │ │ │ ├── dialog.h │ │ │ ├── float.c │ │ │ ├── int.c │ │ │ ├── makefile │ │ │ ├── parsectl.c │ │ │ ├── parsectl.sex │ │ │ ├── radio.c │ │ │ ├── read.me │ │ │ ├── rfloat.c │ │ │ ├── rint.c │ │ │ ├── testctl.c │ │ │ ├── testctl.h │ │ │ ├── testctl.rc │ │ │ ├── testdata.ctl │ │ │ ├── testdata.h │ │ │ ├── text.c │ │ │ └── textmod.c │ │ ├── edit │ │ │ ├── edit.c │ │ │ ├── edit.h │ │ │ ├── edit.rc │ │ │ ├── efile.c │ │ │ ├── efont.c │ │ │ ├── emem.c │ │ │ ├── eprint.c │ │ │ └── makefile │ │ ├── filedll │ │ │ ├── filedlg.c │ │ │ ├── filedlg.dlg │ │ │ ├── filedlg.h │ │ │ ├── filedlg.rc │ │ │ ├── filedll.sdl │ │ │ ├── filerc.h │ │ │ ├── makefile.nt │ │ │ └── makefile.w16 │ │ ├── generic │ │ │ ├── generic.c │ │ │ ├── generic.h │ │ │ ├── generic.ico │ │ │ ├── generic.rc │ │ │ ├── makefile.nt │ │ │ ├── makefile.w16 │ │ │ └── makefile.w32 │ │ ├── helpex │ │ │ ├── bullet.bmp │ │ │ ├── chkboff.bmp │ │ │ ├── chkbon.bmp │ │ │ ├── codec.bmp │ │ │ ├── continue.bmp │ │ │ ├── done.bmp │ │ │ ├── help.cur │ │ │ ├── helpex │ │ │ ├── helpex.c │ │ │ ├── helpex.def │ │ │ ├── helpex.dlg │ │ │ ├── helpex.h │ │ │ ├── helpex.hpj │ │ │ ├── helpex.rc │ │ │ ├── helpex.rtf │ │ │ ├── helpicon.bmp │ │ │ ├── helpids.h │ │ │ ├── keys.rtf │ │ │ ├── makefile │ │ │ ├── max2icon.bmp │ │ │ ├── mouse.bmp │ │ │ ├── terms.rtf │ │ │ └── winword.bmp │ │ ├── iconview │ │ │ ├── icon.c │ │ │ ├── icon.h │ │ │ ├── makefile.nt │ │ │ ├── makefile.w16 │ │ │ ├── makefile.w32 │ │ │ ├── mdi.c │ │ │ ├── mdi.h │ │ │ ├── switch.c │ │ │ ├── switch.h │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── view.c │ │ │ ├── view.h │ │ │ ├── view.ico │ │ │ └── view.rc │ │ ├── iswin.c │ │ ├── iswin.sex │ │ ├── life │ │ │ ├── array.c │ │ │ ├── bitmap.c │ │ │ ├── bitmap.h │ │ │ ├── bitmaps.c │ │ │ ├── blink1.lif │ │ │ ├── blink10.lif │ │ │ ├── blink11.lif │ │ │ ├── blink13.lif │ │ │ ├── blink14.lif │ │ │ ├── blink15.lif │ │ │ ├── blink2.lif │ │ │ ├── blink3.lif │ │ │ ├── blink4.lif │ │ │ ├── blink5.lif │ │ │ ├── blink6.lif │ │ │ ├── blink7.lif │ │ │ ├── blink8.lif │ │ │ ├── blink9.lif │ │ │ ├── blnkship.lif │ │ │ ├── cell.bmp │ │ │ ├── double.lif │ │ │ ├── dpuffer.lif │ │ │ ├── escort1.lif │ │ │ ├── escort2.lif │ │ │ ├── file.c │ │ │ ├── galaxy.lif │ │ │ ├── gldrgun.lif │ │ │ ├── glider.lif │ │ │ ├── life.c │ │ │ ├── life.dlg │ │ │ ├── life.h │ │ │ ├── life.ico │ │ │ ├── life.rc │ │ │ ├── line.lif │ │ │ ├── makefile.nt │ │ │ ├── makefile.w16 │ │ │ ├── makefile.w32 │ │ │ ├── menu.bmp │ │ │ ├── menu.h │ │ │ ├── mouse.c │ │ │ ├── palette.c │ │ │ ├── palette.h │ │ │ ├── patterns.c │ │ │ ├── pingpong.lif │ │ │ ├── puffer.lif │ │ │ ├── quad.lif │ │ │ ├── round.bmp │ │ │ ├── rules.h │ │ │ ├── seed1.lif │ │ │ ├── seed2.lif │ │ │ ├── seed3.lif │ │ │ ├── seed4.lif │ │ │ ├── swengine.lif │ │ │ ├── timer.c │ │ │ ├── triple.lif │ │ │ ├── watcom.bmp │ │ │ └── zig.lif │ │ ├── read.me │ │ ├── shootgal │ │ │ ├── bolt.ico │ │ │ ├── gun.cur │ │ │ ├── keyboard.ico │ │ │ ├── makefile.nt │ │ │ ├── makefile.w16 │ │ │ ├── makefile.w32 │ │ │ ├── mouse.ico │ │ │ ├── scroll.ico │ │ │ ├── shootgal.c │ │ │ ├── shootgal.h │ │ │ ├── shootgal.ico │ │ │ ├── shootgal.rc │ │ │ ├── target.bmp │ │ │ └── timer.ico │ │ ├── watzee │ │ │ ├── dice1.bmp │ │ │ ├── dice2.bmp │ │ │ ├── dice3.bmp │ │ │ ├── dice4.bmp │ │ │ ├── dice5.bmp │ │ │ ├── dice6.bmp │ │ │ ├── makefile.nt │ │ │ ├── makefile.w16 │ │ │ ├── makefile.w32 │ │ │ ├── watzee.c │ │ │ ├── watzee.h │ │ │ ├── watzee.ico │ │ │ ├── watzee.rc │ │ │ ├── wdice.c │ │ │ ├── wdlg.c │ │ │ ├── wdraw.c │ │ │ ├── wfont.c │ │ │ ├── wglobal.c │ │ │ └── wpc.c │ │ └── windemo.bat │ ├── os2 │ │ ├── dll │ │ │ ├── dllsamp.c │ │ │ ├── dllsamp.lnk │ │ │ └── dlltest.c │ │ ├── files.dat │ │ ├── mthread.c │ │ ├── pdd │ │ │ ├── devaux.h │ │ │ ├── devdefs.h │ │ │ ├── devhdr.h │ │ │ ├── devreqp.h │ │ │ ├── devsegs.asm │ │ │ ├── header.c │ │ │ ├── hrdev.h │ │ │ ├── hrtest.c │ │ │ ├── hrtimer.h │ │ │ ├── makefile │ │ │ ├── strategy.c │ │ │ ├── stratini.c │ │ │ └── timer.c │ │ ├── shapes.c │ │ ├── shapes.cpp │ │ └── som │ │ │ ├── animals │ │ │ ├── animals.c │ │ │ ├── animals.idl │ │ │ ├── main.c │ │ │ └── makefile │ │ │ ├── classes │ │ │ ├── course.c │ │ │ ├── course.csc │ │ │ ├── graduate.c │ │ │ ├── graduate.csc │ │ │ ├── makefile │ │ │ ├── student.c │ │ │ ├── student.csc │ │ │ ├── test.c │ │ │ ├── undgrad.c │ │ │ └── undgrad.csc │ │ │ ├── helloc │ │ │ ├── hello.c │ │ │ ├── hello.idl │ │ │ ├── main.c │ │ │ └── makefile │ │ │ ├── hellocpp │ │ │ ├── hello.cpp │ │ │ ├── hello.idl │ │ │ ├── main.cpp │ │ │ └── makefile │ │ │ ├── readme.txt │ │ │ └── wps │ │ │ ├── helper.c │ │ │ ├── helper.h │ │ │ ├── makefile │ │ │ ├── nbpage.c │ │ │ ├── nbpage.h │ │ │ ├── owobject.c │ │ │ ├── owobject.dlg │ │ │ ├── owobject.ico │ │ │ ├── owobject.idl │ │ │ ├── owobject.lnk │ │ │ ├── owobject.rc │ │ │ ├── owobjrc.h │ │ │ ├── run.cmd │ │ │ ├── setval.cmd │ │ │ └── welcome.txt │ ├── posix │ │ ├── c │ │ │ ├── cat.c │ │ │ ├── cmp.c │ │ │ ├── compress.c │ │ │ ├── false.c │ │ │ ├── sleep.c │ │ │ ├── tee.c │ │ │ ├── true.c │ │ │ ├── wc.c │ │ │ └── which.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── dosi86 │ │ │ └── makefile │ │ ├── h │ │ │ └── util.h │ │ ├── lib │ │ │ ├── c │ │ │ │ ├── die.c │ │ │ │ └── quit.c │ │ │ ├── dos386 │ │ │ │ └── makefile │ │ │ ├── dosi86 │ │ │ │ └── makefile │ │ │ ├── linux386 │ │ │ │ └── makefile │ │ │ ├── master.mif │ │ │ ├── nt386 │ │ │ │ └── makefile │ │ │ └── os2386 │ │ │ │ └── makefile │ │ ├── linux386 │ │ │ └── makefile │ │ ├── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ └── os2386 │ │ │ └── makefile │ ├── startup │ │ └── files.dat │ ├── win │ │ ├── alarm │ │ │ ├── alarm.c │ │ │ ├── alarm.h │ │ │ ├── alarm.ico │ │ │ ├── alarm.mif │ │ │ ├── alarm.rc │ │ │ ├── win16 │ │ │ │ ├── alarm.tgt │ │ │ │ ├── alarm.wpj │ │ │ │ └── makefile │ │ │ ├── win32 │ │ │ │ ├── alarm.tgt │ │ │ │ ├── alarm.wpj │ │ │ │ └── makefile │ │ │ ├── win386 │ │ │ │ ├── alarm.tgt │ │ │ │ ├── alarm.wpj │ │ │ │ └── makefile │ │ │ └── winaxp │ │ │ │ └── makefile │ │ ├── datactl │ │ │ ├── check.c │ │ │ ├── combo.c │ │ │ ├── combomod.c │ │ │ ├── ctltype.c │ │ │ ├── ctltype.h │ │ │ ├── ctluser.c │ │ │ ├── ctluser.h │ │ │ ├── dcombo.c │ │ │ ├── dialog.dlg │ │ │ ├── dialog.h │ │ │ ├── float.c │ │ │ ├── int.c │ │ │ ├── parsectl.c │ │ │ ├── radio.c │ │ │ ├── read.me │ │ │ ├── rfloat.c │ │ │ ├── rint.c │ │ │ ├── testctl.c │ │ │ ├── testctl.h │ │ │ ├── testctl.mif │ │ │ ├── testctl.rc │ │ │ ├── testdata.ctl │ │ │ ├── testdata.h │ │ │ ├── text.c │ │ │ ├── textmod.c │ │ │ ├── win16 │ │ │ │ ├── datactl.wpj │ │ │ │ ├── makefile │ │ │ │ └── testctl.tgt │ │ │ ├── win32 │ │ │ │ ├── datactl.wpj │ │ │ │ ├── makefile │ │ │ │ └── testctl.tgt │ │ │ ├── win386 │ │ │ │ ├── datactl.wpj │ │ │ │ ├── makefile │ │ │ │ └── testctl.tgt │ │ │ └── winaxp │ │ │ │ └── makefile │ │ ├── edit │ │ │ ├── edit.c │ │ │ ├── edit.h │ │ │ ├── edit.mif │ │ │ ├── edit.rc │ │ │ ├── efile.c │ │ │ ├── efont.c │ │ │ ├── emem.c │ │ │ ├── eprint.c │ │ │ ├── win16 │ │ │ │ ├── edit.tgt │ │ │ │ ├── edit.wpj │ │ │ │ └── makefile │ │ │ ├── win32 │ │ │ │ ├── edit.tgt │ │ │ │ ├── edit.wpj │ │ │ │ └── makefile │ │ │ ├── win386 │ │ │ │ ├── edit.tgt │ │ │ │ ├── edit.wpj │ │ │ │ └── makefile │ │ │ └── winaxp │ │ │ │ └── makefile │ │ ├── files.dat │ │ ├── generic │ │ │ ├── generic.c │ │ │ ├── generic.h │ │ │ ├── generic.ico │ │ │ ├── generic.mif │ │ │ ├── generic.rc │ │ │ ├── manifest.xml │ │ │ ├── win16 │ │ │ │ ├── generic.tgt │ │ │ │ ├── generic.wpj │ │ │ │ └── makefile │ │ │ ├── win32 │ │ │ │ ├── generic.tgt │ │ │ │ ├── generic.wpj │ │ │ │ └── makefile │ │ │ ├── win386 │ │ │ │ ├── generic.tgt │ │ │ │ ├── generic.wpj │ │ │ │ └── makefile │ │ │ └── winaxp │ │ │ │ └── makefile │ │ ├── helpex │ │ │ ├── bullet.bmp │ │ │ ├── chkboff.bmp │ │ │ ├── chkbon.bmp │ │ │ ├── codec.bmp │ │ │ ├── continue.bmp │ │ │ ├── done.bmp │ │ │ ├── help.cur │ │ │ ├── helpex │ │ │ ├── helpex.c │ │ │ ├── helpex.def │ │ │ ├── helpex.dlg │ │ │ ├── helpex.h │ │ │ ├── helpex.hpj │ │ │ ├── helpex.mif │ │ │ ├── helpex.ph │ │ │ ├── helpex.rc │ │ │ ├── helpex.rtf │ │ │ ├── helpicon.bmp │ │ │ ├── helpids.h │ │ │ ├── keys.rtf │ │ │ ├── max2icon.bmp │ │ │ ├── mouse.bmp │ │ │ ├── terms.rtf │ │ │ ├── win16 │ │ │ │ ├── helpex.tgt │ │ │ │ ├── helpex.wpj │ │ │ │ ├── makefile │ │ │ │ └── makehelp.bat │ │ │ ├── win32 │ │ │ │ ├── helpex.tgt │ │ │ │ ├── helpex.wpj │ │ │ │ ├── makefile │ │ │ │ └── makehelp.bat │ │ │ ├── win386 │ │ │ │ ├── helpex.tgt │ │ │ │ ├── helpex.wpj │ │ │ │ ├── makefile │ │ │ │ └── makehelp.bat │ │ │ ├── winaxp │ │ │ │ └── makefile │ │ │ └── winword.bmp │ │ ├── iconview │ │ │ ├── icon.c │ │ │ ├── icon.h │ │ │ ├── mdi.c │ │ │ ├── mdi.h │ │ │ ├── switch.c │ │ │ ├── switch.h │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── view.c │ │ │ ├── view.h │ │ │ ├── view.ico │ │ │ ├── view.mif │ │ │ ├── view.rc │ │ │ ├── win16 │ │ │ │ ├── iconview.wpj │ │ │ │ ├── makefile │ │ │ │ └── view.tgt │ │ │ ├── win32 │ │ │ │ ├── iconview.tgt │ │ │ │ ├── iconview.wpj │ │ │ │ ├── makefile │ │ │ │ └── view.tgt │ │ │ ├── win386 │ │ │ │ ├── iconview.tgt │ │ │ │ ├── iconview.wpj │ │ │ │ ├── makefile │ │ │ │ └── view.tgt │ │ │ └── winaxp │ │ │ │ └── makefile │ │ ├── life │ │ │ ├── array.c │ │ │ ├── bitmap.c │ │ │ ├── bitmap.h │ │ │ ├── bitmaps.c │ │ │ ├── blink1.lif │ │ │ ├── blink10.lif │ │ │ ├── blink11.lif │ │ │ ├── blink13.lif │ │ │ ├── blink14.lif │ │ │ ├── blink15.lif │ │ │ ├── blink2.lif │ │ │ ├── blink3.lif │ │ │ ├── blink4.lif │ │ │ ├── blink5.lif │ │ │ ├── blink6.lif │ │ │ ├── blink7.lif │ │ │ ├── blink8.lif │ │ │ ├── blink9.lif │ │ │ ├── blnkship.lif │ │ │ ├── cell.bmp │ │ │ ├── double.lif │ │ │ ├── dpuffer.lif │ │ │ ├── escort1.lif │ │ │ ├── escort2.lif │ │ │ ├── file.c │ │ │ ├── galaxy.lif │ │ │ ├── gldrgun.lif │ │ │ ├── glider.lif │ │ │ ├── life.c │ │ │ ├── life.dlg │ │ │ ├── life.h │ │ │ ├── life.ico │ │ │ ├── life.mif │ │ │ ├── life.rc │ │ │ ├── line.lif │ │ │ ├── menu.bmp │ │ │ ├── menu.h │ │ │ ├── mouse.c │ │ │ ├── palette.c │ │ │ ├── palette.h │ │ │ ├── patterns.c │ │ │ ├── pingpong.lif │ │ │ ├── puffer.lif │ │ │ ├── quad.lif │ │ │ ├── round.bmp │ │ │ ├── rules.h │ │ │ ├── seed1.lif │ │ │ ├── seed2.lif │ │ │ ├── seed3.lif │ │ │ ├── seed4.lif │ │ │ ├── swengine.lif │ │ │ ├── timer.c │ │ │ ├── triple.lif │ │ │ ├── watcom.bmp │ │ │ ├── win16 │ │ │ │ ├── life.tgt │ │ │ │ ├── life.wpj │ │ │ │ └── makefile │ │ │ ├── win32 │ │ │ │ ├── life.tgt │ │ │ │ ├── life.wpj │ │ │ │ └── makefile │ │ │ ├── win386 │ │ │ │ ├── life.tgt │ │ │ │ ├── life.wpj │ │ │ │ └── makefile │ │ │ ├── winaxp │ │ │ │ └── makefile │ │ │ └── zig.lif │ │ ├── master.mif │ │ ├── mswin.wpj │ │ ├── read.me │ │ ├── shootgal │ │ │ ├── bolt.ico │ │ │ ├── gun.cur │ │ │ ├── keyboard.ico │ │ │ ├── mouse.ico │ │ │ ├── scroll.ico │ │ │ ├── shootgal.c │ │ │ ├── shootgal.h │ │ │ ├── shootgal.ico │ │ │ ├── shootgal.mif │ │ │ ├── shootgal.rc │ │ │ ├── target.bmp │ │ │ ├── timer.ico │ │ │ ├── win16 │ │ │ │ ├── makefile │ │ │ │ ├── shootgal.tgt │ │ │ │ └── shootgal.wpj │ │ │ ├── win32 │ │ │ │ ├── makefile │ │ │ │ ├── shootgal.tgt │ │ │ │ └── shootgal.wpj │ │ │ ├── win386 │ │ │ │ ├── makefile │ │ │ │ ├── shootgal.tgt │ │ │ │ └── shootgal.wpj │ │ │ └── winaxp │ │ │ │ └── makefile │ │ ├── watzee │ │ │ ├── dice1.bmp │ │ │ ├── dice2.bmp │ │ │ ├── dice3.bmp │ │ │ ├── dice4.bmp │ │ │ ├── dice5.bmp │ │ │ ├── dice6.bmp │ │ │ ├── watzee.c │ │ │ ├── watzee.h │ │ │ ├── watzee.ico │ │ │ ├── watzee.mif │ │ │ ├── watzee.rc │ │ │ ├── wdice.c │ │ │ ├── wdlg.c │ │ │ ├── wdraw.c │ │ │ ├── wfont.c │ │ │ ├── wglobal.c │ │ │ ├── win16 │ │ │ │ ├── makefile │ │ │ │ ├── watzee.tgt │ │ │ │ └── watzee.wpj │ │ │ ├── win32 │ │ │ │ ├── makefile │ │ │ │ ├── watzee.tgt │ │ │ │ └── watzee.wpj │ │ │ ├── win386 │ │ │ │ ├── makefile │ │ │ │ ├── watzee.tgt │ │ │ │ └── watzee.wpj │ │ │ ├── winaxp │ │ │ │ └── makefile │ │ │ └── wpc.c │ │ └── win1632.h │ └── win32 │ │ ├── miniwdm │ │ ├── app │ │ │ ├── devio.c │ │ │ └── makefile │ │ ├── boxioctl.h │ │ ├── dev │ │ │ ├── boxdev.inf │ │ │ ├── boxdev.rc │ │ │ ├── makefile │ │ │ └── wdmdev.c │ │ └── readme.txt │ │ └── videomp │ │ ├── boxv.c │ │ ├── boxv.h │ │ ├── boxv_io.h │ │ ├── disk1 │ │ ├── makefile │ │ ├── oemsetup.inf │ │ ├── readme.txt │ │ ├── videomp.c │ │ ├── videomp.h │ │ ├── videomp.rc │ │ ├── vidmini.inf │ │ └── vidmpdat.c ├── ssl │ ├── boot.ctl │ ├── bootmake │ ├── c │ │ ├── ssl.c │ │ ├── ssldecl.c │ │ ├── sslgen.c │ │ ├── sslrule.c │ │ └── sslsym.c │ ├── dos386 │ │ └── makefile │ ├── h │ │ ├── ssl.h │ │ ├── sslint.h │ │ └── sslops.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── prereq.ctl │ └── test │ │ ├── two.ssl │ │ ├── x.ssl │ │ └── y.ssl ├── techinfo │ ├── dosi86 │ │ └── makefile │ ├── lang.ctl │ ├── master.mif │ ├── monint.c │ ├── ndptype.asm │ ├── os2i86 │ │ └── makefile │ ├── pbus.asm │ ├── pprefix.asm │ ├── ptype.asm │ └── techinfo.c ├── trap │ ├── c │ │ └── mkstr.c │ ├── common │ │ ├── dbgstr.c │ │ ├── dos │ │ │ ├── dosequip.h │ │ │ ├── dosnoth.c │ │ │ ├── dosstrt.asm │ │ │ └── dostrio.c │ │ ├── linux │ │ │ ├── lnxnoth.c │ │ │ ├── lnxstrt.c │ │ │ └── lnxtrio.c │ │ ├── mxutil.c │ │ ├── nlm │ │ │ ├── libcstrt.c │ │ │ ├── nlmnoth.c │ │ │ ├── nlmstrt.c │ │ │ ├── nlmtrio.c │ │ │ ├── trap.imp │ │ │ └── traplibc.imp │ │ ├── nt │ │ │ ├── ntnoth.c │ │ │ ├── ntstrt.c │ │ │ ├── ntstub.c │ │ │ └── nttrio.c │ │ ├── nto │ │ │ ├── ntonoth.c │ │ │ ├── ntostrt.c │ │ │ └── ntotrio.c │ │ ├── os2 │ │ │ ├── os2noth.c │ │ │ ├── os2strt.c │ │ │ └── os2trio.c │ │ ├── os2v2 │ │ │ ├── os2noth2.c │ │ │ ├── os2strt2.c │ │ │ └── os2trio2.c │ │ ├── packet.c │ │ ├── packet.h │ │ ├── qnx │ │ │ ├── qnxnoth.c │ │ │ ├── qnxstrt.c │ │ │ └── qnxtrio.c │ │ ├── rdos │ │ │ ├── rdosnoth.c │ │ │ ├── rdosstrt.c │ │ │ ├── rdosstub.c │ │ │ └── rdostrio.c │ │ ├── remote.c │ │ ├── serv.c │ │ ├── servacc.c │ │ ├── servcmd.c │ │ ├── testcli.c │ │ ├── testlink.h │ │ ├── testserv.c │ │ ├── teststub.c │ │ ├── trapdbg.h │ │ ├── win │ │ │ ├── bug.ico │ │ │ ├── winmain.c │ │ │ ├── winnoth.c │ │ │ ├── winserv.h │ │ │ ├── winserv.rc │ │ │ ├── winstrt.c │ │ │ ├── winstub.c │ │ │ ├── winsupp.c │ │ │ ├── wintrio.c │ │ │ └── zapant.ico │ │ ├── winserv.ico │ │ ├── winsrv30.ico │ │ ├── wserver.c │ │ ├── wserver.h │ │ └── wserver.rc │ ├── dqv │ │ ├── asm │ │ │ └── api1.asm │ │ ├── c │ │ │ ├── api2.c │ │ │ ├── dqvlink.c │ │ │ └── servname.c │ │ └── h │ │ │ ├── dvapi.h │ │ │ └── dvapi.inc │ ├── files.dat │ ├── h │ │ ├── trap.msg │ │ └── trperr.h │ ├── lang.ctl │ ├── lcl │ │ ├── asm │ │ │ ├── misc7086.asm │ │ │ └── misc7386.asm │ │ ├── c │ │ │ ├── core.c │ │ │ ├── supp.c │ │ │ └── x86cpu.c │ │ ├── dos │ │ │ ├── asm │ │ │ │ └── fork.asm │ │ │ ├── c │ │ │ │ ├── doschk.c │ │ │ │ ├── dosenv.c │ │ │ │ ├── dosexc.c │ │ │ │ ├── dosfile.c │ │ │ │ ├── dosflip.c │ │ │ │ ├── dosredir.c │ │ │ │ ├── dosrfx.c │ │ │ │ └── dossplit.c │ │ │ ├── dos.mif │ │ │ ├── dosr │ │ │ │ ├── asm │ │ │ │ │ ├── dbgtrap.asm │ │ │ │ │ ├── dumtrap.asm │ │ │ │ │ ├── realtrap.asm │ │ │ │ │ └── trap.asm │ │ │ │ ├── c │ │ │ │ │ ├── dosacc.c │ │ │ │ │ └── dosovl.c │ │ │ │ ├── dos.std │ │ │ │ │ └── makefile │ │ │ │ ├── dosr.mif │ │ │ │ └── h │ │ │ │ │ └── traps.inc │ │ │ ├── dosx │ │ │ │ ├── ads │ │ │ │ │ ├── asm │ │ │ │ │ │ └── adsintr.asm │ │ │ │ │ ├── c │ │ │ │ │ │ └── adsacc.c │ │ │ │ │ ├── dos.srv │ │ │ │ │ │ └── makefile │ │ │ │ │ └── dos.trp │ │ │ │ │ │ └── makefile │ │ │ │ ├── asm │ │ │ │ │ ├── dosxfork.asm │ │ │ │ │ └── dosxjump.asm │ │ │ │ ├── c │ │ │ │ │ ├── dosxlink.c │ │ │ │ │ ├── dosxremo.c │ │ │ │ │ ├── dosxrmod.c │ │ │ │ │ ├── dosxserv.c │ │ │ │ │ ├── dosxstub.c │ │ │ │ │ └── dosxtrio.c │ │ │ │ ├── cw │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── autolock.asm │ │ │ │ │ │ └── cwintr.asm │ │ │ │ │ ├── c │ │ │ │ │ │ └── cwacc.c │ │ │ │ │ ├── dos.srv │ │ │ │ │ │ ├── cwhelp.cfg │ │ │ │ │ │ └── makefile │ │ │ │ │ └── dos.trp │ │ │ │ │ │ └── makefile │ │ │ │ ├── dosx.mif │ │ │ │ ├── pls │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── plsintr.asm │ │ │ │ │ │ └── plsord.asm │ │ │ │ │ ├── c │ │ │ │ │ │ └── plsacc.c │ │ │ │ │ ├── dos.srv │ │ │ │ │ │ └── makefile │ │ │ │ │ ├── dos.trp │ │ │ │ │ │ └── makefile │ │ │ │ │ └── dosped.srv │ │ │ │ │ │ └── makefile │ │ │ │ └── rsi │ │ │ │ │ ├── c │ │ │ │ │ └── rsiacc.c │ │ │ │ │ ├── dos.srv │ │ │ │ │ └── makefile │ │ │ │ │ └── dos.trp │ │ │ │ │ └── makefile │ │ │ └── h │ │ │ │ ├── dosmsgs.h │ │ │ │ ├── dosredir.h │ │ │ │ ├── dosver.h │ │ │ │ ├── drset.h │ │ │ │ └── winchk.h │ │ ├── elfcore │ │ │ ├── c │ │ │ │ ├── core_fbsd.c │ │ │ │ ├── core_nto.c │ │ │ │ ├── coremisc.c │ │ │ │ └── elfcore.c │ │ │ ├── h │ │ │ │ ├── core_fbsd.h │ │ │ │ ├── core_nto.h │ │ │ │ └── elfcore.h │ │ │ ├── linux386 │ │ │ │ └── makefile │ │ │ ├── nt386 │ │ │ │ └── makefile │ │ │ └── os2386 │ │ │ │ └── makefile │ │ ├── h │ │ │ ├── ioports.h │ │ │ ├── misc7086.h │ │ │ ├── misc7386.h │ │ │ └── x86cpu.h │ │ ├── jvm │ │ │ ├── c │ │ │ │ ├── acclcl.c │ │ │ │ ├── jvmacc.c │ │ │ │ ├── jvminfo.c │ │ │ │ ├── jvmxlink.c │ │ │ │ ├── jvmxremo.c │ │ │ │ ├── jvmxserv.c │ │ │ │ ├── jvmxstub.c │ │ │ │ └── jvmxtrio.c │ │ │ ├── h │ │ │ │ ├── javaname.h │ │ │ │ ├── jvmepick.h │ │ │ │ └── jvmerr.h │ │ │ ├── jvm.mif │ │ │ ├── nt.srv │ │ │ │ ├── jvmhelp.java │ │ │ │ └── makefile │ │ │ └── nt.trp │ │ │ │ └── makefile │ │ ├── lcl.mif │ │ ├── linux │ │ │ ├── boot.ctl │ │ │ ├── bootmake │ │ │ ├── c │ │ │ │ ├── lnxacc.c │ │ │ │ ├── lnxcomm.c │ │ │ │ ├── lnxcore.c │ │ │ │ ├── lnxfile.c │ │ │ │ ├── lnxmap.c │ │ │ │ ├── lnxmips.c │ │ │ │ ├── lnxppc.c │ │ │ │ ├── lnxutl.c │ │ │ │ └── lnxx86.c │ │ │ ├── core386 │ │ │ │ └── makefile │ │ │ ├── h │ │ │ │ └── lnxcomm.h │ │ │ ├── std │ │ │ │ └── makefile │ │ │ └── trap.mif │ │ ├── msj │ │ │ ├── c │ │ │ │ ├── acclcl.c │ │ │ │ ├── control.cpp │ │ │ │ ├── guid.cpp │ │ │ │ ├── msjacc.c │ │ │ │ ├── msjinfo.c │ │ │ │ ├── msjutil.c │ │ │ │ └── readwr.cpp │ │ │ ├── h │ │ │ │ ├── control.h │ │ │ │ ├── dipshim.h │ │ │ │ ├── jdbgguid.h │ │ │ │ ├── msjepick.h │ │ │ │ ├── msjerr.h │ │ │ │ ├── msjutil.h │ │ │ │ ├── msjvdbg.h │ │ │ │ ├── msvmutil.h │ │ │ │ ├── olemap.hpp │ │ │ │ └── readwr.h │ │ │ └── msj.mif │ │ ├── nlm │ │ │ ├── asm │ │ │ │ └── nlmintr.asm │ │ │ ├── c │ │ │ │ ├── nlmacc.c │ │ │ │ ├── nlmclib.c │ │ │ │ ├── nlmfile.c │ │ │ │ └── nlmio.c │ │ │ ├── h │ │ │ │ ├── debugme.h │ │ │ │ ├── nlmport.h │ │ │ │ └── nw3to4.h │ │ │ └── trap.mif │ │ ├── nt │ │ │ ├── c │ │ │ │ ├── accbrwat.c │ │ │ │ ├── accenv.c │ │ │ │ ├── accfinfo.c │ │ │ │ ├── accio.c │ │ │ │ ├── accload.c │ │ │ │ ├── accmap.c │ │ │ │ ├── accmem.c │ │ │ │ ├── accmisc.c │ │ │ │ ├── accredir.c │ │ │ │ ├── accregs.c │ │ │ │ ├── accrun.c │ │ │ │ ├── dbgthrd.c │ │ │ │ ├── globals.c │ │ │ │ ├── misc.c │ │ │ │ ├── peread.c │ │ │ │ ├── supphdlr.c │ │ │ │ ├── task.c │ │ │ │ └── thread.c │ │ │ ├── h │ │ │ │ ├── globals.h │ │ │ │ └── stdnt.h │ │ │ ├── std │ │ │ │ └── makefile │ │ │ └── stdaxp │ │ │ │ └── makefile │ │ ├── nto │ │ │ ├── c │ │ │ │ ├── ntoacc.c │ │ │ │ ├── ntocomm.c │ │ │ │ ├── ntofile.c │ │ │ │ ├── ntomap.c │ │ │ │ └── ntoutl.c │ │ │ ├── h │ │ │ │ └── ntocomm.h │ │ │ ├── std │ │ │ │ └── makefile │ │ │ └── trap.mif │ │ ├── os2 │ │ │ ├── asm │ │ │ │ ├── loadstd.asm │ │ │ │ ├── os2call.asm │ │ │ │ └── os2v2hlp.asm │ │ │ ├── c │ │ │ │ ├── accmisc.c │ │ │ │ ├── dbgthrd.c │ │ │ │ ├── os2conv.c │ │ │ │ ├── os2rfx.c │ │ │ │ ├── os2v1acc.c │ │ │ │ ├── os2v2acc.c │ │ │ │ ├── pgmexec.c │ │ │ │ ├── pmdbg.c │ │ │ │ ├── pmhelp.c │ │ │ │ ├── pmhook.c │ │ │ │ ├── pmlock.c │ │ │ │ └── softmode.c │ │ │ ├── h │ │ │ │ ├── dosdebug.h │ │ │ │ ├── os2err.h │ │ │ │ ├── os2trap.h │ │ │ │ ├── os2v2acc.h │ │ │ │ ├── pmdbg.rc │ │ │ │ ├── pmhelp.rc │ │ │ │ ├── pmhook.h │ │ │ │ ├── softmode.h │ │ │ │ └── wdpmhelp.h │ │ │ ├── os2v2hlp │ │ │ │ └── makefile │ │ │ ├── std16 │ │ │ │ └── makefile │ │ │ ├── std32 │ │ │ │ └── makefile │ │ │ ├── test │ │ │ │ ├── dbg.c │ │ │ │ ├── dbg.lnk │ │ │ │ ├── locker.h │ │ │ │ ├── mktest.bat │ │ │ │ ├── mktest.cmd │ │ │ │ ├── pmdbg.c │ │ │ │ ├── pmdbg.h │ │ │ │ ├── pmdbg.ico │ │ │ │ ├── pmdbg.lnk │ │ │ │ ├── pmdbg.rc │ │ │ │ ├── testlock.c │ │ │ │ └── testmak │ │ │ └── wvpmhelp │ │ │ │ └── makefile │ │ ├── os2v2 │ │ │ ├── asm │ │ │ │ ├── loadhelp.asm │ │ │ │ └── os2call.asm │ │ │ ├── c │ │ │ │ ├── accmisc.c │ │ │ │ ├── coremisc.c │ │ │ │ ├── dbgthrd.c │ │ │ │ ├── os2conv.c │ │ │ │ ├── os2rfx.c │ │ │ │ ├── os2v2acc.c │ │ │ │ ├── pgmexec.c │ │ │ │ ├── pmdbg.c │ │ │ │ ├── pmhelp.c │ │ │ │ ├── pmhook.c │ │ │ │ ├── pmlock.c │ │ │ │ ├── softmode.c │ │ │ │ └── splice.c │ │ │ ├── core │ │ │ │ └── makefile │ │ │ ├── h │ │ │ │ ├── dosdebug.h │ │ │ │ ├── mon.h │ │ │ │ ├── os2err.h │ │ │ │ ├── os2trap.h │ │ │ │ ├── os2v2acc.h │ │ │ │ ├── pmdbg.rc │ │ │ │ ├── pmhelp.rc │ │ │ │ ├── pmhook.h │ │ │ │ ├── softmode.h │ │ │ │ ├── splice.h │ │ │ │ └── wdpmhelp.h │ │ │ ├── splice │ │ │ │ └── makefile │ │ │ ├── std │ │ │ │ └── makefile │ │ │ ├── test │ │ │ │ ├── dbg.c │ │ │ │ ├── dbg.lnk │ │ │ │ ├── locker.h │ │ │ │ ├── mktest.bat │ │ │ │ ├── mktest.cmd │ │ │ │ ├── pmdbg.c │ │ │ │ ├── pmdbg.h │ │ │ │ ├── pmdbg.ico │ │ │ │ ├── pmdbg.lnk │ │ │ │ ├── pmdbg.rc │ │ │ │ ├── testlock.c │ │ │ │ └── testmak │ │ │ └── wvpmhelp │ │ │ │ └── makefile │ │ ├── qnx │ │ │ ├── c │ │ │ │ ├── qnxacc.c │ │ │ │ ├── qnxcomm.c │ │ │ │ ├── qnxfile.c │ │ │ │ └── qnxpmd.c │ │ │ ├── h │ │ │ │ └── qnxcomm.h │ │ │ ├── pmd │ │ │ │ └── makefile │ │ │ └── std │ │ │ │ └── makefile │ │ ├── rdos │ │ │ ├── c │ │ │ │ ├── accasync.c │ │ │ │ ├── accbrwat.c │ │ │ │ ├── accenv.c │ │ │ │ ├── accfinfo.c │ │ │ │ ├── accio.c │ │ │ │ ├── accload.c │ │ │ │ ├── accmap.c │ │ │ │ ├── accmem.c │ │ │ │ ├── accmisc.c │ │ │ │ ├── accredir.c │ │ │ │ ├── accregs.c │ │ │ │ ├── accrtrd.c │ │ │ │ ├── accrun.c │ │ │ │ ├── debug.c │ │ │ │ ├── globals.c │ │ │ │ ├── supphdlr.c │ │ │ │ └── task.c │ │ │ ├── h │ │ │ │ ├── debug.h │ │ │ │ ├── globals.h │ │ │ │ └── stdrdos.h │ │ │ └── std │ │ │ │ └── makefile │ │ └── win │ │ │ ├── asm │ │ │ ├── asynch.asm │ │ │ ├── entries.asm │ │ │ ├── int.asm │ │ │ ├── int32.asm │ │ │ └── misc.asm │ │ │ ├── c │ │ │ ├── accbrwat.c │ │ │ ├── accgen.c │ │ │ ├── accload.c │ │ │ ├── accmap.c │ │ │ ├── accmisc.c │ │ │ ├── accredir.c │ │ │ ├── accregs.c │ │ │ ├── accrun.c │ │ │ ├── asyhook.c │ │ │ ├── dbgeemsg.c │ │ │ ├── dbghook.c │ │ │ ├── dbgrmsg.c │ │ │ ├── fault.c │ │ │ ├── globals.c │ │ │ ├── initfini.c │ │ │ ├── intmain.c │ │ │ ├── ints.c │ │ │ ├── mem.c │ │ │ ├── notify.c │ │ │ ├── out.c │ │ │ └── wgod.c │ │ │ ├── h │ │ │ ├── stdwin.h │ │ │ ├── winacc.h │ │ │ └── winerr.h │ │ │ ├── int32 │ │ │ └── makefile │ │ │ └── std │ │ │ └── makefile │ ├── master.mif │ ├── net │ │ ├── c │ │ │ ├── netlink.c │ │ │ ├── options.c │ │ │ └── servname.c │ │ ├── dos.srv │ │ │ └── makefile │ │ ├── dos.trp │ │ │ └── makefile │ │ ├── h │ │ │ ├── options.dlg │ │ │ ├── options.h │ │ │ └── wnetbios.h │ │ ├── nt.srv │ │ │ └── makefile │ │ ├── nt.trp │ │ │ └── makefile │ │ ├── os2.srv │ │ │ └── makefile │ │ ├── os2.trp │ │ │ └── makefile │ │ ├── os2v2.srv │ │ │ └── makefile │ │ ├── os2v2.trp │ │ │ └── makefile │ │ ├── win.srv │ │ │ └── makefile │ │ └── win.trp │ │ │ └── makefile │ ├── nmp │ │ ├── c │ │ │ ├── nmpbind.c │ │ │ ├── nmpdos.c │ │ │ ├── nmplink.c │ │ │ ├── nmpnov.c │ │ │ ├── nmpnt.c │ │ │ ├── nmpos2.c │ │ │ ├── nmpos22.c │ │ │ ├── options.c │ │ │ └── servname.c │ │ ├── dos.srv │ │ │ └── makefile │ │ ├── dos.trp │ │ │ └── makefile │ │ ├── h │ │ │ ├── namepipe.h │ │ │ ├── nmp.h │ │ │ ├── options.dlg │ │ │ └── options.h │ │ ├── nmpbind │ │ │ └── makefile │ │ ├── nt.trp │ │ │ └── makefile │ │ ├── os2.srv │ │ │ └── makefile │ │ ├── os2.trp │ │ │ └── makefile │ │ ├── os2v2.srv │ │ │ └── makefile │ │ ├── os2v2.trp │ │ │ └── makefile │ │ ├── win.srv │ │ │ └── makefile │ │ └── win.trp │ │ │ └── makefile │ ├── nov │ │ ├── asm │ │ │ ├── ipx.asm │ │ │ └── spx.asm │ │ ├── c │ │ │ ├── novdos.c │ │ │ ├── novlink.c │ │ │ ├── novnlm.c │ │ │ ├── novnt.c │ │ │ ├── novos2.c │ │ │ ├── options.c │ │ │ └── servname.c │ │ ├── dos.srv │ │ │ └── makefile │ │ ├── dos.trp │ │ │ └── makefile │ │ ├── h │ │ │ ├── ipxstuff.h │ │ │ ├── nitipx.h │ │ │ ├── options.dlg │ │ │ └── options.h │ │ ├── nlm3.srv │ │ │ └── makefile │ │ ├── nlm4.srv │ │ │ └── makefile │ │ ├── nt.srv │ │ │ └── makefile │ │ ├── nt.trp │ │ │ └── makefile │ │ ├── ntaxp.srv │ │ │ └── makefile │ │ ├── ntaxp.trp │ │ │ └── makefile │ │ ├── os2.srv │ │ │ └── makefile │ │ ├── os2.trp │ │ │ └── makefile │ │ ├── win.srv │ │ │ └── makefile │ │ └── win.trp │ │ │ └── makefile │ ├── par │ │ ├── asm │ │ │ └── portacc.asm │ │ ├── c │ │ │ ├── dbginst.c │ │ │ ├── dbgport.c │ │ │ ├── options.c │ │ │ ├── pardos.c │ │ │ ├── parlink.c │ │ │ ├── parlinux.c │ │ │ ├── parnlm.c │ │ │ ├── parnt.c │ │ │ ├── paros2.c │ │ │ ├── paros22.c │ │ │ ├── parpls.c │ │ │ ├── parqnx.c │ │ │ ├── parwin.c │ │ │ ├── parwsupp.c │ │ │ ├── portos2.c │ │ │ ├── portwin.c │ │ │ └── servname.c │ │ ├── dos.srv │ │ │ └── makefile │ │ ├── dos.trp │ │ │ └── makefile │ │ ├── h │ │ │ ├── dbgioctl.h │ │ │ ├── dosequip.h │ │ │ ├── options.dlg │ │ │ └── options.h │ │ ├── linux.srv │ │ │ └── makefile │ │ ├── linux.trp │ │ │ └── makefile │ │ ├── nlm3.srv │ │ │ └── makefile │ │ ├── nlm4.srv │ │ │ └── makefile │ │ ├── nt.srv │ │ │ └── makefile │ │ ├── nt.trp │ │ │ └── makefile │ │ ├── ntsupp │ │ │ ├── dbgport.sys │ │ │ └── makefile │ │ ├── ntsuppow │ │ │ └── makefile │ │ ├── os2.mif │ │ ├── os2.srv │ │ │ └── makefile │ │ ├── os2.trp │ │ │ └── makefile │ │ ├── os2io.mif │ │ ├── os2v2.mif │ │ ├── os2v2.pio │ │ │ ├── makefile │ │ │ └── wdio.c │ │ ├── os2v2.srv │ │ │ └── makefile │ │ ├── os2v2.trp │ │ │ └── makefile │ │ ├── qnx.srv │ │ │ ├── makefile │ │ │ └── par.use │ │ ├── qnx.trp │ │ │ └── makefile │ │ ├── win.srv │ │ │ └── makefile │ │ └── win.trp │ │ │ └── makefile │ ├── remote.mif │ ├── ser │ │ ├── asm │ │ │ ├── novintr.asm │ │ │ └── serint.asm │ │ ├── c │ │ │ ├── busywait.c │ │ │ ├── serdos.c │ │ │ ├── serialio.c │ │ │ ├── serlink.c │ │ │ ├── sernlm.c │ │ │ ├── sernt.c │ │ │ ├── seros2.c │ │ │ ├── seros22.c │ │ │ ├── serqnx.c │ │ │ ├── serrdos.c │ │ │ └── servname.c │ │ ├── dos.srv │ │ │ └── makefile │ │ ├── dos.trp │ │ │ └── makefile │ │ ├── h │ │ │ └── serial.h │ │ ├── nlm3.srv │ │ │ └── makefile │ │ ├── nlm4.srv │ │ │ └── makefile │ │ ├── nt.srv │ │ │ └── makefile │ │ ├── nt.trp │ │ │ └── makefile │ │ ├── os2.srv │ │ │ └── makefile │ │ ├── os2.trp │ │ │ └── makefile │ │ ├── os2v2.srv │ │ │ └── makefile │ │ ├── os2v2.trp │ │ │ └── makefile │ │ ├── qnx.srv │ │ │ ├── makefile │ │ │ └── ser.use │ │ ├── qnx.trp │ │ │ └── makefile │ │ └── rdos.srv │ │ │ └── makefile │ ├── serv.mif │ ├── tcp │ │ ├── c │ │ │ ├── options.c │ │ │ ├── qtcpsupp.c │ │ │ ├── servname.c │ │ │ └── tcplink.c │ │ ├── dos.srv │ │ │ └── makefile │ │ ├── dos.trp │ │ │ └── makefile │ │ ├── h │ │ │ ├── ifi.h │ │ │ ├── novhax.h │ │ │ ├── options.dlg │ │ │ └── options.h │ │ ├── linux.srv │ │ │ └── makefile │ │ ├── linux.trp │ │ │ └── makefile │ │ ├── linuxmips.bts │ │ │ └── makefile │ │ ├── linuxmips.ow │ │ │ └── makefile │ │ ├── linuxppc.bts │ │ │ └── makefile │ │ ├── nlm5.srv │ │ │ └── makefile │ │ ├── nt.srv │ │ │ └── makefile │ │ ├── nt.trp │ │ │ └── makefile │ │ ├── ntaxp.srv │ │ │ └── makefile │ │ ├── ntaxp.trp │ │ │ └── makefile │ │ ├── nto.bts │ │ │ └── makefile │ │ ├── nto.srv │ │ │ └── makefile │ │ ├── os2.srv │ │ │ └── makefile │ │ ├── os2.trp │ │ │ └── makefile │ │ ├── os2v2.srv │ │ │ └── makefile │ │ ├── os2v2.trp │ │ │ └── makefile │ │ ├── qnx.srv │ │ │ ├── makefile │ │ │ └── tcp.use │ │ ├── qnx.trp │ │ │ └── makefile │ │ ├── rdos.srv │ │ │ └── makefile │ │ ├── win.srv │ │ │ └── makefile │ │ └── win.trp │ │ │ └── makefile │ ├── trap.mif │ ├── vdm │ │ ├── c │ │ │ ├── options.c │ │ │ ├── servname.c │ │ │ ├── vdmcli.c │ │ │ ├── vdmcli2.c │ │ │ ├── vdmclint.c │ │ │ ├── vdmlink.c │ │ │ └── vdmserv.c │ │ ├── dos.srv │ │ │ └── makefile │ │ ├── h │ │ │ ├── namepipe.h │ │ │ ├── options.dlg │ │ │ ├── options.h │ │ │ └── vdm.h │ │ ├── nt.trp │ │ │ └── makefile │ │ ├── os2.trp │ │ │ └── makefile │ │ ├── os2v2.trp │ │ │ └── makefile │ │ └── win.srv │ │ │ └── makefile │ └── win │ │ ├── c │ │ ├── servname.c │ │ └── winlink.c │ │ ├── dos.srv │ │ └── makefile │ │ └── dos.trp │ │ └── makefile ├── trmem │ ├── lang.ctl │ ├── omf │ │ └── makefile │ ├── read.me │ ├── trmem.c │ ├── trmem.h │ ├── trmemcpp.cpp │ ├── trmemcvr.c │ └── trmemcvr.h ├── ui │ ├── boot.ctl │ ├── c │ │ ├── sampdial.c │ │ ├── sample.c │ │ ├── samplew.c │ │ ├── uialloc.c │ │ ├── uiarea.c │ │ ├── uiattr.c │ │ ├── uiback.c │ │ ├── uiballoc.c │ │ ├── uiband.c │ │ ├── uibarf.c │ │ ├── uibattr.c │ │ ├── uibcopy.c │ │ ├── uibfake.c │ │ ├── uibfill.c │ │ ├── uibgnd.c │ │ ├── uiblank.c │ │ ├── uibox.c │ │ ├── uibpix.c │ │ ├── uibstr.c │ │ ├── uicheck.c │ │ ├── uichlen.c │ │ ├── uiconfig.c │ │ ├── uidata.c │ │ ├── uidchfld.c │ │ ├── uidebug.c │ │ ├── uidevent.c │ │ ├── uidialcb.c │ │ ├── uidialog.c │ │ ├── uidirty.c │ │ ├── uidlgfcn.c │ │ ├── uiev.c │ │ ├── uifar.c │ │ ├── uifmem.c │ │ ├── uiforce.c │ │ ├── uigadget.c │ │ ├── uigchar.c │ │ ├── uihotspt.c │ │ ├── uiinit.c │ │ ├── uiledit.c │ │ ├── uilist.c │ │ ├── uilstbox.c │ │ ├── uimem.c │ │ ├── uimenu.c │ │ ├── uimenucr.c │ │ ├── uimget.c │ │ ├── uimisc.c │ │ ├── uimousev.c │ │ ├── uipad.c │ │ ├── uipget.c │ │ ├── uipopup.c │ │ ├── uiprot.c │ │ ├── uirefer.c │ │ ├── uirfrsh.c │ │ ├── uitab.c │ │ ├── uivattr.c │ │ ├── uivedit.c │ │ ├── uivfill.c │ │ ├── uivfld.c │ │ ├── uivhide.c │ │ ├── uivline.c │ │ ├── uivmove.c │ │ ├── uivopen.c │ │ ├── uivscrn.c │ │ ├── uivstr.c │ │ ├── uivutil.c │ │ ├── uiwin.c │ │ └── uiyield.c │ ├── cgui.doc │ ├── cguipp.c │ ├── dos │ │ ├── c │ │ │ ├── charmap.c │ │ │ ├── gmouse.c │ │ │ ├── uibios.c │ │ │ ├── uibmous.c │ │ │ ├── uicurs.c │ │ │ ├── uicurshk.c │ │ │ ├── uiget.c │ │ │ ├── uihook.c │ │ │ ├── uikeyb.c │ │ │ ├── uimapch.c │ │ │ ├── uimous.c │ │ │ ├── uisnow.c │ │ │ ├── uispawn.c │ │ │ └── uiutil.c │ │ ├── dos.mif │ │ ├── dos386 │ │ │ └── makefile │ │ ├── dosi86 │ │ │ └── makefile │ │ └── h │ │ │ ├── biosui.h │ │ │ └── charmap.h │ ├── h │ │ ├── stdui.h │ │ ├── uiattrs.h │ │ ├── uibox.h │ │ ├── uichars.h │ │ ├── uidebug.h │ │ ├── uidef.h │ │ ├── uidialog.h │ │ ├── uidos.h │ │ ├── uiedit.h │ │ ├── uiforce.h │ │ ├── uigadget.h │ │ ├── uigchar.h │ │ ├── uiledit.h │ │ ├── uimenu.h │ │ ├── uimouse.h │ │ ├── uiomenu.h │ │ ├── uishift.h │ │ ├── uitab.h │ │ ├── uivedit.h │ │ └── uivfld.h │ ├── lang.ctl │ ├── nlm │ │ ├── c │ │ │ ├── uibios.c │ │ │ ├── uibmous.c │ │ │ ├── uicurs.c │ │ │ ├── uiget.c │ │ │ ├── uikeyb.c │ │ │ ├── uimous.c │ │ │ ├── uiscrnam.c │ │ │ ├── uisnow.c │ │ │ ├── uispawn.c │ │ │ └── uiyield.c │ │ ├── h │ │ │ └── uinlm.h │ │ ├── nov.mif │ │ ├── nov386 │ │ │ └── makefile │ │ └── uinlm.imp │ ├── nt │ │ ├── c │ │ │ ├── uibios.c │ │ │ ├── uibmous.c │ │ │ ├── uicurs.c │ │ │ ├── uievent.c │ │ │ ├── uiget.c │ │ │ ├── uisnow.c │ │ │ └── uispawn.c │ │ ├── nt.mif │ │ ├── nt386 │ │ │ └── makefile │ │ └── ntaxp │ │ │ └── makefile │ ├── os2 │ │ ├── c │ │ │ ├── uibios.c │ │ │ ├── uibmous.c │ │ │ ├── uicurs.c │ │ │ ├── uiget.c │ │ │ ├── uikeyb.c │ │ │ ├── uimous.c │ │ │ ├── uisnow.c │ │ │ └── uispawn.c │ │ ├── h │ │ │ └── doscall.h │ │ ├── os2.mif │ │ ├── os2386 │ │ │ └── makefile │ │ └── os2i86 │ │ │ └── makefile │ ├── qnx │ │ ├── c │ │ │ ├── buildesc.c │ │ │ ├── cdisp.c │ │ │ ├── cmouse.c │ │ │ ├── ctkeyb.c │ │ │ ├── tdisp.c │ │ │ ├── tixparse.c │ │ │ ├── tixsupp.c │ │ │ ├── tmouse.c │ │ │ ├── trie.c │ │ │ ├── uibios.c │ │ │ ├── uibmous.c │ │ │ ├── uicurs.c │ │ │ ├── uiextrn.c │ │ │ ├── uiget.c │ │ │ ├── uihook.c │ │ │ ├── uikeyb.c │ │ │ ├── uimous.c │ │ │ ├── uiproxy.c │ │ │ ├── uisnow.c │ │ │ ├── uispawn.c │ │ │ └── uivirt.c │ │ ├── h │ │ │ ├── qdebug.h │ │ │ ├── qnxuiext.h │ │ │ ├── stdqnx.h │ │ │ ├── tixparse.h │ │ │ ├── trie.h │ │ │ ├── uiproxy.h │ │ │ └── uivirt.h │ │ ├── qnx.mif │ │ ├── qnx386 │ │ │ └── makefile │ │ ├── qnxi86 │ │ │ └── makefile │ │ └── tix │ │ │ ├── ansi.tix │ │ │ ├── default.tix │ │ │ ├── qnx.tix │ │ │ └── template.tix │ ├── rdos │ │ ├── c │ │ │ ├── uibios.c │ │ │ ├── uibmous.c │ │ │ ├── uicurs.c │ │ │ ├── uievent.c │ │ │ ├── uiget.c │ │ │ ├── uisnow.c │ │ │ └── uispawn.c │ │ ├── rdos.mif │ │ └── rdos386 │ │ │ └── makefile │ ├── ui.mif │ ├── unix │ │ ├── bootmake │ │ ├── c │ │ │ ├── ctkeyb.c │ │ │ ├── ctkeyb2.c │ │ │ ├── kbwait.c │ │ │ ├── tdisp.c │ │ │ ├── tixparse.c │ │ │ ├── tixsupp.c │ │ │ ├── tmouse.c │ │ │ ├── trie.c │ │ │ ├── uibios.c │ │ │ ├── uibmous.c │ │ │ ├── uicurs.c │ │ │ ├── uiextrn.c │ │ │ ├── uiget.c │ │ │ ├── uihook.c │ │ │ ├── uikeyb.c │ │ │ ├── uimous.c │ │ │ ├── uisnow.c │ │ │ ├── uispawn.c │ │ │ └── uivirt.c │ │ ├── default.tix │ │ ├── h │ │ │ ├── ctkeyb.h │ │ │ ├── qdebug.h │ │ │ ├── qnxuiext.h │ │ │ ├── stdqnx.h │ │ │ ├── tixparse.h │ │ │ ├── trie.h │ │ │ └── uivirt.h │ │ ├── linux386 │ │ │ └── makefile │ │ ├── linuxmps │ │ │ └── makefile │ │ └── objfiles.mk │ ├── unixbld │ └── win │ │ ├── c │ │ ├── uibios.c │ │ ├── uibmous.c │ │ ├── uicurs.c │ │ ├── uiget.c │ │ ├── uikeyb.c │ │ ├── uimous.c │ │ ├── uisnow.c │ │ └── uispawn.c │ │ ├── h │ │ └── biosui.h │ │ ├── win.mif │ │ └── wini86 │ │ └── makefile ├── uiforms │ ├── lang.ctl │ └── util │ │ ├── browse.c │ │ ├── dirui.h │ │ └── makefile ├── uninstal │ ├── appmanif.xml │ ├── exever.rc │ ├── files.dat │ ├── lang.ctl │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── progress.dlg │ ├── progress.h │ ├── uninstal.c │ ├── uninstal.ico │ ├── uninstal.msg │ └── uninstal.rc ├── version │ ├── lang.ctl │ ├── prtver.bat │ ├── read.me │ ├── verdll.c │ └── verimp.c ├── vi │ ├── bind │ │ ├── dos386 │ │ │ └── makefile │ │ ├── dosi86 │ │ │ └── makefile │ │ ├── linux386 │ │ │ └── makefile │ │ ├── linuxmps │ │ │ └── makefile │ │ ├── main.c │ │ ├── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ └── os2386 │ │ │ └── makefile │ ├── c │ │ ├── abandon.c │ │ ├── addstr.c │ │ ├── alias.c │ │ ├── autosave.c │ │ ├── bnddata.c │ │ ├── change.c │ │ ├── cledit.c │ │ ├── clglob.c │ │ ├── clread.c │ │ ├── clset.c │ │ ├── clsubs.c │ │ ├── cmdline.c │ │ ├── cstatus.c │ │ ├── cut.c │ │ ├── dat.c │ │ ├── dc.c │ │ ├── delete.c │ │ ├── dir.c │ │ ├── dirdisp.c │ │ ├── dosdir.c │ │ ├── dotmode.c │ │ ├── editdc.c │ │ ├── editins.c │ │ ├── editmain.c │ │ ├── editmv.c │ │ ├── error.c │ │ ├── ex.c │ │ ├── exappend.c │ │ ├── exdata.c │ │ ├── expandfn.c │ │ ├── expr.c │ │ ├── fcb.c │ │ ├── fcbblock.c │ │ ├── fcbdisk.c │ │ ├── fcbdmp.c │ │ ├── fcbdup.c │ │ ├── fcbems.c │ │ ├── fcbmem.c │ │ ├── fcbmerge.c │ │ ├── fcbsplit.c │ │ ├── fcbswap.c │ │ ├── fcbxmem.c │ │ ├── fcbxmint.c │ │ ├── fcbxms.c │ │ ├── file.c │ │ ├── filelast.c │ │ ├── filemove.c │ │ ├── filenew.c │ │ ├── filesave.c │ │ ├── filestk.c │ │ ├── filter.c │ │ ├── findcmd.c │ │ ├── findrx.c │ │ ├── fini.c │ │ ├── fmatch.c │ │ ├── fts.c │ │ ├── gencfg.c │ │ ├── getautoi.c │ │ ├── getdir.c │ │ ├── getspcmd.c │ │ ├── globals.c │ │ ├── grep.c │ │ ├── help.c │ │ ├── hide.c │ │ ├── hist.c │ │ ├── ide.c │ │ ├── init.c │ │ ├── io.c │ │ ├── key.c │ │ ├── lang.c │ │ ├── linecfb.c │ │ ├── linedel.c │ │ ├── linedisp.c │ │ ├── linefind.c │ │ ├── lineins.c │ │ ├── linemisc.c │ │ ├── linenew.c │ │ ├── linenum.c │ │ ├── lineptr.c │ │ ├── linework.c │ │ ├── lineyank.c │ │ ├── llrtns.c │ │ ├── mapkey.c │ │ ├── mark.c │ │ ├── match.c │ │ ├── mem.c │ │ ├── misc.c │ │ ├── move.c │ │ ├── name.c │ │ ├── op.c │ │ ├── opmove.c │ │ ├── parse.c │ │ ├── parsecl.c │ │ ├── pdata.c │ │ ├── printf.c │ │ ├── rcs.c │ │ ├── readstr.c │ │ ├── regsub.c │ │ ├── replace.c │ │ ├── rxsupp.c │ │ ├── rxwrap.c │ │ ├── samefile.c │ │ ├── savebuf.c │ │ ├── select.c │ │ ├── selrgn.c │ │ ├── shove.c │ │ ├── source.c │ │ ├── srcassgn.c │ │ ├── srccs.c │ │ ├── srcdata.c │ │ ├── srcexpnd.c │ │ ├── srcexpr.c │ │ ├── srcfile.c │ │ ├── srcgen.c │ │ ├── srcgoto.c │ │ ├── srchook.c │ │ ├── srcif.c │ │ ├── srcinp.c │ │ ├── srcnextw.c │ │ ├── srcvar.c │ │ ├── sstyle.c │ │ ├── sstyle_c.c │ │ ├── sstyle_f.c │ │ ├── sstyle_g.c │ │ ├── sstyle_h.c │ │ ├── sstyle_m.c │ │ ├── sstyle_p.c │ │ ├── sstyle_r.c │ │ ├── status.c │ │ ├── tab_e_c.c │ │ ├── tab_hell.c │ │ ├── tags.c │ │ ├── temp.c │ │ ├── time.c │ │ ├── undo.c │ │ ├── undo_do.c │ │ ├── undoclne.c │ │ ├── undostks.c │ │ ├── version.c │ │ ├── wingen.c │ │ ├── word.c │ │ └── xmem.c │ ├── ctags │ │ ├── ctags.c │ │ ├── ctags.h │ │ ├── dos386.lib │ │ │ └── makefile │ │ ├── dos386 │ │ │ └── makefile │ │ ├── dosi86 │ │ │ └── makefile │ │ ├── file.c │ │ ├── globals.c │ │ ├── linux386.lib │ │ │ └── makefile │ │ ├── linux386 │ │ │ └── makefile │ │ ├── master.mif │ │ ├── nt386.lib │ │ │ └── makefile │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp.lib │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386.lib │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── scanasm.c │ │ ├── scanc.c │ │ ├── scanfor.c │ │ └── taglist.c │ ├── ctl │ │ ├── ctltype.h │ │ ├── dos386 │ │ │ └── makefile │ │ ├── dyntpl.h │ │ ├── linux386 │ │ │ └── makefile │ │ ├── linuxppc │ │ │ └── makefile │ │ ├── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── parsectl.c │ │ ├── parsedyn.c │ │ ├── setfs.c │ │ ├── setfs.ctl │ │ ├── setfs.dlg │ │ ├── setfs.dyn │ │ ├── setfs.h │ │ ├── setgen.c │ │ ├── setgen.ctl │ │ ├── setgen.dlg │ │ ├── setgen.dyn │ │ ├── setgen.h │ │ ├── setscr.c │ │ ├── setscr.ctl │ │ ├── setscr.dlg │ │ ├── setscr.h │ │ ├── util.c │ │ └── util.h │ ├── curses │ │ ├── dos.mif │ │ ├── doscmds.c │ │ ├── dosmain.c │ │ ├── dosmouse.c │ │ ├── dossys.c │ │ ├── int.c │ │ └── spawn.c │ ├── dat │ │ ├── awk.dat │ │ ├── basic.dat │ │ ├── bat.dat │ │ ├── bindvi.bat │ │ ├── bindvi.cmd │ │ ├── c.dat │ │ ├── chkout.vi │ │ ├── clibhelp.vi │ │ ├── cmdme.vi │ │ ├── cpp.dat │ │ ├── dbtest.dat │ │ ├── dde.vi │ │ ├── ddecb.vi │ │ ├── ddesinit.vi │ │ ├── debug.cfg │ │ ├── declspec.dat │ │ ├── ed.cfg │ │ ├── edbind.dat │ │ ├── err.vi │ │ ├── errmsg.dat │ │ ├── error.dat │ │ ├── fhelp.vi │ │ ├── fin.vi │ │ ├── forceout.vi │ │ ├── fortran.dat │ │ ├── gml.dat │ │ ├── html.dat │ │ ├── ideact.vi │ │ ├── java.dat │ │ ├── keys.dat │ │ ├── lnum.vi │ │ ├── makefile │ │ ├── mcsel.vi │ │ ├── mcselw.vi │ │ ├── menu.vi │ │ ├── menuwin.vi │ │ ├── mfchelp.vi │ │ ├── mif.dat │ │ ├── mlsel.vi │ │ ├── mlselw.vi │ │ ├── perl.dat │ │ ├── pragma.dat │ │ ├── proc.vi │ │ ├── qall.vi │ │ ├── qh.vi │ │ ├── qh2.vi │ │ ├── rc.dat │ │ ├── rcs.vi │ │ ├── rdme.vi │ │ ├── rdmewin.vi │ │ ├── skel.dat │ │ ├── sql.dat │ │ ├── toggle.vi │ │ ├── tryme.vi │ │ ├── unlock.vi │ │ ├── untitled.vi │ │ ├── user.vi │ │ ├── vchkout.bat │ │ ├── vchkout.cmd │ │ ├── vforcout.bat │ │ ├── vforcout.cmd │ │ ├── videps.mif │ │ ├── vrcs.bat │ │ ├── vrcs.cmd │ │ ├── vunlock.bat │ │ ├── vunlock.cmd │ │ ├── weditor.ini │ │ ├── winbind.dat │ │ ├── winkeys.dat │ │ ├── wml.dat │ │ ├── wqh.vi │ │ ├── wqh2.vi │ │ ├── writeall.vi │ │ ├── writewin.vi │ │ └── wrme.vi │ ├── doc │ │ ├── cmd.hlp │ │ ├── key.hlp │ │ ├── regexp.hlp │ │ ├── script.hlp │ │ ├── set.hlp │ │ └── start.hlp │ ├── dos │ │ ├── dos.mif │ │ ├── doscmds.c │ │ ├── dosmain.c │ │ ├── dosmouse.c │ │ ├── dossys.c │ │ ├── int.c │ │ └── spawn.c │ ├── dos286.ovl │ │ └── makefile │ ├── dos386 │ │ └── makefile │ ├── dosi86 │ │ └── makefile │ ├── files.dat │ ├── h │ │ ├── borders.h │ │ ├── cmds.h │ │ ├── colors.h │ │ ├── const.h │ │ ├── control.h │ │ ├── dc.h │ │ ├── dosext.h │ │ ├── dosmouse.h │ │ ├── dosx.h │ │ ├── errs.h │ │ ├── events.h │ │ ├── ex.h │ │ ├── expr.h │ │ ├── fcbmem.h │ │ ├── fts.h │ │ ├── globals.h │ │ ├── intr.h │ │ ├── lang.h │ │ ├── langdef.h │ │ ├── mem.h │ │ ├── menu.h │ │ ├── mouse.h │ │ ├── myprtf.h │ │ ├── parsecl.h │ │ ├── posix.h │ │ ├── pragmas.h │ │ ├── rcs.h │ │ ├── rtns.h │ │ ├── rtns2.h │ │ ├── rxsupp.h │ │ ├── setb.h │ │ ├── setnb.h │ │ ├── source.h │ │ ├── sstyle.h │ │ ├── sstyle_c.h │ │ ├── sstyle_f.h │ │ ├── sstyle_g.h │ │ ├── sstyle_h.h │ │ ├── sstyle_m.h │ │ ├── sstyle_p.h │ │ ├── stack.h │ │ ├── struct.h │ │ ├── vi.h │ │ ├── vibios.h │ │ ├── win.h │ │ ├── winaux.h │ │ └── xmem.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── linuxmps │ │ └── makefile │ ├── linuxppc │ │ └── makefile │ ├── man │ │ ├── a_cmdmod.gml │ │ ├── a_ctags.gml │ │ ├── a_edcfg.gml │ │ ├── a_errcod.gml │ │ ├── a_errmsg.gml │ │ ├── a_symkey.gml │ │ ├── advan.gml │ │ ├── basic.gml │ │ ├── basicdis.gml │ │ ├── basicmv.gml │ │ ├── cmdintro.gml │ │ ├── cmds.gml │ │ ├── default.opt │ │ ├── dospell.bat │ │ ├── duh │ │ ├── env.gml │ │ ├── exerquit.gml │ │ ├── exitvi.gml │ │ ├── extra.gml │ │ ├── final.vi │ │ ├── fsdesc.gml │ │ ├── gkey.gml │ │ ├── help.gml │ │ ├── help.opt │ │ ├── help.pcd │ │ ├── help.vi │ │ ├── helpdrv.pcd │ │ ├── helphead.gml │ │ ├── helplay.gml │ │ ├── int_err.gml │ │ ├── inter.gml │ │ ├── intro.gml │ │ ├── links.vi │ │ ├── makefile │ │ ├── markinfo.gml │ │ ├── modes.gml │ │ ├── nb7x9ps.opt │ │ ├── nohelp.gml │ │ ├── oper.gml │ │ ├── operlist.gml │ │ ├── outline │ │ ├── pict │ │ │ ├── altx.ps │ │ │ ├── atest.ps │ │ │ ├── cmdenter.ps │ │ │ ├── ctrlmenu.ps │ │ │ ├── editmenu.ps │ │ │ ├── exit.ps │ │ │ ├── filec.ps │ │ │ ├── filecs.ps │ │ │ ├── filemenu.ps │ │ │ ├── files.ps │ │ │ ├── filesel.ps │ │ │ ├── filter.ps │ │ │ ├── gadmenu.ps │ │ │ ├── grepsrch.ps │ │ │ ├── grepwin.ps │ │ │ ├── helpmenu.ps │ │ │ ├── mcdcsel.ps │ │ │ ├── mcsel.ps │ │ │ ├── menu.ps │ │ │ ├── mlsel.ps │ │ │ ├── open.ps │ │ │ ├── posmenu.ps │ │ │ ├── quitall.ps │ │ │ ├── readmenu.ps │ │ │ ├── repcnt.ps │ │ │ ├── selrgn.ps │ │ │ ├── set.ps │ │ │ ├── set2.ps │ │ │ ├── srchent.ps │ │ │ ├── testex.ps │ │ │ ├── testex2.ps │ │ │ └── vistart.ps │ │ ├── regexp.gml │ │ ├── remtoc.vi │ │ ├── rxexp.gml │ │ ├── scripts.gml │ │ ├── settings.gml │ │ ├── speckeys.gml │ │ ├── spellchk.bat │ │ ├── spmapkey.gml │ │ ├── symkey.gml │ │ ├── textsel.gml │ │ ├── toc.vi │ │ ├── tocind.vi │ │ ├── vi.gml │ │ ├── vipref.gml │ │ ├── win_menu.gml │ │ └── worddef.gml │ ├── mif │ │ ├── compile.mif │ │ ├── include.mif │ │ ├── link.mif │ │ ├── master.mif │ │ ├── objects.mif │ │ ├── rcsdll.mif │ │ └── special.mif │ ├── noui │ │ ├── biosunix.c │ │ ├── int.c │ │ ├── spawn.c │ │ ├── unixcmds.c │ │ ├── unixdir.c │ │ ├── unixmain.c │ │ ├── unixmous.c │ │ └── unixsys.c │ ├── nt │ │ ├── biosnt.c │ │ ├── int.c │ │ ├── nt.mif │ │ ├── ntcmds.c │ │ ├── ntmain.c │ │ ├── ntmouse.c │ │ ├── ntsys.c │ │ └── spawn.c │ ├── nt386.win │ │ └── makefile │ ├── nt386 │ │ └── makefile │ ├── ntaxp.win │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2 │ │ ├── biosos2.c │ │ ├── int.c │ │ ├── os2.mif │ │ ├── os2main.c │ │ ├── os2mouse.c │ │ ├── os2sys.c │ │ └── spawn.c │ ├── os2386 │ │ └── makefile │ ├── os2i86 │ │ └── makefile │ ├── prereq.ctl │ ├── qnx │ │ ├── biosqnx.c │ │ ├── int.c │ │ ├── qnx.mif │ │ ├── qnxdir.c │ │ ├── qnxmain.c │ │ ├── qnxmouse.c │ │ ├── qnxsys.c │ │ └── spawn.c │ ├── qnxi86 │ │ └── makefile │ ├── tagme │ ├── tooltips.msg │ ├── ui │ │ ├── adjwin.c │ │ ├── filesel.c │ │ ├── hdlmouse.c │ │ ├── menu.c │ │ ├── mouse.c │ │ ├── mouseev.c │ │ ├── ui.mif │ │ ├── ui8086.c │ │ ├── uiglob.c │ │ ├── winaux.c │ │ ├── winbrdr.c │ │ ├── windisp.c │ │ ├── wininit.c │ │ ├── winnew.c │ │ ├── winover.c │ │ ├── winscrl.c │ │ ├── winshow.c │ │ ├── winsize.c │ │ ├── winswap.c │ │ ├── winthumb.c │ │ └── wintica.c │ ├── unix │ │ ├── biosunix.c │ │ ├── int.c │ │ ├── spawn.c │ │ ├── unix.mif │ │ ├── unixcmds.c │ │ ├── unixdir.c │ │ ├── unixmain.c │ │ ├── unixmous.c │ │ └── unixsys.c │ ├── vi.msg │ ├── win │ │ ├── appmanif.xml │ │ ├── asavedlg.c │ │ ├── asavedlg.dlg │ │ ├── asavedlg.h │ │ ├── awkfile.ico │ │ ├── bmatch.bmp │ │ ├── button.bmp │ │ ├── cfile.ico │ │ ├── clipbrd.c │ │ ├── clrbar.c │ │ ├── clrbar.dlg │ │ ├── clrbar.h │ │ ├── clrpick.c │ │ ├── cmd.bmp │ │ ├── cmd.dlg │ │ ├── cmd.h │ │ ├── cmddlg.c │ │ ├── color.c │ │ ├── color.h │ │ ├── command.c │ │ ├── contain.c │ │ ├── cppfile.ico │ │ ├── cursor.c │ │ ├── dde.c │ │ ├── ddedef.h │ │ ├── display.c │ │ ├── dropclr.cur │ │ ├── dropft.cur │ │ ├── dropss.cur │ │ ├── ectlsub.c │ │ ├── editwnd.c │ │ ├── exec.c │ │ ├── exever.rc │ │ ├── fgrep.dlg │ │ ├── fifile.ico │ │ ├── filelist.dlg │ │ ├── filelist.h │ │ ├── files.bmp │ │ ├── filesel.c │ │ ├── filetype.c │ │ ├── finddlg.bmp │ │ ├── finddlg.c │ │ ├── finddlg.dlg │ │ ├── finddlg.h │ │ ├── flist.c │ │ ├── font.c │ │ ├── font.h │ │ ├── forfile.ico │ │ ├── ftbar.c │ │ ├── ftbar.dlg │ │ ├── ftbar.h │ │ ├── ftpick.c │ │ ├── getidata.c │ │ ├── getkey.c │ │ ├── grep.dlg │ │ ├── grep.h │ │ ├── grepdlg.c │ │ ├── hackdctl.c │ │ ├── hammer.bmp │ │ ├── hasshare.c │ │ ├── hfile.ico │ │ ├── hotkey.c │ │ ├── hotkey.h │ │ ├── hppfile.ico │ │ ├── iconids.h │ │ ├── libfile.ico │ │ ├── linedlg.c │ │ ├── linedlg.dlg │ │ ├── linedlg.h │ │ ├── main.c │ │ ├── mainwnd.c │ │ ├── makfile.ico │ │ ├── menu.c │ │ ├── message.c │ │ ├── nextfile.bmp │ │ ├── nodrop.cur │ │ ├── objfile.ico │ │ ├── old.ico │ │ ├── ole2.c │ │ ├── ole2cf.c │ │ ├── ole2def.h │ │ ├── os2win.h │ │ ├── prevfile.bmp │ │ ├── profile.c │ │ ├── rcfile.ico │ │ ├── refind.bmp │ │ ├── repcnt.c │ │ ├── repdlg.c │ │ ├── repdlg.dlg │ │ ├── repdlg.h │ │ ├── rhfile.ico │ │ ├── snoop.c │ │ ├── snoop.dlg │ │ ├── snoop.h │ │ ├── srcdde.c │ │ ├── srcwin.c │ │ ├── srcwin.h │ │ ├── ssbar.c │ │ ├── ssbar.dlg │ │ ├── ssbar.h │ │ ├── ssbardef.h │ │ ├── startdlg.c │ │ ├── startup.dlg │ │ ├── startup.h │ │ ├── statmove.cur │ │ ├── stubs.c │ │ ├── subclass.c │ │ ├── subclass.h │ │ ├── tagdlg.c │ │ ├── tagdlg.dlg │ │ ├── tagdlg.h │ │ ├── tool.c │ │ ├── txtfile.ico │ │ ├── usage.c │ │ ├── usage.dlg │ │ ├── usage.h │ │ ├── utils.c │ │ ├── utils.h │ │ ├── viw.ico │ │ ├── viw.rc │ │ ├── viwtest.ico │ │ ├── watcom.ico │ │ ├── win.mif │ │ ├── windir.c │ │ ├── window.c │ │ ├── window.h │ │ ├── winhdr.h │ │ ├── winrtns.h │ │ ├── wintica.c │ │ ├── winvi.h │ │ ├── wstatus.c │ │ └── wstatus.h │ ├── win386 │ │ └── makefile │ └── wini86 │ │ └── makefile ├── viper │ ├── bviper │ │ ├── bviper.cpp │ │ ├── bviper.hpp │ │ ├── bviper.tgt │ │ ├── bviper.vpr │ │ ├── bviper2.tgt │ │ ├── dos386 │ │ │ └── makefile │ │ ├── linux386 │ │ │ └── makefile │ │ ├── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ └── prereq.ctl │ ├── cfg │ │ ├── ide.mfg │ │ ├── ideads.cfg │ │ ├── ideaxp.cfg │ │ ├── idedos.cfg │ │ ├── idedos32.cfg │ │ ├── idelnx.cfg │ │ ├── idemfc16.cfg │ │ ├── idemfc21.cfg │ │ ├── idemfc25.cfg │ │ ├── idemfc30.cfg │ │ ├── idemfc32.cfg │ │ ├── idemfca.cfg │ │ ├── idenlm.cfg │ │ ├── ideos2.cfg │ │ ├── ideos232.cfg │ │ ├── idepb.cfg │ │ ├── idepbnt.cfg │ │ ├── ideqnx16.cfg │ │ ├── ideqnx32.cfg │ │ ├── iderdos.cfg │ │ ├── idew32.cfg │ │ ├── idew386.cfg │ │ ├── idewin.cfg │ │ ├── idex.mfg │ │ ├── linux386 │ │ │ └── makefile │ │ ├── makefile │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ └── wini86 │ │ │ └── makefile │ ├── files.dat │ ├── ideact │ │ ├── ideactiv.c │ │ └── makefile │ ├── lang.ctl │ ├── mviper │ │ ├── contfile.cpp │ │ ├── contfile.hpp │ │ ├── dos386 │ │ │ └── makefile │ │ ├── dosi86 │ │ │ ├── makefile │ │ │ ├── mviper.tgt │ │ │ └── mviper2.tgt │ │ ├── hosttype.h │ │ ├── linux386 │ │ │ └── makefile │ │ ├── maccel.cpp │ │ ├── maccel.hpp │ │ ├── maction.cpp │ │ ├── maction.hpp │ │ ├── mactset.cpp │ │ ├── mactset.hpp │ │ ├── mc2swtch.cpp │ │ ├── mc2swtch.hpp │ │ ├── mcommand.cpp │ │ ├── mcommand.hpp │ │ ├── mcompon.cpp │ │ ├── mcompon.hpp │ │ ├── mconfig.cpp │ │ ├── mconfig.hpp │ │ ├── mcstate.cpp │ │ ├── mcstate.hpp │ │ ├── mcswitch.cpp │ │ ├── mcswitch.hpp │ │ ├── mfamily.cpp │ │ ├── mfamily.hpp │ │ ├── mif │ │ │ └── master.mif │ │ ├── mitem.cpp │ │ ├── mitem.hpp │ │ ├── mproject.cpp │ │ ├── mproject.hpp │ │ ├── mrstate.cpp │ │ ├── mrstate.hpp │ │ ├── mrswitch.cpp │ │ ├── mrswitch.hpp │ │ ├── mrule.cpp │ │ ├── mrule.hpp │ │ ├── mstate.cpp │ │ ├── mstate.hpp │ │ ├── mswitch.cpp │ │ ├── mswitch.hpp │ │ ├── msymbol.cpp │ │ ├── msymbol.hpp │ │ ├── mtarget.cpp │ │ ├── mtarget.hpp │ │ ├── mtool.cpp │ │ ├── mtool.hpp │ │ ├── mtoolitm.cpp │ │ ├── mtoolitm.hpp │ │ ├── mtypo.cpp │ │ ├── mtypo.hpp │ │ ├── mvstate.cpp │ │ ├── mvstate.hpp │ │ ├── mvswitch.cpp │ │ ├── mvswitch.hpp │ │ ├── mworkfil.cpp │ │ ├── mworkfil.hpp │ │ ├── nt386 │ │ │ ├── makefile │ │ │ ├── mviper.tgt │ │ │ └── mviper2.tgt │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386 │ │ │ ├── makefile │ │ │ ├── mviper.tgt │ │ │ └── mviper2.tgt │ │ └── wini86 │ │ │ ├── makefile │ │ │ ├── mviper.tgt │ │ │ └── mviper2.tgt │ ├── viper.doc │ └── viper │ │ ├── appmanif.xml │ │ ├── browtarg.bmp │ │ ├── debgtarg.bmp │ │ ├── edititem.bmp │ │ ├── exever.rc │ │ ├── getfile.dlg │ │ ├── getfile.h │ │ ├── getfile9.dlg │ │ ├── ide_s.bmp │ │ ├── inifile.cpp │ │ ├── inifile.hpp │ │ ├── makeitem.bmp │ │ ├── makeproj.bmp │ │ ├── maketarg.bmp │ │ ├── mif │ │ ├── master.mif │ │ └── objects.mif │ │ ├── msglog.ico │ │ ├── newproj.bmp │ │ ├── nt │ │ ├── ide.tgt │ │ ├── ide2.tgt │ │ └── mviper.tgt │ │ ├── nt386 │ │ └── makefile │ │ ├── ntaxp │ │ └── makefile │ │ ├── openproj.bmp │ │ ├── os2 │ │ ├── ide.tgt │ │ ├── ide2.tgt │ │ ├── msglog.ico │ │ ├── mviper.tgt │ │ ├── target.ico │ │ ├── viper.ico │ │ └── viper.rc │ │ ├── os2386 │ │ └── makefile │ │ ├── proftarg.bmp │ │ ├── rcdefs.h │ │ ├── rdbgtarg.bmp │ │ ├── return.bmp │ │ ├── rtrn2pb.bmp │ │ ├── runtarg.bmp │ │ ├── samptarg.bmp │ │ ├── saveproj.bmp │ │ ├── srcclos.bmp │ │ ├── srcitem.bmp │ │ ├── srcopen.bmp │ │ ├── target.ico │ │ ├── vabout.cpp │ │ ├── vabout.hpp │ │ ├── vcompdlg.cpp │ │ ├── vcompdlg.hpp │ │ ├── vcompon.cpp │ │ ├── vcompon.hpp │ │ ├── veditdlg.cpp │ │ ├── veditdlg.hpp │ │ ├── veditdll.cpp │ │ ├── veditdll.hpp │ │ ├── vfilelst.cpp │ │ ├── vfilelst.hpp │ │ ├── vhelpstk.cpp │ │ ├── vhelpstk.hpp │ │ ├── viper.ico │ │ ├── vlistbox.cpp │ │ ├── vlistbox.hpp │ │ ├── vmsglog.cpp │ │ ├── vmsglog.hpp │ │ ├── vpemain.cpp │ │ ├── vpemain.hpp │ │ ├── vpemain2.cpp │ │ ├── vrcscli.cpp │ │ ├── vrcscli.hpp │ │ ├── vsetup.cpp │ │ ├── vsetup.hpp │ │ ├── vtoolitm.cpp │ │ ├── vtoolitm.hpp │ │ ├── whotlist.cpp │ │ ├── whotlist.hpp │ │ ├── whotpbox.cpp │ │ ├── whotpbox.hpp │ │ ├── win │ │ ├── ide.tgt │ │ ├── ide2.tgt │ │ ├── mviper.tgt │ │ ├── viper.rc │ │ ├── wd.pif │ │ ├── wd98.pif │ │ ├── wdj.pif │ │ └── wsrv.pif │ │ └── wini86 │ │ └── makefile ├── viprdemo │ ├── clean.mif │ ├── files.dat │ ├── lang.ctl │ ├── src │ │ ├── back.bmp │ │ ├── box.cpp │ │ ├── box.hpp │ │ ├── brighter.bmp │ │ ├── btnos2.c │ │ ├── btnwin.c │ │ ├── button.h │ │ ├── darker.bmp │ │ ├── down.bmp │ │ ├── draw.ico │ │ ├── draw.rc │ │ ├── drawmenu.h │ │ ├── drawos2.c │ │ ├── drawos2.rc │ │ ├── drawroom.cpp │ │ ├── drawwin.c │ │ ├── fortran │ │ │ ├── btnnt.for │ │ │ ├── btnos2.for │ │ │ ├── btnwin.for │ │ │ ├── button.fi │ │ │ ├── drawmenu.fi │ │ │ ├── drawnt.fi │ │ │ ├── drawnt.for │ │ │ ├── drawos2.fi │ │ │ ├── drawos2.for │ │ │ ├── drawos2.rc │ │ │ ├── drawwin.fi │ │ │ ├── drawwin.for │ │ │ ├── ntdefs.fi │ │ │ ├── os2.wpj │ │ │ ├── os2 │ │ │ │ ├── button.tgt │ │ │ │ └── drawos2.tgt │ │ │ ├── room.fi │ │ │ ├── threed.fi │ │ │ ├── win.wpj │ │ │ ├── win │ │ │ │ ├── button.tgt │ │ │ │ └── draw16.tgt │ │ │ ├── win32.wpj │ │ │ ├── win32 │ │ │ │ ├── button.tgt │ │ │ │ └── draw32.tgt │ │ │ ├── win386.wpj │ │ │ └── win386 │ │ │ │ ├── button.tgt │ │ │ │ └── draw.tgt │ │ ├── forward.bmp │ │ ├── furnitu.cpp │ │ ├── furnitu.hpp │ │ ├── left.bmp │ │ ├── os2.wpj │ │ ├── os2 │ │ │ ├── button.tgt │ │ │ └── drawos2.tgt │ │ ├── right.bmp │ │ ├── room.h │ │ ├── threed.h │ │ ├── up.bmp │ │ ├── win.wpj │ │ ├── win │ │ │ ├── button.tgt │ │ │ └── draw16.tgt │ │ ├── win1632.h │ │ ├── win32.wpj │ │ ├── win32 │ │ │ ├── button.tgt │ │ │ └── draw32.tgt │ │ ├── win386.wpj │ │ └── win386 │ │ │ ├── button.tgt │ │ │ └── draw.tgt │ └── threed │ │ ├── cgr.h │ │ ├── cgrchart.h │ │ ├── cgrdef.h │ │ ├── cgrerr.h │ │ ├── cgrids.h │ │ ├── const.h │ │ ├── dbgmem.c │ │ ├── dbgmem.h │ │ ├── dll.c │ │ ├── file.h │ │ ├── gblmem.c │ │ ├── global.c │ │ ├── global.h │ │ ├── icgr.h │ │ ├── icgrdef.h │ │ ├── line.h │ │ ├── locmem.c │ │ ├── master.mif │ │ ├── mem.h │ │ ├── mytypes.h │ │ ├── nt │ │ ├── makefile │ │ └── nt_3d.tgt │ │ ├── os2 │ │ ├── makefile │ │ └── os2_3d.tgt │ │ ├── pipe.h │ │ ├── pipe1.c │ │ ├── pipe2.c │ │ ├── pipemem.c │ │ ├── pipeobj.c │ │ ├── pipeutil.c │ │ ├── region.c │ │ ├── region.h │ │ ├── rowscale.h │ │ ├── text.h │ │ ├── textpos.h │ │ ├── threed.c │ │ ├── threed.h │ │ ├── threednt.wpj │ │ ├── threedo2.wpj │ │ ├── threedwi.wpj │ │ ├── trmem.c │ │ ├── version.h │ │ ├── watdlg.h │ │ ├── win │ │ ├── makefile │ │ └── win_3d.tgt │ │ ├── window.c │ │ ├── winworld.h │ │ ├── world3.c │ │ └── wpimem.c ├── w16api │ ├── asm │ │ └── profc.asm │ ├── def16lbc.awk │ ├── files.dat │ ├── include │ │ ├── _win386.mh │ │ ├── cderr.mh │ │ ├── cobjps.mh │ │ ├── coguid.mh │ │ ├── commdlg.mh │ │ ├── compobj.mh │ │ ├── ctl3d.mh │ │ ├── custcntl.mh │ │ ├── dde.mh │ │ ├── ddeml.mh │ │ ├── dispatch.mh │ │ ├── dlgs.mh │ │ ├── drivinit.mh │ │ ├── dvobj.mh │ │ ├── extern_c.sp │ │ ├── initguid.mh │ │ ├── lzexpand.mh │ │ ├── mmsystem.mh │ │ ├── moniker.mh │ │ ├── ole.mh │ │ ├── ole2.mh │ │ ├── ole2dbg.mh │ │ ├── ole2ver.mh │ │ ├── oleguid.mh │ │ ├── olenls.mh │ │ ├── scode.mh │ │ ├── shellapi.mh │ │ ├── storage.mh │ │ ├── stress.mh │ │ ├── toolhelp.mh │ │ ├── variant.mh │ │ ├── ver.mh │ │ ├── win16.mh │ │ ├── win386.mh │ │ ├── windows.mh │ │ ├── windowsx.mh │ │ └── winsock.mh │ ├── lang.ctl │ ├── lib │ │ ├── commdlg.def │ │ ├── compobj.def │ │ ├── ctl3d.def │ │ ├── ctl3dv2.def │ │ ├── ddeml.def │ │ ├── gdi.def │ │ ├── kernel.def │ │ ├── keyboard.def │ │ ├── lzexpand.def │ │ ├── mmsystem.def │ │ ├── ole2.def │ │ ├── ole2disp.def │ │ ├── ole2nls.def │ │ ├── olecli.def │ │ ├── olesvr.def │ │ ├── shell.def │ │ ├── sound.def │ │ ├── storage.def │ │ ├── stress.def │ │ ├── toolhelp.def │ │ ├── typelib.def │ │ ├── user.def │ │ ├── ver.def │ │ ├── win87em.def │ │ └── winsock.def │ ├── master.mif │ └── wini86 │ │ └── makefile ├── w32api.old │ ├── CONTRIBUTIONS │ ├── ChangeLog │ ├── Makefile.in │ ├── README.w32api │ ├── TODO │ ├── aclocal.m4 │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.in │ ├── def2lbc.awk │ ├── files.dat │ ├── fix │ │ ├── fix_h.vi │ │ ├── new_h.mif │ │ └── readonly.h │ ├── getupdates.bat │ ├── include │ │ ├── GL │ │ │ ├── gl.h │ │ │ ├── glext.h │ │ │ ├── glu.h │ │ │ └── wglext.h │ │ ├── accctrl.h │ │ ├── aclapi.h │ │ ├── aclui.h │ │ ├── adsprop.h │ │ ├── afxres.h │ │ ├── amaudio.h │ │ ├── amvideo.h │ │ ├── audevcod.h │ │ ├── aviriff.h │ │ ├── aygshell.h │ │ ├── basetsd.h │ │ ├── basetyps.h │ │ ├── bdatypes.h │ │ ├── cderr.h │ │ ├── cguid.h │ │ ├── cmnquery.h │ │ ├── comcat.h │ │ ├── commctrl.h │ │ ├── commdlg.h │ │ ├── control.h │ │ ├── cpl.h │ │ ├── cplext.h │ │ ├── custcntl.h │ │ ├── dbt.h │ │ ├── dde.h │ │ ├── ddeml.h │ │ ├── ddk │ │ │ ├── atm.h │ │ │ ├── batclass.h │ │ │ ├── cfg.h │ │ │ ├── cfgmgr32.h │ │ │ ├── d4drvif.h │ │ │ ├── d4iface.h │ │ │ ├── ddkmapi.h │ │ │ ├── hidclass.h │ │ │ ├── hidpi.h │ │ │ ├── hidsdi.h │ │ │ ├── hidusage.h │ │ │ ├── kbdmou.h │ │ │ ├── mcd.h │ │ │ ├── miniport.h │ │ │ ├── minitape.h │ │ │ ├── mountdev.h │ │ │ ├── mountmgr.h │ │ │ ├── ndis.h │ │ │ ├── ndisguid.h │ │ │ ├── ndistapi.h │ │ │ ├── ndiswan.h │ │ │ ├── netevent.h │ │ │ ├── netpnp.h │ │ │ ├── newdev.h │ │ │ ├── ntapi.h │ │ │ ├── ntdd8042.h │ │ │ ├── ntddbeep.h │ │ │ ├── ntddcdrm.h │ │ │ ├── ntddcdvd.h │ │ │ ├── ntddchgr.h │ │ │ ├── ntdddisk.h │ │ │ ├── ntddk.h │ │ │ ├── ntddkbd.h │ │ │ ├── ntddmou.h │ │ │ ├── ntddndis.h │ │ │ ├── ntddpar.h │ │ │ ├── ntddpcm.h │ │ │ ├── ntddscsi.h │ │ │ ├── ntddser.h │ │ │ ├── ntddstor.h │ │ │ ├── ntddtape.h │ │ │ ├── ntddtdi.h │ │ │ ├── ntddvdeo.h │ │ │ ├── ntddvol.h │ │ │ ├── ntifs.h │ │ │ ├── ntpoapi.h │ │ │ ├── ntstatus.h │ │ │ ├── parallel.h │ │ │ ├── pfhook.h │ │ │ ├── poclass.h │ │ │ ├── scsi.h │ │ │ ├── scsiscan.h │ │ │ ├── scsiwmi.h │ │ │ ├── smbus.h │ │ │ ├── srb.h │ │ │ ├── storport.h │ │ │ ├── tdi.h │ │ │ ├── tdiinfo.h │ │ │ ├── tdikrnl.h │ │ │ ├── tdistat.h │ │ │ ├── tvout.h │ │ │ ├── upssvc.h │ │ │ ├── usb.h │ │ │ ├── usb100.h │ │ │ ├── usbcamdi.h │ │ │ ├── usbdi.h │ │ │ ├── usbioctl.h │ │ │ ├── usbiodef.h │ │ │ ├── usbscan.h │ │ │ ├── usbuser.h │ │ │ ├── video.h │ │ │ ├── videoagp.h │ │ │ ├── win2k.h │ │ │ ├── winddi.h │ │ │ ├── winddk.h │ │ │ ├── winnt4.h │ │ │ ├── winxp.h │ │ │ ├── ws2san.h │ │ │ └── xfilter.h │ │ ├── devguid.h │ │ ├── dhcpcsdk.h │ │ ├── directx │ │ │ ├── d3d9.h │ │ │ ├── d3d9caps.h │ │ │ ├── d3d9types.h │ │ │ ├── dxerr8.h │ │ │ └── dxerr9.h │ │ ├── dlgs.h │ │ ├── docobj.h │ │ ├── dsadmin.h │ │ ├── dsclient.h │ │ ├── dsgetdc.h │ │ ├── dshow.h │ │ ├── dsquery.h │ │ ├── dsrole.h │ │ ├── dvdevcod.h │ │ ├── dvdmedia.h │ │ ├── edevdefs.h │ │ ├── errorrep.h │ │ ├── errors.h │ │ ├── evcode.h │ │ ├── exdisp.h │ │ ├── exdispid.h │ │ ├── fltdefs.h │ │ ├── httpext.h │ │ ├── icm.h │ │ ├── idispids.h │ │ ├── il21dec.h │ │ ├── imagehlp.h │ │ ├── imm.h │ │ ├── initguid.h │ │ ├── intshcut.h │ │ ├── ipexport.h │ │ ├── iphlpapi.h │ │ ├── ipifcons.h │ │ ├── ipinfoid.h │ │ ├── iprtrmib.h │ │ ├── iptypes.h │ │ ├── ipxconst.h │ │ ├── ipxrtdef.h │ │ ├── ipxtfflt.h │ │ ├── isguids.h │ │ ├── ks.h │ │ ├── ksmedia.h │ │ ├── largeint.h │ │ ├── lm.h │ │ ├── lmaccess.h │ │ ├── lmalert.h │ │ ├── lmapibuf.h │ │ ├── lmat.h │ │ ├── lmaudit.h │ │ ├── lmbrowsr.h │ │ ├── lmchdev.h │ │ ├── lmconfig.h │ │ ├── lmcons.h │ │ ├── lmerr.h │ │ ├── lmerrlog.h │ │ ├── lmmsg.h │ │ ├── lmremutl.h │ │ ├── lmrepl.h │ │ ├── lmserver.h │ │ ├── lmshare.h │ │ ├── lmsname.h │ │ ├── lmstats.h │ │ ├── lmsvc.h │ │ ├── lmuse.h │ │ ├── lmuseflg.h │ │ ├── lmwksta.h │ │ ├── lzexpand.h │ │ ├── mapi.h │ │ ├── mciavi.h │ │ ├── mcx.h │ │ ├── mgm.h │ │ ├── mgmtapi.h │ │ ├── mlang.h │ │ ├── mmreg.h │ │ ├── mmsystem.h │ │ ├── mpegtype.h │ │ ├── mprapi.h │ │ ├── mq.h │ │ ├── msacm.h │ │ ├── mshtml.h │ │ ├── mswsock.h │ │ ├── nb30.h │ │ ├── nddeapi.h │ │ ├── nspapi.h │ │ ├── ntdef.h │ │ ├── ntdll.h │ │ ├── ntdsapi.h │ │ ├── ntdsbcli.h │ │ ├── ntldap.h │ │ ├── ntsecapi.h │ │ ├── ntsecpkg.h │ │ ├── oaidl.h │ │ ├── objbase.h │ │ ├── objfwd.h │ │ ├── objidl.h │ │ ├── objsafe.h │ │ ├── objsel.h │ │ ├── ocidl.h │ │ ├── odbcinst.h │ │ ├── ole.h │ │ ├── ole2.h │ │ ├── ole2ver.h │ │ ├── oleacc.h │ │ ├── oleauto.h │ │ ├── olectl.h │ │ ├── olectlid.h │ │ ├── oledlg.h │ │ ├── oleidl.h │ │ ├── pbt.h │ │ ├── poppack.h │ │ ├── powrprof.h │ │ ├── prsht.h │ │ ├── psapi.h │ │ ├── pshpack1.h │ │ ├── pshpack2.h │ │ ├── pshpack4.h │ │ ├── pshpack8.h │ │ ├── qedit.h │ │ ├── rapi.h │ │ ├── ras.h │ │ ├── rasdlg.h │ │ ├── raserror.h │ │ ├── rassapi.h │ │ ├── reason.h │ │ ├── regstr.h │ │ ├── richedit.h │ │ ├── richole.h │ │ ├── routprot.h │ │ ├── rpc.h │ │ ├── rpcdce.h │ │ ├── rpcdce2.h │ │ ├── rpcdcep.h │ │ ├── rpcndr.h │ │ ├── rpcnsi.h │ │ ├── rpcnsip.h │ │ ├── rpcnterr.h │ │ ├── rpcproxy.h │ │ ├── rtutils.h │ │ ├── schannel.h │ │ ├── schnlsp.h │ │ ├── scrnsave.h │ │ ├── sddl.h │ │ ├── secext.h │ │ ├── security.h │ │ ├── servprov.h │ │ ├── setupapi.h │ │ ├── shellapi.h │ │ ├── shldisp.h │ │ ├── shlguid.h │ │ ├── shlobj.h │ │ ├── shlwapi.h │ │ ├── snmp.h │ │ ├── specstrings.h │ │ ├── sql.h │ │ ├── sqlext.h │ │ ├── sqltypes.h │ │ ├── sqlucode.h │ │ ├── sspi.h │ │ ├── stm.h │ │ ├── strmif.h │ │ ├── subauth.h │ │ ├── svcguid.h │ │ ├── tlhelp32.h │ │ ├── tmschema.h │ │ ├── unknwn.h │ │ ├── userenv.h │ │ ├── usp10.h │ │ ├── uxtheme.h │ │ ├── vfw.h │ │ ├── vidcap.h │ │ ├── vmr9.h │ │ ├── vptype.h │ │ ├── w32api.h │ │ ├── winable.h │ │ ├── winbase.h │ │ ├── winber.h │ │ ├── wincon.h │ │ ├── wincrypt.h │ │ ├── windef.h │ │ ├── windns.h │ │ ├── windows.h │ │ ├── windowsx.h │ │ ├── winerror.h │ │ ├── wingdi.h │ │ ├── wininet.h │ │ ├── winioctl.h │ │ ├── winldap.h │ │ ├── winnetwk.h │ │ ├── winnls.h │ │ ├── winnt.h │ │ ├── winperf.h │ │ ├── winreg.h │ │ ├── winresrc.h │ │ ├── winsnmp.h │ │ ├── winsock.h │ │ ├── winsock2.h │ │ ├── winspool.h │ │ ├── winsvc.h │ │ ├── winuser.h │ │ ├── winver.h │ │ ├── ws2spi.h │ │ ├── ws2tcpip.h │ │ ├── wsahelp.h │ │ ├── wsipx.h │ │ ├── wsnetbs.h │ │ ├── wtsapi32.h │ │ ├── wtypes.h │ │ ├── xprtdefs.h │ │ └── zmouse.h │ ├── install-sh │ ├── lang.ctl │ ├── lib │ │ ├── Makefile.in │ │ ├── aclui.def │ │ ├── advapi32.def │ │ ├── ativscp-uuid.c │ │ ├── avicap32.def │ │ ├── avifil32.def │ │ ├── bthprops.def │ │ ├── cap.def │ │ ├── cguid-uuid.c │ │ ├── comcat-uuid.c │ │ ├── comctl32.def │ │ ├── comdlg32.def │ │ ├── crypt32.def │ │ ├── ctl3d32.def │ │ ├── ddk │ │ │ ├── Makefile.in │ │ │ ├── apcups.def │ │ │ ├── cfgmgr32.def │ │ │ ├── dxapi.def │ │ │ ├── hal.def │ │ │ ├── hid.def │ │ │ ├── hidparse.def │ │ │ ├── mcd.def │ │ │ ├── ndis.def │ │ │ ├── newdev.def │ │ │ ├── ntoskrnl.def │ │ │ ├── scsiport.def │ │ │ ├── tdi.def │ │ │ ├── usbcamd.def │ │ │ ├── usbcamd2.def │ │ │ ├── videoprt.def │ │ │ └── win32k.def │ │ ├── devguid.c │ │ ├── dhcpcsvc.def │ │ ├── directx │ │ │ ├── Makefile.in │ │ │ ├── d3d8.def │ │ │ ├── d3d9.def │ │ │ ├── d3dim.def │ │ │ ├── d3drm.def │ │ │ ├── d3dx8d.def │ │ │ ├── d3dx9d.def │ │ │ ├── d3dxof.def │ │ │ ├── ddraw.def │ │ │ ├── dinput.def │ │ │ ├── dinput8.def │ │ │ ├── dinput_joy.c │ │ │ ├── dinput_joy2.c │ │ │ ├── dinput_kbd.c │ │ │ ├── dinput_mouse.c │ │ │ ├── dinput_mouse2.c │ │ │ ├── dinput_private.h │ │ │ ├── dmoguids.c │ │ │ ├── dplayx.def │ │ │ ├── dpnaddr.def │ │ │ ├── dpnet.def │ │ │ ├── dpnlobby.def │ │ │ ├── dpvoice.def │ │ │ ├── dsetup.def │ │ │ ├── dsound.def │ │ │ ├── dxerr.c │ │ │ ├── dxerr8.c │ │ │ ├── dxerr8w.c │ │ │ ├── dxerr9.c │ │ │ ├── dxerr9w.c │ │ │ ├── dxguid.c │ │ │ ├── ksproxy.def │ │ │ ├── ksuser.c │ │ │ ├── ksuser.def │ │ │ ├── msdmo.def │ │ │ ├── strmiids.c │ │ │ └── test.c │ │ ├── dlcapi.def │ │ ├── dnsapi.def │ │ ├── docobj-uuid.c │ │ ├── exdisp-uuid.c │ │ ├── extras-uuid.c │ │ ├── faultrep.def │ │ ├── gdi32.def │ │ ├── glaux.def │ │ ├── glu32.def │ │ ├── glut.def │ │ ├── glut32.def │ │ ├── hlguids-uuid.c │ │ ├── hlink-uuid.c │ │ ├── icmui.def │ │ ├── igmpagnt.def │ │ ├── imagehlp.def │ │ ├── imm32.def │ │ ├── iphlpapi.def │ │ ├── kernel32.def │ │ ├── largeint.c │ │ ├── lz32.def │ │ ├── mapi32.def │ │ ├── mfcuia32.def │ │ ├── mgmtapi.def │ │ ├── mlang-uuid.c │ │ ├── mpr.def │ │ ├── mprapi.def │ │ ├── mqrt.def │ │ ├── msacm32.def │ │ ├── mscms.def │ │ ├── mshtml-uuid.c │ │ ├── msimg32.def │ │ ├── msvcp60.def │ │ ├── msvfw32.def │ │ ├── mswsock.def │ │ ├── msxml-uuid.c │ │ ├── nddeapi.def │ │ ├── netapi32.def │ │ ├── ntdll.def │ │ ├── oaidl-uuid.c │ │ ├── objidl-uuid.c │ │ ├── objsafe-uuid.c │ │ ├── ocidl-uuid.c │ │ ├── odbc32.def │ │ ├── odbccp32.def │ │ ├── ole32.def │ │ ├── oleacc-uuid.c │ │ ├── oleacc.def │ │ ├── oleaut32.def │ │ ├── olecli32.def │ │ ├── olectlid-uuid.c │ │ ├── oledlg.def │ │ ├── oleidl-uuid.c │ │ ├── olepro32.def │ │ ├── olesvr32.def │ │ ├── opengl32.def │ │ ├── penwin32.def │ │ ├── pkpd32.def │ │ ├── power-uuid.c │ │ ├── powrprof.def │ │ ├── psapi.def │ │ ├── quartz.def │ │ ├── rapi.def │ │ ├── rasapi32.def │ │ ├── rasdlg.def │ │ ├── res.rc │ │ ├── rpcdce4.def │ │ ├── rpcns4.def │ │ ├── rpcrt4.def │ │ ├── rtm.def │ │ ├── rtutils.def │ │ ├── scrnsave.c │ │ ├── secur32.def │ │ ├── servprov-uuid.c │ │ ├── setupapi.def │ │ ├── shell32.c │ │ ├── shell32.def │ │ ├── shfolder.def │ │ ├── shlwapi.def │ │ ├── snmpapi.def │ │ ├── svrapi.def │ │ ├── tapi32.def │ │ ├── test.c │ │ ├── th32.def │ │ ├── thunk32.def │ │ ├── unknwn-uuid.c │ │ ├── url.def │ │ ├── urlmon-uuid.c │ │ ├── user32.def │ │ ├── userenv.def │ │ ├── usp10.def │ │ ├── uxtheme.def │ │ ├── vdmdbg.def │ │ ├── version.def │ │ ├── vfw32.mri │ │ ├── win32spl.def │ │ ├── wininet.def │ │ ├── winmm.def │ │ ├── winspool.def │ │ ├── winstrm.def │ │ ├── wldap32.def │ │ ├── wow32.def │ │ ├── ws2_32.c │ │ ├── ws2_32.def │ │ ├── wsnmp32.def │ │ ├── wsock32.def │ │ ├── wst.def │ │ └── wtsapi32.def │ ├── master.mif │ ├── nt │ │ ├── include │ │ │ ├── GL │ │ │ │ └── readme │ │ │ ├── ddk │ │ │ │ └── readme │ │ │ └── directx │ │ │ │ └── readme │ │ └── makefile │ ├── nt386 │ │ ├── base │ │ │ └── makefile │ │ ├── ddk │ │ │ └── makefile │ │ └── directx │ │ │ └── makefile │ ├── ntaxp │ │ └── base │ │ │ ├── kernel32.axp │ │ │ └── makefile │ └── watcom │ │ ├── common.sp │ │ ├── makefile │ │ ├── mkmh.c │ │ └── readonly.sp ├── w32api │ ├── def2lbc.awk │ ├── files.dat │ ├── include │ │ ├── _w32ials.mh │ │ ├── accctrl.mh │ │ ├── aclapi.mh │ │ ├── aclui.mh │ │ ├── adsprop.mh │ │ ├── afxres.mh │ │ ├── algid.sp │ │ ├── amaudio.mh │ │ ├── amstream.mh │ │ ├── amvideo.mh │ │ ├── anysize.sp │ │ ├── audevcod.mh │ │ ├── austream.mh │ │ ├── authid.sp │ │ ├── aviriff.mh │ │ ├── basetsd.mh │ │ ├── basetyps.mh │ │ ├── batclass.mh │ │ ├── bcrypt.mh │ │ ├── bdatypes.mh │ │ ├── blob.sp │ │ ├── ccapi.sp │ │ ├── cderr.mh │ │ ├── cguid.mh │ │ ├── cmnioctl.sp │ │ ├── cmnquery.mh │ │ ├── comcat.mh │ │ ├── commctrl.mh │ │ ├── commdlg.mh │ │ ├── compobj.mh │ │ ├── control.mh │ │ ├── cpl.mh │ │ ├── cplext.mh │ │ ├── ctl3d.mh │ │ ├── custcntl.mh │ │ ├── dbt.mh │ │ ├── dde.mh │ │ ├── ddeml.mh │ │ ├── ddk │ │ │ ├── atm.mh │ │ │ ├── bugcodes.mh │ │ │ ├── cfg.mh │ │ │ ├── cfgmgr32.mh │ │ │ ├── classpnp.mh │ │ │ ├── d4drvif.mh │ │ │ ├── d4iface.mh │ │ │ ├── dderror.mh │ │ │ ├── ddkmapi.mh │ │ │ ├── ddrawint.mh │ │ │ ├── devioctl.mh │ │ │ ├── drvspecs.mh │ │ │ ├── hidclass.mh │ │ │ ├── hidpi.mh │ │ │ ├── hidsdi.mh │ │ │ ├── hidusage.mh │ │ │ ├── kbdmou.mh │ │ │ ├── mcd.mh │ │ │ ├── mce.mh │ │ │ ├── miniport.mh │ │ │ ├── minitape.mh │ │ │ ├── mountdev.mh │ │ │ ├── mountmgr.mh │ │ │ ├── ndis.mh │ │ │ ├── ndisguid.mh │ │ │ ├── ndistapi.mh │ │ │ ├── ndiswan.mh │ │ │ ├── netevent.mh │ │ │ ├── netpnp.mh │ │ │ ├── ntdd8042.mh │ │ │ ├── ntddbeep.mh │ │ │ ├── ntddcdrm.mh │ │ │ ├── ntddcdvd.mh │ │ │ ├── ntddchgr.mh │ │ │ ├── ntdddisk.mh │ │ │ ├── ntddk.mh │ │ │ ├── ntddkbd.mh │ │ │ ├── ntddmou.mh │ │ │ ├── ntddpar.mh │ │ │ ├── ntddpcm.mh │ │ │ ├── ntddscsi.mh │ │ │ ├── ntddser.mh │ │ │ ├── ntddstor.mh │ │ │ ├── ntddtape.mh │ │ │ ├── ntddtdi.mh │ │ │ ├── ntddvdeo.mh │ │ │ ├── ntddvol.mh │ │ │ ├── ntdef.mh │ │ │ ├── ntifs.mh │ │ │ ├── ntiologc.mh │ │ │ ├── ntnls.mh │ │ │ ├── ntpoapi.mh │ │ │ ├── ntstatus.mh │ │ │ ├── parallel.mh │ │ │ ├── pfhook.mh │ │ │ ├── poclass.mh │ │ │ ├── scsi.mh │ │ │ ├── scsiscan.mh │ │ │ ├── scsiwmi.mh │ │ │ ├── smbus.mh │ │ │ ├── srb.mh │ │ │ ├── storport.mh │ │ │ ├── tdi.mh │ │ │ ├── tdiinfo.mh │ │ │ ├── tdikrnl.mh │ │ │ ├── tdistat.mh │ │ │ ├── upssvc.mh │ │ │ ├── usb.mh │ │ │ ├── usb100.mh │ │ │ ├── usb200.mh │ │ │ ├── usbcamdi.mh │ │ │ ├── usbdi.mh │ │ │ ├── usbioctl.mh │ │ │ ├── usbiodef.mh │ │ │ ├── usbscan.mh │ │ │ ├── usbspec.mh │ │ │ ├── usbuser.mh │ │ │ ├── video.mh │ │ │ ├── videoagp.mh │ │ │ ├── wdm.mh │ │ │ ├── wdmguid.mh │ │ │ ├── winddi.mh │ │ │ ├── wmidata.mh │ │ │ ├── wmilib.mh │ │ │ ├── ws2san.mh │ │ │ └── xfilter.mh │ │ ├── ddraw.mh │ │ ├── ddstream.mh │ │ ├── devguid.mh │ │ ├── devprdef.mh │ │ ├── dhcpcsdk.mh │ │ ├── dimm.mh │ │ ├── directx │ │ │ ├── d3d.mh │ │ │ ├── d3d9.mh │ │ │ ├── d3d9caps.mh │ │ │ ├── d3d9type.mh │ │ │ ├── d3dcaps.mh │ │ │ ├── d3drm.mh │ │ │ ├── d3drmdef.mh │ │ │ ├── d3drmobj.mh │ │ │ ├── d3dtypes.mh │ │ │ ├── dinput.mh │ │ │ ├── dsound.mh │ │ │ ├── dvp.mh │ │ │ └── dxtrans.mh │ │ ├── dispatch.mh │ │ ├── dispex.mh │ │ ├── dlgs.mh │ │ ├── docobj.mh │ │ ├── dsadmin.mh │ │ ├── dsclient.mh │ │ ├── dsgetdc.mh │ │ ├── dshow.mh │ │ ├── dsquery.mh │ │ ├── dsrole.mh │ │ ├── dummy.sp │ │ ├── dvdevcod.mh │ │ ├── dvdmedia.mh │ │ ├── dxshared.sp │ │ ├── edevdefs.mh │ │ ├── errorrep.mh │ │ ├── errors.mh │ │ ├── evcode.mh │ │ ├── evntprov.mh │ │ ├── evntrace.mh │ │ ├── exdisp.mh │ │ ├── exdispid.mh │ │ ├── fltdefs.mh │ │ ├── fourcc.sp │ │ ├── gl │ │ │ ├── gl.mh │ │ │ └── glu.mh │ │ ├── guiddef.mh │ │ ├── hlog.sp │ │ ├── htmlhelp.mh │ │ ├── httpext.mh │ │ ├── iads.mh │ │ ├── icm.mh │ │ ├── idispids.mh │ │ ├── ifdef.mh │ │ ├── ifmib.mh │ │ ├── il21dec.mh │ │ ├── imagehlp.mh │ │ ├── imm.mh │ │ ├── in6addr.mh │ │ ├── inaddr.mh │ │ ├── initguid.mh │ │ ├── intrface.sp │ │ ├── intshcut.mh │ │ ├── ipexport.mh │ │ ├── iphlpapi.mh │ │ ├── ipifcons.mh │ │ ├── ipinfoid.mh │ │ ├── ipmib.mh │ │ ├── iprtrmib.mh │ │ ├── iptypes.mh │ │ ├── ipxconst.mh │ │ ├── ipxrip.mh │ │ ├── ipxrtdef.mh │ │ ├── ipxsap.mh │ │ ├── ipxtfflt.mh │ │ ├── isguids.mh │ │ ├── knownfld.mh │ │ ├── ks.mh │ │ ├── ksmedia.mh │ │ ├── ktmtypes.mh │ │ ├── largeint.mh │ │ ├── lm.mh │ │ ├── lmaccess.mh │ │ ├── lmalert.mh │ │ ├── lmapibuf.mh │ │ ├── lmat.mh │ │ ├── lmaudit.mh │ │ ├── lmconfig.mh │ │ ├── lmcons.mh │ │ ├── lmerr.mh │ │ ├── lmerrlog.mh │ │ ├── lmjoin.mh │ │ ├── lmmsg.mh │ │ ├── lmremutl.mh │ │ ├── lmrepl.mh │ │ ├── lmserver.mh │ │ ├── lmshare.mh │ │ ├── lmsname.mh │ │ ├── lmstats.mh │ │ ├── lmsvc.mh │ │ ├── lmuse.mh │ │ ├── lmuseflg.mh │ │ ├── lmwksta.mh │ │ ├── lzexpand.mh │ │ ├── mapi.mh │ │ ├── mapircls.sp │ │ ├── mciavi.mh │ │ ├── mcx.mh │ │ ├── mgm.mh │ │ ├── mgmtapi.mh │ │ ├── mlang.mh │ │ ├── mmreg.mh │ │ ├── mmstream.mh │ │ ├── mmsystem.mh │ │ ├── moniker.mh │ │ ├── mpegtype.mh │ │ ├── mprapi.mh │ │ ├── mq.mh │ │ ├── msacm.mh │ │ ├── mshtml.mh │ │ ├── mswsock.mh │ │ ├── msxml.mh │ │ ├── naptypes.mh │ │ ├── nb30.mh │ │ ├── ncrypt.mh │ │ ├── nddeapi.mh │ │ ├── newdev.mh │ │ ├── nldef.mh │ │ ├── nspapi.mh │ │ ├── ntddndis.mh │ │ ├── ntdsapi.mh │ │ ├── ntdsbcli.mh │ │ ├── ntdsbmsg.mh │ │ ├── ntldap.mh │ │ ├── ntsecapi.mh │ │ ├── ntsecpkg.mh │ │ ├── ntstatus.sp │ │ ├── oaidl.mh │ │ ├── objarray.mh │ │ ├── objbase.mh │ │ ├── objidl.mh │ │ ├── objsafe.mh │ │ ├── objsel.mh │ │ ├── ocidl.mh │ │ ├── odbcinst.mh │ │ ├── ole.mh │ │ ├── ole2.mh │ │ ├── ole2ver.mh │ │ ├── oleacc.mh │ │ ├── oleauto.mh │ │ ├── olectl.mh │ │ ├── olectlid.mh │ │ ├── oledlg.mh │ │ ├── oleidl.mh │ │ ├── packoff.mh │ │ ├── packon.mh │ │ ├── pbt.mh │ │ ├── poppack.mh │ │ ├── powernot.sp │ │ ├── powrprof.mh │ │ ├── profinfo.mh │ │ ├── propidl.mh │ │ ├── propkdef.mh │ │ ├── propsys.mh │ │ ├── prsht.mh │ │ ├── psapi.mh │ │ ├── pshpack1.mh │ │ ├── pshpack2.mh │ │ ├── pshpack4.mh │ │ ├── pshpack8.mh │ │ ├── pstmsg.sp │ │ ├── qedit.mh │ │ ├── qos.mh │ │ ├── ras.mh │ │ ├── rasdlg.mh │ │ ├── raserror.mh │ │ ├── rassapi.mh │ │ ├── reason.mh │ │ ├── regstr.mh │ │ ├── richedit.mh │ │ ├── richole.mh │ │ ├── routprot.mh │ │ ├── rpc.mh │ │ ├── rpcasync.mh │ │ ├── rpcdce.mh │ │ ├── rpcdcep.mh │ │ ├── rpcndr.mh │ │ ├── rpcnsi.mh │ │ ├── rpcnsip.mh │ │ ├── rpcnterr.mh │ │ ├── rpcproxy.mh │ │ ├── rtutils.mh │ │ ├── sal.mh │ │ ├── schannel.mh │ │ ├── schedule.mh │ │ ├── schemdef.mh │ │ ├── schnlsp.mh │ │ ├── scode.mh │ │ ├── sddl.mh │ │ ├── sdkddver.mh │ │ ├── secext.mh │ │ ├── sechandl.sp │ │ ├── secstat.sp │ │ ├── security.mh │ │ ├── sergold.sp │ │ ├── serguid.sp │ │ ├── servprov.mh │ │ ├── setupapi.mh │ │ ├── shellapi.mh │ │ ├── sherrors.mh │ │ ├── shldisp.mh │ │ ├── shlguid.mh │ │ ├── shlobj.mh │ │ ├── shlwapi.mh │ │ ├── shobjidl.mh │ │ ├── shtypes.mh │ │ ├── sndmsg.sp │ │ ├── snmp.mh │ │ ├── spapidef.mh │ │ ├── specstr.mh │ │ ├── sql.mh │ │ ├── sqlext.mh │ │ ├── sqltypes.mh │ │ ├── sqlucode.mh │ │ ├── sspi.mh │ │ ├── statesys.sp │ │ ├── static.sp │ │ ├── stdapi.sp │ │ ├── stm.mh │ │ ├── storage.mh │ │ ├── storgold.sp │ │ ├── storguid.sp │ │ ├── stralign.mh │ │ ├── strmif.mh │ │ ├── strqcond.mh │ │ ├── strquery.mh │ │ ├── strsafe.mh │ │ ├── subauth.mh │ │ ├── svcguid.mh │ │ ├── tcpestat.mh │ │ ├── tcpipown.sp │ │ ├── tcpmib.mh │ │ ├── timecode.sp │ │ ├── tlhelp32.mh │ │ ├── tmschema.mh │ │ ├── tvout.mh │ │ ├── udpmib.mh │ │ ├── unknwn.mh │ │ ├── urlmon.mh │ │ ├── userenv.mh │ │ ├── usp10.mh │ │ ├── uuids.mh │ │ ├── uxtheme.mh │ │ ├── varenum.sp │ │ ├── verrsrc.mh │ │ ├── vfw.mh │ │ ├── vfwmsgs.mh │ │ ├── vidcap.mh │ │ ├── vmr9.mh │ │ ├── vptype.mh │ │ ├── vsstyle.mh │ │ ├── vssym32.mh │ │ ├── w32api.mh │ │ ├── wbemcli.mh │ │ ├── winable.mh │ │ ├── winbase.mh │ │ ├── winber.mh │ │ ├── wincon.mh │ │ ├── wincrypt.mh │ │ ├── windef.mh │ │ ├── windns.mh │ │ ├── windot11.mh │ │ ├── windows.mh │ │ ├── windowsx.mh │ │ ├── winefs.mh │ │ ├── winerror.mh │ │ ├── wingdi.mh │ │ ├── wininet.mh │ │ ├── winioctl.mh │ │ ├── winldap.mh │ │ ├── winnetwk.mh │ │ ├── winnls.mh │ │ ├── winnt.mh │ │ ├── winperf.mh │ │ ├── winreg.mh │ │ ├── winres.mh │ │ ├── winresrc.mh │ │ ├── winscard.mh │ │ ├── winshell.sp │ │ ├── winsmcrd.mh │ │ ├── winsnmp.mh │ │ ├── winsock.mh │ │ ├── winspool.mh │ │ ├── winsvc.mh │ │ ├── wintrust.mh │ │ ├── winuser.mh │ │ ├── winver.mh │ │ ├── wlantype.mh │ │ ├── wmistr.mh │ │ ├── wnnc.mh │ │ ├── ws2def.mh │ │ ├── ws2ipdef.mh │ │ ├── ws2spi.mh │ │ ├── ws2tcpip.mh │ │ ├── wsdkver.mh │ │ ├── wsipx.mh │ │ ├── wsnetbs.mh │ │ ├── wtsapi32.mh │ │ ├── wtypes.mh │ │ ├── xprtdefs.mh │ │ └── zmouse.mh │ ├── lang.ctl │ ├── lib │ │ ├── aclui.def │ │ ├── adsiid.c │ │ ├── advapi32.def │ │ ├── avicap32.def │ │ ├── avifil32.def │ │ ├── bcrypt.def │ │ ├── comctl32.def │ │ ├── comdlg32.def │ │ ├── credui.def │ │ ├── crypt32.def │ │ ├── cryptnet.def │ │ ├── ctl3d32.def │ │ ├── dbghelp.def │ │ ├── ddk │ │ │ ├── battc.def │ │ │ ├── cfgmgr32.def │ │ │ ├── classpnp.def │ │ │ ├── clfs.def │ │ │ ├── dxapi.def │ │ │ ├── hal.def │ │ │ ├── hid.def │ │ │ ├── hidparse.def │ │ │ ├── ks.def │ │ │ ├── ksecdd.def │ │ │ ├── mcd.def │ │ │ ├── ndis.def │ │ │ ├── ntdll.def │ │ │ ├── ntoskrnl.def │ │ │ ├── pshed.def │ │ │ ├── rtlver.c │ │ │ ├── scsiport.def │ │ │ ├── storport.def │ │ │ ├── tape.def │ │ │ ├── tdi.def │ │ │ ├── usbcamd.def │ │ │ ├── videoprt.def │ │ │ ├── wdmguid.c │ │ │ ├── win32k.def │ │ │ └── wmilib.def │ │ ├── ddraw.def │ │ ├── dflayout.def │ │ ├── dhcpcsvc.def │ │ ├── directx │ │ │ ├── d3d9.def │ │ │ ├── d3drm.def │ │ │ ├── dinpstat.c │ │ │ ├── dinput.def │ │ │ ├── dinput8.def │ │ │ ├── dsound.def │ │ │ └── dxguid.c │ │ ├── dnsapi.def │ │ ├── dsprop.def │ │ ├── dsuiext.def │ │ ├── faultrep.def │ │ ├── gdi32.def │ │ ├── glu32.def │ │ ├── htmlhelp.def │ │ ├── icm32.def │ │ ├── icmui.def │ │ ├── imagehlp.def │ │ ├── imm32.def │ │ ├── iphlpapi.def │ │ ├── kernel32.def │ │ ├── ksuser.def │ │ ├── largeint.c │ │ ├── lz32.def │ │ ├── mapi32.def │ │ ├── mfuuid.c │ │ ├── mgmtapi.def │ │ ├── mpr.def │ │ ├── mprapi.def │ │ ├── mqrt.def │ │ ├── msacm32.def │ │ ├── mscms.def │ │ ├── msimg32.def │ │ ├── msvfw32.def │ │ ├── mswsock.def │ │ ├── ncrypt.def │ │ ├── nddeapi.def │ │ ├── netapi32.def │ │ ├── newdev.def │ │ ├── normaliz.def │ │ ├── ntdsapi.def │ │ ├── ntdsbcli.def │ │ ├── odbc32.def │ │ ├── odbccp32.def │ │ ├── ole32.def │ │ ├── oleacc.def │ │ ├── oleaut32.def │ │ ├── olecli32.def │ │ ├── oledlg.def │ │ ├── olepro32.def │ │ ├── olesvr32.def │ │ ├── opengl32.def │ │ ├── powrprof.def │ │ ├── propsys.def │ │ ├── psapi.def │ │ ├── qosname.def │ │ ├── quartz.def │ │ ├── rasapi32.def │ │ ├── rasdlg.def │ │ ├── rassapi.def │ │ ├── rpcns4.def │ │ ├── rpcrt4.def │ │ ├── rtm.def │ │ ├── rtutils.def │ │ ├── scarddlg.def │ │ ├── secur32.def │ │ ├── setupapi.def │ │ ├── shdocvw.def │ │ ├── shell32.def │ │ ├── shfolder.def │ │ ├── shlwapi.def │ │ ├── snmpapi.def │ │ ├── strmiids.c │ │ ├── strquery.c │ │ ├── th32.def │ │ ├── url.def │ │ ├── urlmon.def │ │ ├── user32.def │ │ ├── userenv.def │ │ ├── usp10.def │ │ ├── uuid.c │ │ ├── uxtheme.def │ │ ├── version.def │ │ ├── vfwuuid.c │ │ ├── wbemuuid.c │ │ ├── wininet.def │ │ ├── winmm.def │ │ ├── winscard.def │ │ ├── winspool.def │ │ ├── wintrust.def │ │ ├── wldap32.def │ │ ├── ws2_32.def │ │ ├── wsnmp32.def │ │ ├── wsock32.def │ │ └── wtsapi32.def │ ├── master.mif │ ├── nt │ │ ├── ddk │ │ │ └── afile │ │ ├── directx │ │ │ └── afile │ │ ├── gl │ │ │ └── afile │ │ └── makefile │ ├── nt386 │ │ ├── ddk │ │ │ └── afile │ │ ├── directx │ │ │ └── afile │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── readme.txt │ └── test │ │ └── vatest.c ├── w32loadr │ ├── bexpand.asm │ ├── cmain32.asm │ ├── cstrtos2.asm │ ├── cstrtwnt.asm │ ├── dos386 │ │ └── makefile │ ├── dpmildr.asm │ ├── files.dat │ ├── int21.asm │ ├── int21dos.asm │ ├── int21nt.c │ ├── int21os2.c │ ├── int21pl.asm │ ├── int21win.asm │ ├── lang.ctl │ ├── ldrmsg.h │ ├── linux386 │ │ └── makefile │ ├── loader.c │ ├── loader.h │ ├── loader16.asm │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── ntstub.asm │ ├── os2386 │ │ └── makefile │ ├── os2ldr │ │ └── makefile │ ├── prereq.ctl │ ├── tnk.asm │ ├── w32bind.c │ └── x32start.asm ├── wasm │ ├── boot.ctl │ ├── bootmake │ ├── c │ │ ├── asmalloc.c │ │ ├── asmdata.c │ │ ├── asmeval.c │ │ ├── asmexpnd.c │ │ ├── asmfixup.c │ │ ├── asmins.c │ │ ├── asmjump.c │ │ ├── asmlabel.c │ │ ├── asmline.c │ │ ├── asmmatch.c │ │ ├── asmmsg.c │ │ ├── asmscan.c │ │ ├── asmstruc.c │ │ ├── asmsym.c │ │ ├── breakout.c │ │ ├── condasm.c │ │ ├── direct.c │ │ ├── fatal.c │ │ ├── finger.c │ │ ├── for.c │ │ ├── macro.c │ │ ├── main.c │ │ ├── mangle.c │ │ ├── posndir.c │ │ ├── queues.c │ │ ├── tbyte.c │ │ ├── wasmmsg.c │ │ ├── womputil.c │ │ └── write.c │ ├── doc │ │ ├── cmdlopts.txt │ │ └── fullops.txt │ ├── dos386 │ │ └── makefile │ ├── dosi86 │ │ └── makefile │ ├── exever.rc │ ├── files.dat │ ├── fullops.tok │ ├── h │ │ ├── asmalloc.h │ │ ├── asmdefs.h │ │ ├── asmerr.h │ │ ├── asmeval.h │ │ ├── asmexpnd.h │ │ ├── asmfixup.h │ │ ├── asmglob.h │ │ ├── asminlin.h │ │ ├── asminput.h │ │ ├── asmins.h │ │ ├── asminsd.h │ │ ├── asmlabel.h │ │ ├── asmopnds.h │ │ ├── asmops.h │ │ ├── asmshare.msg │ │ ├── asmstruc.h │ │ ├── asmsym.h │ │ ├── condasm.h │ │ ├── directd.h │ │ ├── directiv.h │ │ ├── fatal.h │ │ ├── fatald.h │ │ ├── hash.h │ │ ├── macro.h │ │ ├── mangle.h │ │ ├── options.gml │ │ ├── queues.h │ │ ├── tbyte.h │ │ ├── usage.sp │ │ ├── wasm.msg │ │ ├── wasm.rc │ │ ├── womp.msg │ │ ├── wompopt.h │ │ └── womputil.h │ ├── ide │ │ ├── wasm.tgt │ │ └── wasm.wpj │ ├── inlnops.tok │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── linuxppc │ │ └── makefile │ ├── mif │ │ ├── client.mif │ │ └── master.mif │ ├── mkopcod1.c │ ├── mkopcode.c │ ├── mkopcode.h │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── osi386 │ │ └── makefile │ ├── prereq.ctl │ ├── qnx386 │ │ └── makefile │ └── test │ │ ├── c │ │ └── chk_exec.c │ │ ├── createc.awk │ │ ├── devel │ │ ├── flatgrp.asm │ │ ├── flatgrp.emp │ │ ├── flatgrp.esm │ │ ├── irpexitm.asm │ │ ├── irpexitm.esm │ │ ├── jmp.asm │ │ ├── jmp.emp │ │ ├── jmp.esm │ │ ├── lea.asm │ │ ├── lea.emp │ │ ├── lea.esm │ │ ├── makefile │ │ ├── set386.asm │ │ ├── set386.emp │ │ ├── set386.esm │ │ ├── setjmp.asm │ │ ├── setjmp.emp │ │ ├── setjmp.esm │ │ ├── structjn.asm │ │ ├── structjn.emp │ │ └── structjn.esm │ │ ├── diag │ │ ├── b.asm │ │ ├── b.chk │ │ ├── callimpl.asm │ │ ├── callimpl.chk │ │ ├── callimpl.emp │ │ ├── callimpl.esm │ │ ├── cpureq.asm │ │ ├── cpureq.chk │ │ ├── diag01.asm │ │ ├── diag01.chk │ │ ├── diag02.asm │ │ ├── diag02.chk │ │ ├── diag03.asm │ │ ├── diag03.chk │ │ ├── diag04.asm │ │ ├── diag04.chk │ │ ├── diag05.asm │ │ ├── diag05.chk │ │ ├── diag06.asm │ │ ├── diag06.chk │ │ ├── diag07.asm │ │ ├── diag07.chk │ │ ├── diag08.asm │ │ ├── diag08.chk │ │ ├── do_ax.inc │ │ ├── error1.asm │ │ ├── error1.chk │ │ ├── extern1.asm │ │ ├── extern1.chk │ │ ├── float.asm │ │ ├── float.chk │ │ ├── float.emp │ │ ├── float.esm │ │ ├── foo.asm │ │ ├── foo.chk │ │ ├── foo.esm │ │ ├── include.asm │ │ ├── include.chk │ │ ├── irp.asm │ │ ├── irp.chk │ │ ├── jmpext.asm │ │ ├── jmpext.chk │ │ ├── jmpext.emp │ │ ├── jmpext.esm │ │ ├── jmpimpl.asm │ │ ├── jmpimpl.chk │ │ ├── jmpimpl.emp │ │ ├── jmpimpl.esm │ │ ├── l2.asm │ │ ├── l2.chk │ │ ├── l2.emp │ │ ├── l2.esm │ │ ├── l3.asm │ │ ├── l3.chk │ │ ├── l3.emp │ │ ├── l3.esm │ │ ├── makefile │ │ ├── newmif.asm │ │ ├── newmif.chk │ │ ├── newmif.emp │ │ ├── newmif.esm │ │ ├── proccall.asm │ │ ├── proccall.chk │ │ ├── proccall.esm │ │ ├── quote.asm │ │ ├── quote.chk │ │ ├── quote.esm │ │ ├── sizebug2.asm │ │ ├── sizebug2.chk │ │ ├── struct1.asm │ │ ├── struct1.chk │ │ └── struct1.esm │ │ ├── environ.mif │ │ ├── error.chk │ │ ├── fixlst1.sed │ │ ├── fixlst2.sed │ │ ├── fixlst3.awk │ │ ├── fixlst4.sed │ │ ├── ideal │ │ ├── enum.asm │ │ ├── ideal.asm │ │ ├── language.asm │ │ ├── makefile │ │ └── simseg.asm │ │ ├── inline │ │ ├── 3dnow.asm │ │ ├── 486.asm │ │ ├── adc.asm │ │ ├── add.asm │ │ ├── admodes.asm │ │ ├── admodes1.asm │ │ ├── admodes2.asm │ │ ├── admodes3.asm │ │ ├── admodes4.asm │ │ ├── admodes5.asm │ │ ├── admodes6.asm │ │ ├── amodes.asm │ │ ├── amodes1.asm │ │ ├── amodes2.asm │ │ ├── amodes3.asm │ │ ├── amodes4.asm │ │ ├── amodes5.asm │ │ ├── amodes6.asm │ │ ├── and.asm │ │ ├── asmbug1.asm │ │ ├── asmbug1.chk │ │ ├── asmbug10.asm │ │ ├── asmbug11.asm │ │ ├── asmbug12.asm │ │ ├── asmbug13.asm │ │ ├── asmbug2.asm │ │ ├── asmbug3.asm │ │ ├── asmbug4.asm │ │ ├── asmbug5.asm │ │ ├── asmbug6.asm │ │ ├── asmbug7.asm │ │ ├── asmbug8.asm │ │ ├── asmbug9.asm │ │ ├── bt.asm │ │ ├── bug.asm │ │ ├── bug31.c │ │ ├── bug31.esm │ │ ├── c286p.c │ │ ├── calljmp.asm │ │ ├── cc2.asm │ │ ├── cc2.chk │ │ ├── cmp.asm │ │ ├── cmpx.asm │ │ ├── dec.asm │ │ ├── disasm.asm │ │ ├── div.asm │ │ ├── dmodes1.asm │ │ ├── dmodes2.asm │ │ ├── dmodes3.asm │ │ ├── dmodes4.asm │ │ ├── dmodes5.asm │ │ ├── dmodes6.asm │ │ ├── enter.asm │ │ ├── extprocf.c │ │ ├── extprocf.esm │ │ ├── extprocn.c │ │ ├── extprocn.esm │ │ ├── fadd.asm │ │ ├── fcom.asm │ │ ├── fdiv.asm │ │ ├── filedos.c │ │ ├── filedos.esm │ │ ├── fixup.c │ │ ├── fixup.esm │ │ ├── fld.asm │ │ ├── fmul.asm │ │ ├── fp.asm │ │ ├── fpmisc.asm │ │ ├── fpmisc2.asm │ │ ├── fsub.asm │ │ ├── fubar.asm │ │ ├── fucom.asm │ │ ├── idiv.asm │ │ ├── imul.asm │ │ ├── in.asm │ │ ├── inc.asm │ │ ├── inline.mif │ │ ├── kernel.c │ │ ├── lea.asm │ │ ├── lod.asm │ │ ├── lxs.asm │ │ ├── makefile │ │ ├── misc.asm │ │ ├── misc2.asm │ │ ├── mmx.asm │ │ ├── modes.asm │ │ ├── modes1.asm │ │ ├── modes2.asm │ │ ├── modes3.asm │ │ ├── modes4.asm │ │ ├── modes5.asm │ │ ├── modes6.asm │ │ ├── mov.asm │ │ ├── mov2.asm │ │ ├── movs.asm │ │ ├── movx.asm │ │ ├── mul.asm │ │ ├── neg.asm │ │ ├── not.asm │ │ ├── or.asm │ │ ├── out.asm │ │ ├── outs.asm │ │ ├── pop.asm │ │ ├── pword.asm │ │ ├── pword.chk │ │ ├── rcl.asm │ │ ├── sal.asm │ │ ├── sbb.asm │ │ ├── scas.asm │ │ ├── setcc.asm │ │ ├── shld.asm │ │ ├── sse.asm │ │ ├── sse.chk │ │ ├── sse2.asm │ │ ├── sse2.chk │ │ ├── sse3.asm │ │ ├── sub.asm │ │ ├── test1.asm │ │ ├── tokens.c │ │ ├── try.asm │ │ ├── xadd.asm │ │ ├── xchg.asm │ │ └── xor.asm │ │ ├── makefile │ │ ├── readme.txt │ │ ├── test.mif │ │ ├── test1 │ │ ├── 387.asm │ │ ├── 387.esm │ │ ├── a.asm │ │ ├── a.esm │ │ ├── alias.asm │ │ ├── alignorg.asm │ │ ├── alignorg.emp │ │ ├── alignorg.esm │ │ ├── anon.asm │ │ ├── anon.esm │ │ ├── anthony.asm │ │ ├── anthony.emp │ │ ├── anthony.esm │ │ ├── atseg.asm │ │ ├── atseg.esm │ │ ├── backquot.asm │ │ ├── backquot.esm │ │ ├── bar.asm │ │ ├── bar.emp │ │ ├── bar.esm │ │ ├── beep.asm │ │ ├── beep.esm │ │ ├── bigext.asm │ │ ├── bigext.esm │ │ ├── bug.asm │ │ ├── bug.emp │ │ ├── bug.esm │ │ ├── c.asm │ │ ├── c.esm │ │ ├── cmps.asm │ │ ├── cmps.esm │ │ ├── comm.asm │ │ ├── comm.emp │ │ ├── comm.esm │ │ ├── current.asm │ │ ├── current.emp │ │ ├── current.esm │ │ ├── data.asm │ │ ├── data.esm │ │ ├── do_ax.asm │ │ ├── do_ax.esm │ │ ├── dos16m.asm │ │ ├── dos16m.emp │ │ ├── dos16m.esm │ │ ├── dosinite.asm │ │ ├── dosinite.emp │ │ ├── dosinite.esm │ │ ├── dosstart.asm │ │ ├── dosstart.emp │ │ ├── dosstart.esm │ │ ├── dup.asm │ │ ├── dup.esm │ │ ├── empty.asm │ │ ├── empty.esm │ │ ├── f.asm │ │ ├── f.esm │ │ ├── farjmp.asm │ │ ├── farjmp.emp │ │ ├── farjmp.esm │ │ ├── fcom.asm │ │ ├── fcom.emp │ │ ├── fcom.esm │ │ ├── five.asm │ │ ├── five.emp │ │ ├── five.esm │ │ ├── float.asm │ │ ├── float.esm │ │ ├── fubar.asm │ │ ├── fubar.esm │ │ ├── g.asm │ │ ├── g.esm │ │ ├── getenv.asm │ │ ├── getenv.emp │ │ ├── hello.asm │ │ ├── hello.esm │ │ ├── ifs.asm │ │ ├── ins.asm │ │ ├── ins.esm │ │ ├── jmpfword.asm │ │ ├── jmpfword.emp │ │ ├── jmpfword.esm │ │ ├── jmpsize.asm │ │ ├── jmpsize.esm │ │ ├── jmptst.asm │ │ ├── jmptst.emp │ │ ├── jmptst.esm │ │ ├── labelbug.asm │ │ ├── loader2.asm │ │ ├── loader2.emp │ │ ├── loader2.esm │ │ ├── lods.asm │ │ ├── lods.esm │ │ ├── maaak.asm │ │ ├── maaak.emp │ │ ├── maaak.esm │ │ ├── macro.asm │ │ ├── macro.emp │ │ ├── macro.esm │ │ ├── macroloc.asm │ │ ├── macroloc.esm │ │ ├── macrotst.asm │ │ ├── macrotst.esm │ │ ├── main.asm │ │ ├── main.emp │ │ ├── main.esm │ │ ├── mainnew.asm │ │ ├── mainnew.emp │ │ ├── mainnew.esm │ │ ├── makefile │ │ ├── mangle.asm │ │ ├── masmsuks.asm │ │ ├── masmsuks.esm │ │ ├── masmtest.asm │ │ ├── masmtest.emp │ │ ├── masmtest.esm │ │ ├── movs.asm │ │ ├── movs.esm │ │ ├── new.asm │ │ ├── new.esm │ │ ├── newbug.asm │ │ ├── newbug.emp │ │ ├── newbug.esm │ │ ├── newproc.asm │ │ ├── newproc.esm │ │ ├── notcomm.asm │ │ ├── notcomm.emp │ │ ├── notcomm.esm │ │ ├── offset.asm │ │ ├── offset.emp │ │ ├── org.asm │ │ ├── org.esm │ │ ├── orgage.asm │ │ ├── orgage.esm │ │ ├── outs.asm │ │ ├── outs.esm │ │ ├── passtest.asm │ │ ├── passtest.esm │ │ ├── proc.asm │ │ ├── proc3.asm │ │ ├── pub.asm │ │ ├── pub.esm │ │ ├── pub2.asm │ │ ├── pub2.esm │ │ ├── pubdef.asm │ │ ├── pubdef.esm │ │ ├── q.asm │ │ ├── q.esm │ │ ├── qnxstrt.asm │ │ ├── qnxstrt.emp │ │ ├── qnxstrt.esm │ │ ├── scas.asm │ │ ├── scas.esm │ │ ├── segoff.asm │ │ ├── shell.asm │ │ ├── shell.esm │ │ ├── size.asm │ │ ├── sizebug.asm │ │ ├── sizebug.esm │ │ ├── sizlen.asm │ │ ├── sizlen.esm │ │ ├── stos.asm │ │ ├── stos.esm │ │ ├── strmang.asm │ │ ├── struct.asm │ │ ├── struct.esm │ │ ├── t2.asm │ │ ├── t2.emp │ │ ├── t2.esm │ │ ├── test.asm │ │ ├── test.esm │ │ ├── tmp2.asm │ │ ├── tn.asm │ │ ├── tn.esm │ │ ├── wincall.asm │ │ ├── wincall.emp │ │ ├── wincall.esm │ │ ├── word.asm │ │ ├── word.emp │ │ ├── word.esm │ │ ├── x.asm │ │ ├── x.esm │ │ ├── xx.asm │ │ └── xx.esm │ │ ├── test2 │ │ ├── a.asm │ │ ├── a.esm │ │ ├── adc.asm │ │ ├── adc.emp │ │ ├── adc.esm │ │ ├── arithop.asm │ │ ├── arithop.esm │ │ ├── asmbug.asm │ │ ├── asmbug.esm │ │ ├── asmbug1.asm │ │ ├── asmbug1.esm │ │ ├── b.asm │ │ ├── b.emp │ │ ├── b.esm │ │ ├── bar.asm │ │ ├── bar.esm │ │ ├── bitwise.asm │ │ ├── bitwise.emp │ │ ├── bitwise.esm │ │ ├── bunk.asm │ │ ├── bunk.esm │ │ ├── c.asm │ │ ├── c.esm │ │ ├── dasm.asm │ │ ├── dasm.emp │ │ ├── dasm.esm │ │ ├── data.asm │ │ ├── data.emp │ │ ├── data.esm │ │ ├── dup.asm │ │ ├── enter.asm │ │ ├── enter.esm │ │ ├── fadd.asm │ │ ├── fadd.esm │ │ ├── foo.asm │ │ ├── foo.esm │ │ ├── fubar.asm │ │ ├── fubar.emp │ │ ├── fubar.esm │ │ ├── help.asm │ │ ├── help.esm │ │ ├── imul.asm │ │ ├── imul.emp │ │ ├── imul.esm │ │ ├── j2.asm │ │ ├── j2.emp │ │ ├── j2.esm │ │ ├── jmp.asm │ │ ├── jmp.emp │ │ ├── jmp.esm │ │ ├── jmptst.asm │ │ ├── jmptst.emp │ │ ├── jmptst.esm │ │ ├── jnk.asm │ │ ├── jnk.emp │ │ ├── jnk.esm │ │ ├── label.asm │ │ ├── label.emp │ │ ├── label.esm │ │ ├── makefile │ │ ├── new.asm │ │ ├── old1.asm │ │ ├── old1.emp │ │ ├── old1.esm │ │ ├── old2.asm │ │ ├── old2.esm │ │ ├── ptrtest.asm │ │ ├── read.me │ │ ├── reljmp.asm │ │ ├── reljmp.emp │ │ ├── reljmp.esm │ │ ├── reljmp16.asm │ │ ├── reljmp16.emp │ │ ├── reljmp16.esm │ │ ├── scal.asm │ │ ├── scal.emp │ │ ├── scal.esm │ │ ├── struct.asm │ │ ├── struct.emp │ │ ├── stupid.asm │ │ ├── stupid.emp │ │ ├── stupid.esm │ │ ├── t.asm │ │ ├── t.emp │ │ ├── t.esm │ │ ├── t01.asm │ │ ├── t01.esm │ │ ├── t02.asm │ │ ├── t02.emp │ │ ├── t02.esm │ │ ├── t03.asm │ │ ├── t03.emp │ │ ├── t03.esm │ │ ├── t04.asm │ │ ├── t04.emp │ │ ├── t04.esm │ │ ├── t05.asm │ │ ├── t05.emp │ │ ├── t05.esm │ │ ├── t06.asm │ │ ├── t06.emp │ │ ├── t06.esm │ │ ├── t07.asm │ │ ├── t07.esm │ │ ├── t08.asm │ │ ├── t08.emp │ │ ├── t09.asm │ │ ├── t09.esm │ │ ├── t10.asm │ │ ├── t10.esm │ │ ├── t11.asm │ │ ├── t11.emp │ │ ├── t11.esm │ │ ├── t12.asm │ │ ├── t12.emp │ │ ├── t12.esm │ │ ├── t13.asm │ │ ├── t13.emp │ │ ├── t13.esm │ │ ├── t14.asm │ │ ├── t14.emp │ │ ├── t14.esm │ │ ├── t15.asm │ │ ├── t15.esm │ │ ├── t16.asm │ │ ├── t16.emp │ │ ├── t16.esm │ │ ├── t17.asm │ │ ├── t17.emp │ │ ├── t17.esm │ │ ├── t18.asm │ │ ├── t18.emp │ │ ├── t18.esm │ │ ├── t19.asm │ │ ├── t19.emp │ │ ├── t19.esm │ │ ├── t20.asm │ │ ├── t20.emp │ │ ├── t20.esm │ │ ├── t21.asm │ │ ├── t21.emp │ │ ├── t21.esm │ │ ├── t22.asm │ │ ├── t22.emp │ │ ├── t22.esm │ │ ├── t23.asm │ │ ├── t23.emp │ │ ├── t23.esm │ │ ├── t24.asm │ │ ├── t24.emp │ │ ├── t24.esm │ │ ├── t25.asm │ │ ├── t25.esm │ │ ├── t26.asm │ │ ├── t26.emp │ │ ├── t26.esm │ │ ├── t27a.asm │ │ ├── t27a.esm │ │ ├── t27b.asm │ │ ├── t27b.esm │ │ ├── t28.asm │ │ ├── t28.esm │ │ ├── t29.asm │ │ ├── t29.esm │ │ ├── t30.asm │ │ ├── t30.emp │ │ ├── t30.esm │ │ ├── t31.asm │ │ ├── t32.asm │ │ ├── t32.emp │ │ ├── t32.esm │ │ ├── t33.asm │ │ ├── t33.emp │ │ ├── t33.esm │ │ ├── t34.asm │ │ ├── t34.emp │ │ ├── t34.esm │ │ ├── t35.asm │ │ ├── t35.esm │ │ ├── t36.asm │ │ ├── t36.esm │ │ ├── t37.asm │ │ ├── t37.emp │ │ ├── t37.esm │ │ ├── t38.asm │ │ ├── t38.emp │ │ ├── t38.esm │ │ ├── t39.asm │ │ ├── t39.esm │ │ ├── t40.asm │ │ ├── t40.esm │ │ ├── t51.asm │ │ ├── t51.esm │ │ ├── test.asm │ │ ├── test.esm │ │ ├── timer.asm │ │ ├── timer.esm │ │ ├── tmp1.asm │ │ ├── tmp1.emp │ │ └── tmp1.esm │ │ └── test3 │ │ ├── 3dnow.asm │ │ ├── 3dnow.emp │ │ ├── 3dnow.esm │ │ ├── absjumps.asm │ │ ├── absjumps.emp │ │ ├── absjumps.esm │ │ ├── addrmode.asm │ │ ├── addrmode.esm │ │ ├── allign.asm │ │ ├── allign.esm │ │ ├── callcnv1.asm │ │ ├── callcnv1.emp │ │ ├── callcnv1.esm │ │ ├── callcnv2.asm │ │ ├── callcnv2.emp │ │ ├── callcnv2.esm │ │ ├── callcnv3.asm │ │ ├── callcnv3.emp │ │ ├── callcnv3.esm │ │ ├── callcnv4.asm │ │ ├── callcnv4.emp │ │ ├── callcnv4.esm │ │ ├── callcnv5.asm │ │ ├── callcnv5.emp │ │ ├── callcnv5.esm │ │ ├── commdef.asm │ │ ├── datamix1.asm │ │ ├── datamix1.emp │ │ ├── datamix1.esm │ │ ├── datamix2.asm │ │ ├── datamix2.emp │ │ ├── datamix2.esm │ │ ├── dgroup.asm │ │ ├── dgroup.esm │ │ ├── dsxdebug.inc │ │ ├── dsxfork.asm │ │ ├── dsxfork.emp │ │ ├── dsxfork.esm │ │ ├── dsxhdlr.asm │ │ ├── dsxhdlr.esm │ │ ├── expr01.asm │ │ ├── expr01.emp │ │ ├── expr01.esm │ │ ├── extern1.asm │ │ ├── extern1.emp │ │ ├── extern1.esm │ │ ├── extern2.asm │ │ ├── extern2.emp │ │ ├── extern2.esm │ │ ├── extern3.asm │ │ ├── extprocf.asm │ │ ├── extprocf.emp │ │ ├── extprocf.esm │ │ ├── extprocn.asm │ │ ├── extprocn.emp │ │ ├── extprocn.esm │ │ ├── fpu1.asm │ │ ├── fpu1.emp │ │ ├── fpu1.esm │ │ ├── fpu2.asm │ │ ├── fpu2.emp │ │ ├── fpu2.esm │ │ ├── fpu3.asm │ │ ├── fpu3.emp │ │ ├── fpu3.esm │ │ ├── fpu4.asm │ │ ├── fpu4.emp │ │ ├── fpu4.esm │ │ ├── fpu5.asm │ │ ├── fpu5.emp │ │ ├── fpu5.esm │ │ ├── fpu6.asm │ │ ├── fpu6.emp │ │ ├── fpu6.esm │ │ ├── fpu7.asm │ │ ├── fpu7.emp │ │ ├── fpu7.esm │ │ ├── indirect.asm │ │ ├── jmpshrt.asm │ │ ├── jmpshrt.emp │ │ ├── jmpshrt.esm │ │ ├── lsxxx.asm │ │ ├── lsxxx.emp │ │ ├── lsxxx.esm │ │ ├── makefile │ │ ├── mmx.asm │ │ ├── mmx.emp │ │ ├── mmx.esm │ │ ├── movx.asm │ │ ├── movx.emp │ │ ├── movx.esm │ │ ├── mseg.asm │ │ ├── mseg.esm │ │ ├── opi8u.asm │ │ ├── opi8u.esm │ │ ├── plsintr.asm │ │ ├── push.asm │ │ ├── push.emp │ │ ├── push.esm │ │ ├── retiret.asm │ │ ├── retiret.esm │ │ ├── seg16.asm │ │ ├── seg16.emp │ │ ├── seg16.esm │ │ ├── segatrep.asm │ │ ├── segatrep.esm │ │ ├── segregs.asm │ │ ├── segregs.esm │ │ ├── shift.asm │ │ ├── shift.esm │ │ ├── sse.asm │ │ ├── sse.emp │ │ ├── sse.esm │ │ ├── sse2.asm │ │ ├── sse2.emp │ │ ├── sse2.esm │ │ ├── sse3.asm │ │ ├── sse3.emp │ │ ├── sse3.esm │ │ ├── structdd.asm │ │ ├── structdd.emp │ │ ├── structdd.esm │ │ ├── support.asm │ │ ├── support.esm │ │ ├── tbyte.asm │ │ ├── tbyte.esm │ │ ├── testequ.asm │ │ ├── tst1.asm │ │ ├── tst1.emp │ │ └── tst1.esm ├── watcom │ ├── c │ │ ├── autodept.c │ │ ├── autoenv.c │ │ ├── bitset.c │ │ ├── chktest.c │ │ ├── clibext.c │ │ ├── cmdlhelp.c │ │ ├── i64.c │ │ ├── idedrv.c │ │ ├── idemsgfm.c │ │ ├── idemsgpr.c │ │ ├── jitdump.c │ │ ├── mapper.c │ │ ├── mknver.c │ │ ├── mngless.c │ │ ├── objautod.c │ │ ├── resautod.c │ │ ├── secure.c │ │ ├── sortlist.c │ │ ├── srcmgt.c │ │ ├── symtab.c │ │ ├── testsort.c │ │ └── testsrcm.c │ ├── h │ │ ├── align.h │ │ ├── ar.h │ │ ├── autodep.h │ │ ├── autodept.h │ │ ├── autoenv.h │ │ ├── axpencod.h │ │ ├── bancfg.h │ │ ├── banner.h │ │ ├── bool.h │ │ ├── cgblip.h │ │ ├── clibext.h │ │ ├── clibint.h │ │ ├── cmdlhelp.h │ │ ├── cmnvinfo.rc │ │ ├── coff.h │ │ ├── cpuid.h │ │ ├── cv4.h │ │ ├── cv4axp.h │ │ ├── cv4f.h │ │ ├── cv4intl.h │ │ ├── cv4nums.h │ │ ├── cv4pads.h │ │ ├── cv4syms.h │ │ ├── cv4types.h │ │ ├── cv4w.h │ │ ├── dbg386.h │ │ ├── dbgmod.h │ │ ├── dilproto.h │ │ ├── diskos.h │ │ ├── dpmi.h │ │ ├── dwarf.h │ │ ├── dwati.h │ │ ├── dwformi.h │ │ ├── dwloccl.h │ │ ├── dwlocinf.h │ │ ├── dwlocop.h │ │ ├── dwregaxp.h │ │ ├── dwreginf.h │ │ ├── dwregmps.h │ │ ├── dwregppc.h │ │ ├── dwregspc.h │ │ ├── dwtagi.h │ │ ├── dxproto.h │ │ ├── ecsproto.h │ │ ├── elfspec.h │ │ ├── enterdb.h │ │ ├── errout.h │ │ ├── exe16m.h │ │ ├── exedos.h │ │ ├── exeelf.h │ │ ├── exeflat.h │ │ ├── exenov.h │ │ ├── exeos2.h │ │ ├── exepe.h │ │ ├── exephar.h │ │ ├── exeqnx.h │ │ ├── exerdos.h │ │ ├── exezdos.h │ │ ├── extender.h │ │ ├── filedll.h │ │ ├── fstatus.inc │ │ ├── hll.h │ │ ├── hlltypes.h │ │ ├── i64.h │ │ ├── idedll.h │ │ ├── idedrv.h │ │ ├── int21.inc │ │ ├── int64.hpp │ │ ├── jit.h │ │ ├── lib.h │ │ ├── macho.h │ │ ├── machtype.h │ │ ├── mapper.h │ │ ├── mapper.hpp │ │ ├── mapsym.h │ │ ├── mathcode.h │ │ ├── mdef.inc │ │ ├── metaconv.h │ │ ├── mipsenc.h │ │ ├── mngless.h │ │ ├── msstdarg.h │ │ ├── objautod.h │ │ ├── os2dbg.h │ │ ├── ostype.h │ │ ├── ovldbg.h │ │ ├── ovltab.h │ │ ├── ovltab.inc │ │ ├── owcomp.h │ │ ├── owflat.h │ │ ├── p5prof.h │ │ ├── p5prof.inc │ │ ├── p5timer.hpp │ │ ├── patchsig.h │ │ ├── pathgrp.h │ │ ├── pcobj.h │ │ ├── penwin.h │ │ ├── phandle.h │ │ ├── pm1632.h │ │ ├── poppck.h │ │ ├── ppcenc.h │ │ ├── proc386.h │ │ ├── profiler.hpp │ │ ├── pushpck1.h │ │ ├── pushpck2.h │ │ ├── pushpck4.h │ │ ├── rdk.h │ │ ├── rdos.h │ │ ├── rdosdev.h │ │ ├── rdoshdr.h │ │ ├── rdu.h │ │ ├── register.inc │ │ ├── rotate.h │ │ ├── rsiproto.h │ │ ├── rtinit.h │ │ ├── rtprior.h │ │ ├── secure.h │ │ ├── sortlist.h │ │ ├── sparcenc.h │ │ ├── srcmgt.def │ │ ├── srcmgt.h │ │ ├── struct.inc │ │ ├── stword.inc │ │ ├── swchar.h │ │ ├── symtab.h │ │ ├── tinyio.h │ │ ├── tistrail.h │ │ ├── uint64.hpp │ │ ├── utf8supp.h │ │ ├── vdmdbg.h │ │ ├── vxd_ddb.h │ │ ├── walloca.h │ │ ├── watcom.h │ │ ├── watlimit.h │ │ ├── wdebug.h │ │ ├── win1632.h │ │ ├── windebug.h │ │ ├── winmem32.h │ │ ├── wos2.h │ │ ├── wreslang.h │ │ ├── wresset2.h │ │ ├── wressetr.h │ │ ├── wstd.h │ │ ├── xfloat.h │ │ └── xinit.inc │ ├── lang.ctl │ ├── lib │ │ └── readme.txt │ └── test │ │ ├── makefile │ │ ├── testdir.c │ │ └── testtiny.c ├── wattcp │ ├── dosi86 │ │ └── makefile │ ├── lang.ctl │ └── master.mif ├── wclass │ ├── cpp │ │ ├── wabout.cpp │ │ ├── wautodlg.cpp │ │ ├── wbaritem.cpp │ │ ├── wboolsw.cpp │ │ ├── wbutton.cpp │ │ ├── wcheckbx.cpp │ │ ├── wclass.cpp │ │ ├── wcmdargs.cpp │ │ ├── wcmdlist.cpp │ │ ├── wcolrdlg.cpp │ │ ├── wcombox.cpp │ │ ├── wcontrol.cpp │ │ ├── wdialog.cpp │ │ ├── weditbox.cpp │ │ ├── weditdlg.cpp │ │ ├── wfile.cpp │ │ ├── wfiledlg.cpp │ │ ├── wfilelst.cpp │ │ ├── wfilenam.cpp │ │ ├── wflashp.cpp │ │ ├── wgroupbx.cpp │ │ ├── whotspot.cpp │ │ ├── winflist.cpp │ │ ├── winpdlg.cpp │ │ ├── wlistbox.cpp │ │ ├── wmdichld.cpp │ │ ├── wmdiwndw.cpp │ │ ├── wmenu.cpp │ │ ├── wmenuitm.cpp │ │ ├── wmenuobj.cpp │ │ ├── wmenusep.cpp │ │ ├── wmetrics.cpp │ │ ├── wmodel.cpp │ │ ├── wmsgdlg.cpp │ │ ├── wname.cpp │ │ ├── wobjfile.cpp │ │ ├── wobjmap.cpp │ │ ├── wpaint.cpp │ │ ├── wpickbox.cpp │ │ ├── wpickcbx.cpp │ │ ├── wpickdlg.cpp │ │ ├── wpicklst.cpp │ │ ├── wpopmenu.cpp │ │ ├── wpshbttn.cpp │ │ ├── wradbttn.cpp │ │ ├── wrect.cpp │ │ ├── wresstr.cpp │ │ ├── wstatdlg.cpp │ │ ├── wstatwin.cpp │ │ ├── wstring.cpp │ │ ├── wstrlist.cpp │ │ ├── wsyshelp.cpp │ │ ├── wtext.cpp │ │ ├── wtokfile.cpp │ │ ├── wtoolbar.cpp │ │ ├── wvcllctn.cpp │ │ ├── wview.cpp │ │ ├── wvlist.cpp │ │ ├── wwindow.cpp │ │ └── wwinmain.cpp │ ├── dos │ │ ├── dos386 │ │ │ ├── makefile │ │ │ └── wclass.tgt │ │ ├── dosi86 │ │ │ ├── makefile │ │ │ └── wclass.tgt │ │ └── hpp │ │ │ └── wsystem.hpp │ ├── hpp │ │ ├── _windows.hpp │ │ ├── wabout.hpp │ │ ├── wautodlg.hpp │ │ ├── wbaritem.hpp │ │ ├── wboolsw.hpp │ │ ├── wbutton.hpp │ │ ├── wcheckbx.hpp │ │ ├── wclass.hpp │ │ ├── wcmdargs.hpp │ │ ├── wcmdlist.hpp │ │ ├── wcolour.hpp │ │ ├── wcolrdlg.hpp │ │ ├── wcombox.hpp │ │ ├── wcontrol.hpp │ │ ├── wdialog.hpp │ │ ├── weditbox.hpp │ │ ├── weditdlg.hpp │ │ ├── wfile.hpp │ │ ├── wfiledlg.hpp │ │ ├── wfilelst.hpp │ │ ├── wfilenam.hpp │ │ ├── wflashp.hpp │ │ ├── wgroupbx.hpp │ │ ├── whotspot.hpp │ │ ├── winflist.hpp │ │ ├── winpdlg.hpp │ │ ├── wkeydefs.hpp │ │ ├── wlines.hpp │ │ ├── wlistbox.hpp │ │ ├── wmdichld.hpp │ │ ├── wmdiwndw.hpp │ │ ├── wmenu.hpp │ │ ├── wmenuitm.hpp │ │ ├── wmenuobj.hpp │ │ ├── wmenusep.hpp │ │ ├── wmetrics.hpp │ │ ├── wmodel.hpp │ │ ├── wmsgdlg.hpp │ │ ├── wname.hpp │ │ ├── wobject.hpp │ │ ├── wobjfile.hpp │ │ ├── wobjmap.hpp │ │ ├── wordinal.hpp │ │ ├── wpaint.hpp │ │ ├── wpickbox.hpp │ │ ├── wpickcbx.hpp │ │ ├── wpickdlg.hpp │ │ ├── wpicklst.hpp │ │ ├── wpoint.hpp │ │ ├── wpopmenu.hpp │ │ ├── wpshbttn.hpp │ │ ├── wradbttn.hpp │ │ ├── wrect.hpp │ │ ├── wregion.hpp │ │ ├── wres.hpp │ │ ├── wresstr.hpp │ │ ├── wstatdlg.hpp │ │ ├── wstates.hpp │ │ ├── wstatwin.hpp │ │ ├── wstring.hpp │ │ ├── wstrlist.hpp │ │ ├── wstrobjs.hpp │ │ ├── wsyshelp.hpp │ │ ├── wtext.hpp │ │ ├── wtokfile.hpp │ │ ├── wtoolbar.hpp │ │ ├── wtptlist.hpp │ │ ├── wvcllctn.hpp │ │ ├── wview.hpp │ │ ├── wvlist.hpp │ │ ├── wwindow.hpp │ │ └── wwinmain.hpp │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── mif │ │ ├── client.mif │ │ └── master.mif │ ├── pm │ │ ├── cpp │ │ │ ├── wclient.cpp │ │ │ ├── wddeobj.cpp │ │ │ ├── wprocess.cpp │ │ │ ├── wserver.cpp │ │ │ ├── wsystem.cpp │ │ │ └── wtimer.cpp │ │ ├── hpp │ │ │ ├── system.hpp │ │ │ ├── wclient.hpp │ │ │ ├── wddeobj.hpp │ │ │ ├── wprocess.hpp │ │ │ ├── wserver.hpp │ │ │ ├── wsystem.hpp │ │ │ └── wtimer.hpp │ │ ├── os2386 │ │ │ ├── makefile │ │ │ └── wclass.tgt │ │ └── test │ │ │ ├── makefile │ │ │ ├── wclass.tgt │ │ │ └── wsystem.cpp │ └── win │ │ ├── cpp │ │ ├── wclient.cpp │ │ ├── wprocess.cpp │ │ ├── wserver.cpp │ │ ├── wsystem.cpp │ │ └── wtimer.cpp │ │ ├── hpp │ │ ├── system.hpp │ │ ├── wclient.hpp │ │ ├── wprocess.hpp │ │ ├── wserver.hpp │ │ ├── wsystem.hpp │ │ └── wtimer.hpp │ │ ├── nt386 │ │ ├── makefile │ │ └── wclass.tgt │ │ ├── ntaxp │ │ └── makefile │ │ └── wini86 │ │ ├── makefile │ │ └── wclass.tgt ├── wdisasm │ ├── c │ │ ├── docode.c │ │ ├── dopcode.c │ │ ├── format.c │ │ ├── formins.c │ │ ├── fppname.c │ │ ├── fpptab.c │ │ ├── fpputil.c │ │ ├── hashtabl.c │ │ ├── insname.c │ │ ├── instab.c │ │ ├── main.c │ │ ├── o2adata.c │ │ ├── obj2asm.c │ │ ├── objdasm.c │ │ ├── objemit.c │ │ ├── objorl.c │ │ ├── objseg.c │ │ ├── objutil.c │ │ ├── pcio.c │ │ ├── pcoio.c │ │ ├── pcoparse.c │ │ ├── pcorec.c │ │ ├── pcoutil.c │ │ ├── regname.c │ │ ├── rwdata.c │ │ ├── segacc.c │ │ ├── swchar.c │ │ ├── symfind.c │ │ ├── symmgt.c │ │ ├── symutil.c │ │ ├── sysio.c │ │ ├── sysutil.c │ │ ├── textdef.c │ │ ├── unix.c │ │ ├── wcode.c │ │ └── wdismsg.c │ ├── compile.gbl │ ├── files.dat │ ├── h │ │ ├── consts.h │ │ ├── deasm.h │ │ ├── disasm.h │ │ ├── formopt.h │ │ ├── fpptype.h │ │ ├── global.h │ │ ├── hashtabl.h │ │ ├── insdef.h │ │ ├── inspick.h │ │ ├── instr.h │ │ ├── intrface.h │ │ ├── mmpick.h │ │ ├── object.h │ │ ├── opdesc.h │ │ ├── optype.h │ │ ├── pcodef.h │ │ ├── prototyp.h │ │ ├── regdef.h │ │ ├── regpick.h │ │ ├── standard.h │ │ ├── trans.h │ │ ├── wcode.h │ │ ├── wdisasm.rc │ │ ├── wdismsg.h │ │ └── word.h │ ├── lang.ctl │ └── mif │ │ └── disasm.mif ├── wgml │ ├── c │ │ ├── copdev.c │ │ ├── copdir.c │ │ ├── copdrv.c │ │ ├── copfiles.c │ │ ├── copfon.c │ │ ├── copfunc.c │ │ ├── cophdr.c │ │ ├── devfuncs.c │ │ ├── findfile.c │ │ ├── gaddress.c │ │ ├── gargutil.c │ │ ├── gauthor.c │ │ ├── gbanner.c │ │ ├── gbinclud.c │ │ ├── gchpxsfq.c │ │ ├── gcmt.c │ │ ├── gdata.c │ │ ├── gdate.c │ │ ├── gdeflay.c │ │ ├── gdocnum.c │ │ ├── gdocpage.c │ │ ├── gdocsect.c │ │ ├── gdummy.c │ │ ├── gerror.c │ │ ├── gerrorxx.c │ │ ├── getnum.c │ │ ├── gfigtags.c │ │ ├── gfnefn.c │ │ ├── ggraphic.c │ │ ├── ghx.c │ │ ├── ginclude.c │ │ ├── gindexut.c │ │ ├── gixx.c │ │ ├── glabsprf.c │ │ ├── gladdres.c │ │ ├── glappndx.c │ │ ├── glauthor.c │ │ ├── glayout.c │ │ ├── glayutil.c │ │ ├── glbandef.c │ │ ├── glbanner.c │ │ ├── glbanreg.c │ │ ├── glbodbck.c │ │ ├── glconvrt.c │ │ ├── gldate.c │ │ ├── gldd.c │ │ ├── gldeflt.c │ │ ├── gldocnum.c │ │ ├── glfig.c │ │ ├── glfigcap.c │ │ ├── glfigdsc.c │ │ ├── glfiglst.c │ │ ├── glflpgn.c │ │ ├── glfn.c │ │ ├── glheadng.c │ │ ├── glhx.c │ │ ├── glindex.c │ │ ├── glix.c │ │ ├── glixhead.c │ │ ├── gllp.c │ │ ├── gllq.c │ │ ├── glnote.c │ │ ├── glpage.c │ │ ├── glpc.c │ │ ├── glq.c │ │ ├── gltitle.c │ │ ├── gltitlep.c │ │ ├── gltoc.c │ │ ├── gltochx.c │ │ ├── gltocpgn.c │ │ ├── glwidow.c │ │ ├── glxl.c │ │ ├── glxmp.c │ │ ├── glxxfont.c │ │ ├── gmacdict.c │ │ ├── gmemory.c │ │ ├── gnestut.c │ │ ├── goptions.c │ │ ├── gpagegeo.c │ │ ├── gpb.c │ │ ├── gppcnote.c │ │ ├── gprocess.c │ │ ├── gproctxt.c │ │ ├── grefdict.c │ │ ├── gresrch.c │ │ ├── gsbdbius.c │ │ ├── gsbr.c │ │ ├── gsbx.c │ │ ├── gscan.c │ │ ├── gscd.c │ │ ├── gscofoju.c │ │ ├── gscs.c │ │ ├── gsct.c │ │ ├── gsdccw.c │ │ ├── gset.c │ │ ├── gsetvar.c │ │ ├── gsfbfk.c │ │ ├── gsfc2d.c │ │ ├── gsfc2x.c │ │ ├── gsfd2c.c │ │ ├── gsfdelst.c │ │ ├── gsfindex.c │ │ ├── gsfinsrt.c │ │ ├── gsfleft.c │ │ ├── gsflngth.c │ │ ├── gsflowup.c │ │ ├── gsfmin.c │ │ ├── gsfright.c │ │ ├── gsfstrip.c │ │ ├── gsfsubst.c │ │ ├── gsftrans.c │ │ ├── gsfuncs.c │ │ ├── gsfunelu.c │ │ ├── gsfveclp.c │ │ ├── gsfwidth.c │ │ ├── gsfwordx.c │ │ ├── gsga.c │ │ ├── gsgoto.c │ │ ├── gsgt.c │ │ ├── gshy.c │ │ ├── gsifdoel.c │ │ ├── gsimbed.c │ │ ├── gsin.c │ │ ├── gsix.c │ │ ├── gsli.c │ │ ├── gsmacro.c │ │ ├── gsnl.c │ │ ├── gsoc.c │ │ ├── gspacpcc.c │ │ ├── gspe.c │ │ ├── gspp.c │ │ ├── gspu.c │ │ ├── gssksp.c │ │ ├── gstb.c │ │ ├── gstitr.c │ │ ├── gsty.c │ │ ├── gsymvar.c │ │ ├── gsyssym.c │ │ ├── gtagdict.c │ │ ├── gtitle.c │ │ ├── gtxtpool.c │ │ ├── gusertag.c │ │ ├── gutil.c │ │ ├── gxl.c │ │ ├── gxmp.c │ │ ├── gxxref.c │ │ ├── outbuff.c │ │ ├── wgml.c │ │ ├── wgmlmsg.c │ │ └── wgmlsupp.c │ ├── dos386 │ │ └── makefile │ ├── h │ │ ├── copdev.h │ │ ├── copdir.h │ │ ├── copdrv.h │ │ ├── copfiles.h │ │ ├── copfon.h │ │ ├── copfunc.h │ │ ├── cophdr.h │ │ ├── devfuncs.h │ │ ├── findfile.h │ │ ├── glayutil.h │ │ ├── gscrcws.h │ │ ├── gsfuncs.h │ │ ├── gsyssym.h │ │ ├── gtags.h │ │ ├── gtagslay.h │ │ ├── gtype.h │ │ ├── gtypelay.h │ │ ├── gvars.h │ │ ├── outbuff.h │ │ ├── wgml.h │ │ ├── wgml.msg │ │ ├── wgml.rc │ │ └── wgmlerr.msg │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── makemdef.awk │ ├── master.mif │ ├── msgtoenm.awk │ ├── nt386 │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── prereq.ctl │ ├── readme.txt │ ├── research │ │ ├── c │ │ │ ├── cfcheck.c │ │ │ ├── cfcutils.c │ │ │ ├── cfdev.c │ │ │ ├── cfdir.c │ │ │ ├── cfdrv.c │ │ │ ├── cffon.c │ │ │ ├── cffunc.c │ │ │ ├── cfheader.c │ │ │ ├── cfparse.c │ │ │ ├── cfputils.c │ │ │ ├── common.c │ │ │ ├── copparse.c │ │ │ ├── devldchk.c │ │ │ ├── dfinterp.c │ │ │ ├── findfunc.c │ │ │ ├── heapchk.c │ │ │ ├── lhdirect.c │ │ │ ├── outcheck.c │ │ │ ├── research.c │ │ │ └── widthtst.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── h │ │ │ ├── cfcheck.h │ │ │ ├── cfcusage.h │ │ │ ├── cfdev.h │ │ │ ├── cfdir.h │ │ │ ├── cfdrv.h │ │ │ ├── cffon.h │ │ │ ├── cffunc.h │ │ │ ├── cfheader.h │ │ │ ├── cfparse.h │ │ │ ├── cfpusage.h │ │ │ ├── cftrans.h │ │ │ ├── common.h │ │ │ ├── copusage.h │ │ │ ├── dfinterp.h │ │ │ ├── ffusage.h │ │ │ ├── heapchk.h │ │ │ ├── lhdirect.h │ │ │ ├── research.h │ │ │ └── widthtst.h │ │ ├── lang.ctl │ │ ├── linux386 │ │ │ └── makefile │ │ ├── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ └── os2386 │ │ │ └── makefile │ ├── test │ │ ├── acc4.ps │ │ ├── boxtest.gml │ │ ├── bxforms.gml │ │ ├── bxmacs.gml │ │ ├── bxtext.gml │ │ ├── coltest.gml │ │ ├── cwcofoju.gml │ │ ├── dddttest.gml │ │ ├── devices.txt │ │ ├── dmgttst.gml │ │ ├── docstest │ │ │ ├── debug2 │ │ │ │ ├── dos │ │ │ │ │ └── makefile │ │ │ │ ├── htmlhelp │ │ │ │ │ └── makefile │ │ │ │ ├── makefile │ │ │ │ ├── nt │ │ │ │ │ └── makefile │ │ │ │ ├── os2 │ │ │ │ │ └── makefile │ │ │ │ ├── pdf │ │ │ │ │ └── makefile │ │ │ │ └── win │ │ │ │ │ └── makefile │ │ │ ├── makefile │ │ │ ├── mif │ │ │ │ ├── books.mif │ │ │ │ ├── clean.mif │ │ │ │ ├── depends.mif │ │ │ │ ├── master.mif │ │ │ │ └── onebook.mif │ │ │ ├── miftest │ │ │ │ ├── dos │ │ │ │ │ └── makefile │ │ │ │ ├── htmlhelp │ │ │ │ │ └── makefile │ │ │ │ ├── makefile │ │ │ │ ├── nt │ │ │ │ │ └── makefile │ │ │ │ ├── os2 │ │ │ │ │ └── makefile │ │ │ │ └── win │ │ │ │ │ └── makefile │ │ │ ├── pstest │ │ │ │ ├── makefile │ │ │ │ ├── pdf │ │ │ │ │ └── makefile │ │ │ │ └── pdf4 │ │ │ │ │ └── makefile │ │ │ ├── readme.txt │ │ │ ├── validate │ │ │ │ ├── dos │ │ │ │ │ └── makefile │ │ │ │ ├── htmlhelp │ │ │ │ │ └── makefile │ │ │ │ ├── makefile │ │ │ │ ├── nt │ │ │ │ │ └── makefile │ │ │ │ ├── os2 │ │ │ │ │ └── makefile │ │ │ │ └── win │ │ │ │ │ └── makefile │ │ │ ├── whpass1a │ │ │ │ ├── dos │ │ │ │ │ └── makefile │ │ │ │ ├── htmlhelp │ │ │ │ │ └── makefile │ │ │ │ ├── makefile │ │ │ │ ├── nt │ │ │ │ │ └── makefile │ │ │ │ ├── os2 │ │ │ │ │ └── makefile │ │ │ │ └── win │ │ │ │ │ └── makefile │ │ │ ├── whpass1b │ │ │ │ ├── dos │ │ │ │ │ └── makefile │ │ │ │ ├── htmlhelp │ │ │ │ │ └── makefile │ │ │ │ ├── makefile │ │ │ │ ├── nt │ │ │ │ │ └── makefile │ │ │ │ ├── os2 │ │ │ │ │ └── makefile │ │ │ │ └── win │ │ │ │ │ └── makefile │ │ │ └── whpass2a │ │ │ │ ├── dos │ │ │ │ └── makefile │ │ │ │ ├── htmlhelp │ │ │ │ └── makefile │ │ │ │ ├── makefile │ │ │ │ ├── nt │ │ │ │ └── makefile │ │ │ │ ├── os2 │ │ │ │ └── makefile │ │ │ │ └── win │ │ │ │ └── makefile │ │ ├── lang.ctl │ │ ├── ocdoc1.gml │ │ ├── ocdoc2.gml │ │ ├── psfont.opt │ │ ├── read.me │ │ ├── rule.eps │ │ ├── sysvar.gml │ │ ├── tabtest.gml │ │ ├── tbmacs.gml │ │ ├── tbsyms.gml │ │ ├── tbtext.gml │ │ ├── tcwin1.gml │ │ ├── tcwin2.gml │ │ ├── tcwli.gml │ │ ├── tcwmacro.gml │ │ ├── tcwpe.gml │ │ ├── tcwti.gml │ │ ├── tdocx.gml │ │ ├── terrs.gml │ │ ├── test.cmd │ │ ├── test2.cmd │ │ ├── testlib │ │ │ └── makefile │ │ ├── testsrc │ │ │ ├── dev01.inc │ │ │ ├── dev02.inc │ │ │ ├── dev02ps.inc │ │ │ ├── dev03.inc │ │ │ ├── dev04.inc │ │ │ ├── dev04ps.inc │ │ │ ├── dev05.inc │ │ │ ├── dev06.inc │ │ │ ├── dev06ps.inc │ │ │ ├── dev07.inc │ │ │ ├── dev07ps.inc │ │ │ ├── drv01.inc │ │ │ ├── drv02.inc │ │ │ ├── drv03.inc │ │ │ ├── drv04.inc │ │ │ ├── genall.pcd │ │ │ ├── intran.tbl │ │ │ ├── pssdrv.pcd │ │ │ ├── pssfon00.fon │ │ │ ├── pssfon01.fon │ │ │ ├── pssfon02.fon │ │ │ ├── pssfon03.fon │ │ │ ├── pssfon04.fon │ │ │ ├── pssfon05.fon │ │ │ ├── pssfon06.fon │ │ │ ├── pssfon07.fon │ │ │ ├── pssfon08.fon │ │ │ ├── pssfon09.fon │ │ │ ├── psspec.pcd │ │ │ ├── pstdrv.pcd │ │ │ ├── pstest.pcd │ │ │ ├── readme.txt │ │ │ ├── tdrv01.pcd │ │ │ ├── tdrv02.pcd │ │ │ ├── test01.pcd │ │ │ ├── test02.pcd │ │ │ ├── tfon00.fon │ │ │ ├── tfon01.fon │ │ │ ├── tfon02.fon │ │ │ ├── tfon03.fon │ │ │ ├── tfon04.fon │ │ │ ├── tfon05.fon │ │ │ ├── tfon06.fon │ │ │ ├── tfon07.fon │ │ │ ├── tfon08.fon │ │ │ ├── tfon09.fon │ │ │ ├── xpssdrv.pcd │ │ │ └── xpsspec.pcd │ │ ├── tfbfk.gml │ │ ├── thpxsf.gml │ │ ├── thpxsf2.inc │ │ ├── tindex.gml │ │ ├── tlayfull.gml │ │ ├── tlayno.gml │ │ ├── tlayout.gml │ │ ├── tlinecnt.gml │ │ ├── tnote.gml │ │ ├── tpacp.gml │ │ ├── tperform.gml │ │ ├── trefid.gml │ │ ├── ts.inc │ │ ├── tsimp00.gml │ │ ├── tsimp00i.gml │ │ ├── tsimp00i.inc │ │ ├── tsimp01.gml │ │ ├── tsimp01i.inc │ │ ├── tsimp02.gml │ │ ├── tsimp02i.inc │ │ ├── tsimpin.inc │ │ ├── tsimplei.lay │ │ ├── tstpchar.gml │ │ ├── tsys.gml │ │ ├── tsys06.gml │ │ ├── tsyssys.gml │ │ ├── ttag.gml │ │ ├── ttag2.gml │ │ ├── txl.gml │ │ ├── txl1.inc │ │ ├── txl2.inc │ │ ├── txl3.inc │ │ ├── txmp.gml │ │ └── wgmlopts.opt │ └── wgmlobjs.mif ├── whpcvt │ ├── c │ │ ├── html.c │ │ ├── ib.c │ │ ├── ipf.c │ │ ├── rtf.c │ │ ├── whpcvt.c │ │ └── wiki.c │ ├── dos386 │ │ └── makefile │ ├── h │ │ └── whpcvt.h │ ├── ibhelp.txt │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── prereq.ctl │ └── readme.txt ├── wic │ ├── c │ │ ├── carver.c │ │ ├── cmdline.c │ │ ├── cparse.c │ │ ├── cparse.y │ │ ├── ctree.c │ │ ├── dupzap.c │ │ ├── exptok.c │ │ ├── fmem.c │ │ ├── gentypes.c │ │ ├── globals.c │ │ ├── hash.c │ │ ├── main.c │ │ ├── outasm.c │ │ ├── outfort.c │ │ ├── output.c │ │ ├── preparse.c │ │ ├── preparse.y │ │ ├── symtab.c │ │ ├── tables.c │ │ ├── testfmem.c │ │ ├── token.c │ │ ├── trandecl.c │ │ ├── wicgener.c │ │ ├── wicstr.c │ │ ├── yaccpre.bat │ │ └── yaccpre.cmd │ ├── dos386 │ │ └── makefile │ ├── h │ │ ├── carver.h │ │ ├── cmdline.h │ │ ├── ctree.h │ │ ├── exptok.h │ │ ├── fmem.h │ │ ├── forward.h │ │ ├── gentypes.h │ │ ├── globals.h │ │ ├── hash.h │ │ ├── lex.h │ │ ├── msg.h │ │ ├── outasm.h │ │ ├── outfort.h │ │ ├── output.h │ │ ├── parse.h │ │ ├── print.h │ │ ├── symtab.h │ │ ├── tables.h │ │ ├── token.h │ │ ├── trandecl.h │ │ ├── wic.h │ │ ├── wicgener.h │ │ └── wicstr.h │ ├── lang.ctl │ ├── mif │ │ ├── master.mif │ │ └── objsdef.mif │ ├── nt386 │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── osi386 │ │ └── makefile │ ├── rc │ │ ├── usage.sp │ │ ├── wic.msg │ │ └── wic.rc │ └── test │ │ ├── all.h │ │ ├── all.inc │ │ ├── array.h │ │ ├── dclr.h │ │ ├── enum.h │ │ ├── expr1.h │ │ ├── incl.h │ │ ├── incl1.h │ │ ├── incl1a.h │ │ ├── incl1b.h │ │ ├── incl1b1.h │ │ ├── incl2.h │ │ ├── incl3.h │ │ ├── pp1.h │ │ ├── pragma.h │ │ ├── struct.h │ │ ├── typedef.h │ │ └── verylong.h ├── win386 │ ├── asm │ │ ├── begin.asm │ │ ├── call16.asm │ │ ├── dllpatch.asm │ │ ├── int21win.asm │ │ ├── timercb.asm │ │ ├── win16thk.asm │ │ ├── wincall.asm │ │ ├── wincb.asm │ │ ├── windll.asm │ │ ├── winext.asm │ │ └── winmisc.asm │ ├── c │ │ ├── bitmap.c │ │ ├── clib.c │ │ ├── commdlg.c │ │ ├── fints.c │ │ ├── libmain.c │ │ ├── mmsystem.c │ │ ├── ole.c │ │ ├── penwin.c │ │ ├── tinyio.c │ │ ├── toolhelp.c │ │ ├── windata.c │ │ ├── windpmi.c │ │ ├── wininit.c │ │ ├── winmain.c │ │ └── winstubs.c │ ├── callback.doc │ ├── conv │ │ ├── asm │ │ │ ├── _call16.asm │ │ │ └── fldenv.asm │ │ ├── c │ │ │ └── conv.c │ │ ├── def │ │ │ ├── clib.def │ │ │ ├── commdlg.def │ │ │ ├── ddeml.def │ │ │ ├── dpmi.def │ │ │ ├── emit.def │ │ │ ├── lzexpand.def │ │ │ ├── mmsystem.def │ │ │ ├── odbc.def │ │ │ ├── ole.def │ │ │ ├── penwin.def │ │ │ ├── print.def │ │ │ ├── shell.def │ │ │ ├── stress.def │ │ │ ├── tinyio.def │ │ │ ├── toolhelp.def │ │ │ ├── ver.def │ │ │ ├── win31.def │ │ │ ├── win31_16.def │ │ │ └── win386 │ │ ├── master.mif │ │ ├── read.me │ │ └── win386 │ │ │ └── makefile │ ├── dll │ │ └── makefile │ ├── exports.lnk │ ├── ext │ │ └── makefile │ ├── files.dat │ ├── h │ │ ├── stubs.h │ │ ├── winext.h │ │ └── winext.inc │ ├── imports.lnk │ ├── lang.ctl │ ├── master.mif │ ├── vxd.lnk │ ├── vxd │ │ ├── makefile │ │ ├── wdebug.asm │ │ └── wdebug.inc │ └── wbind │ │ ├── dosi86 │ │ └── makefile │ │ ├── linux386 │ │ └── makefile │ │ ├── master.mif │ │ ├── nt386 │ │ └── makefile │ │ ├── os2i86 │ │ └── makefile │ │ └── wbind.c ├── wipfc │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── aclocal.m4 │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── cpp │ │ ├── Outline.txt │ │ ├── acvwport.cpp │ │ ├── acvwport.hpp │ │ ├── artlink.cpp │ │ ├── artlink.hpp │ │ ├── artwork.cpp │ │ ├── artwork.hpp │ │ ├── bitmap.cpp │ │ ├── bitmap.hpp │ │ ├── brcmd.cpp │ │ ├── brcmd.hpp │ │ ├── btmpblk.cpp │ │ ├── btmpblk.hpp │ │ ├── caution.cpp │ │ ├── caution.hpp │ │ ├── cecmd.cpp │ │ ├── cecmd.hpp │ │ ├── cell.cpp │ │ ├── cell.hpp │ │ ├── cgraphic.cpp │ │ ├── cgraphic.hpp │ │ ├── color.cpp │ │ ├── color.hpp │ │ ├── compiler.cpp │ │ ├── compiler.hpp │ │ ├── config.hpp │ │ ├── controls.cpp │ │ ├── controls.hpp │ │ ├── ctrl.cpp │ │ ├── ctrl.hpp │ │ ├── ctrlbtn.cpp │ │ ├── ctrlbtn.hpp │ │ ├── ctrldef.cpp │ │ ├── ctrldef.hpp │ │ ├── ctrlgrp.cpp │ │ ├── ctrlgrp.hpp │ │ ├── ctrltag.hpp │ │ ├── ddf.cpp │ │ ├── ddf.hpp │ │ ├── dl.cpp │ │ ├── dl.hpp │ │ ├── docprof.cpp │ │ ├── docprof.hpp │ │ ├── document.cpp │ │ ├── document.hpp │ │ ├── element.cpp │ │ ├── element.hpp │ │ ├── entity.cpp │ │ ├── entity.hpp │ │ ├── env.cpp │ │ ├── env.hpp │ │ ├── err.hpp │ │ ├── errors.cpp │ │ ├── errors.hpp │ │ ├── extfiles.cpp │ │ ├── extfiles.hpp │ │ ├── fig.cpp │ │ ├── fig.hpp │ │ ├── figcap.cpp │ │ ├── figcap.hpp │ │ ├── fn.cpp │ │ ├── fn.hpp │ │ ├── fnt.cpp │ │ ├── fnt.hpp │ │ ├── fntcol.cpp │ │ ├── fntcol.hpp │ │ ├── font.cpp │ │ ├── font.hpp │ │ ├── fts.cpp │ │ ├── fts.hpp │ │ ├── gdict.cpp │ │ ├── gdict.hpp │ │ ├── gdword.cpp │ │ ├── gdword.hpp │ │ ├── gnames.cpp │ │ ├── gnames.hpp │ │ ├── hdref.cpp │ │ ├── hdref.hpp │ │ ├── header.cpp │ │ ├── header.hpp │ │ ├── hide.cpp │ │ ├── hide.hpp │ │ ├── hn.cpp │ │ ├── hn.hpp │ │ ├── hpn.cpp │ │ ├── hpn.hpp │ │ ├── i1.cpp │ │ ├── i1.hpp │ │ ├── i2.cpp │ │ ├── i2.hpp │ │ ├── icmd.cpp │ │ ├── icmd.hpp │ │ ├── index.cpp │ │ ├── index.hpp │ │ ├── ipfbuff.cpp │ │ ├── ipfbuff.hpp │ │ ├── ipfdata.hpp │ │ ├── ipffile.cpp │ │ ├── ipffile.hpp │ │ ├── isyn.cpp │ │ ├── isyn.hpp │ │ ├── lexer.cpp │ │ ├── lexer.hpp │ │ ├── li.hpp │ │ ├── lines.cpp │ │ ├── lines.hpp │ │ ├── link.cpp │ │ ├── link.hpp │ │ ├── lm.cpp │ │ ├── lm.hpp │ │ ├── lp.cpp │ │ ├── lp.hpp │ │ ├── main.cpp │ │ ├── nls.cpp │ │ ├── nls.hpp │ │ ├── note.cpp │ │ ├── note.hpp │ │ ├── nt.cpp │ │ ├── nt.hpp │ │ ├── ol.cpp │ │ ├── ol.hpp │ │ ├── p.cpp │ │ ├── p.hpp │ │ ├── page.cpp │ │ ├── page.hpp │ │ ├── parml.cpp │ │ ├── parml.hpp │ │ ├── pbutton.cpp │ │ ├── pbutton.hpp │ │ ├── ptrops.hpp │ │ ├── punct.cpp │ │ ├── punct.hpp │ │ ├── rm.cpp │ │ ├── rm.hpp │ │ ├── sl.cpp │ │ ├── sl.hpp │ │ ├── strings.cpp │ │ ├── strings.hpp │ │ ├── synonym.cpp │ │ ├── synonym.hpp │ │ ├── table.cpp │ │ ├── table.hpp │ │ ├── tag.cpp │ │ ├── tag.hpp │ │ ├── tags.hpp │ │ ├── text.cpp │ │ ├── text.hpp │ │ ├── title.cpp │ │ ├── title.hpp │ │ ├── toc.cpp │ │ ├── toc.hpp │ │ ├── tocref.cpp │ │ ├── tocref.hpp │ │ ├── ul.cpp │ │ ├── ul.hpp │ │ ├── util.cpp │ │ ├── util.hpp │ │ ├── warning.cpp │ │ ├── warning.hpp │ │ ├── whtspc.cpp │ │ ├── whtspc.hpp │ │ ├── word.cpp │ │ ├── word.hpp │ │ ├── xmp.cpp │ │ ├── xmp.hpp │ │ ├── xref.cpp │ │ └── xref.hpp │ ├── depcomp │ ├── dos386 │ │ └── makefile │ ├── exever.rc │ ├── files.dat │ ├── helper │ │ ├── deDEUTF8.nls │ │ ├── de_DE.nls │ │ ├── enGBUTF8.nls │ │ ├── enUSUTF8.nls │ │ ├── en_GB.nls │ │ ├── en_US.nls │ │ ├── enti0000.txt │ │ ├── enti0932.txt │ │ ├── enti0934.txt │ │ ├── enti0938.txt │ │ ├── entity.txt │ │ ├── frCAUTF8.nls │ │ ├── frFRUTF8.nls │ │ ├── fr_CA.nls │ │ ├── fr_FR.nls │ │ ├── jaJAUTF8.nls │ │ ├── ja_JA.nls │ │ └── xx_YY.nls │ ├── install-sh │ ├── ipfcdump │ │ ├── bitmap.c │ │ ├── cells.c │ │ ├── child.c │ │ ├── controls.c │ │ ├── dict.c │ │ ├── dosi86 │ │ │ └── makefile │ │ ├── dump.bat │ │ ├── extfiles.c │ │ ├── fonts.c │ │ ├── fts.c │ │ ├── gnames.c │ │ ├── header.c │ │ ├── index.c │ │ ├── ipfcdump.c │ │ ├── ipfcdump.h │ │ ├── linux386 │ │ │ └── makefile │ │ ├── master.mif │ │ ├── nls.c │ │ ├── nt386 │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── panel.c │ │ ├── strings.c │ │ └── toc.c │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── master.mif │ ├── missing │ ├── nt386 │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── prereq.ctl │ └── test │ │ ├── env.bat │ │ ├── neg │ │ ├── neg1.ipf │ │ ├── neg10.ipf │ │ ├── neg10.jpg │ │ ├── neg2.ipf │ │ ├── neg3.ipf │ │ ├── neg4.ipf │ │ ├── neg5.ipf │ │ ├── neg6.ipf │ │ ├── neg7.ipf │ │ ├── neg8.ipf │ │ └── neg9.ipf │ │ ├── pos │ │ ├── acc3.bmp │ │ ├── acc8.bmp │ │ ├── browtarg.bmp │ │ ├── ide1c.bmp │ │ ├── ide2c.bmp │ │ ├── pos1.ipf │ │ ├── pos10.ipf │ │ ├── pos2.ipf │ │ ├── pos3.ipf │ │ ├── pos4.ipf │ │ ├── pos5.ipf │ │ ├── pos6.ipf │ │ ├── pos7.ipf │ │ ├── pos8.ipf │ │ ├── pos8a.ipf │ │ └── pos9.ipf │ │ └── test.bat ├── wl │ ├── boot.ctl │ ├── bootmake │ ├── c │ │ ├── autogrp.c │ │ ├── carve.c │ │ ├── cmd16m.c │ │ ├── cmdall.c │ │ ├── cmddos.c │ │ ├── cmdelf.c │ │ ├── cmdline.c │ │ ├── cmdnov.c │ │ ├── cmdos2.c │ │ ├── cmdphar.c │ │ ├── cmdqnx.c │ │ ├── cmdraw.c │ │ ├── cmdrdv.c │ │ ├── cmdtable.c │ │ ├── cmdutils.c │ │ ├── cmdzdos.c │ │ ├── dbgall.c │ │ ├── dbgcv.c │ │ ├── dbgdwarf.c │ │ ├── dbghll.c │ │ ├── dbginfo.c │ │ ├── dbgstubs.c │ │ ├── debug.c │ │ ├── distrib.c │ │ ├── global.c │ │ ├── hash.c │ │ ├── ideentry.c │ │ ├── impexp.c │ │ ├── libr.c │ │ ├── libsupp.c │ │ ├── linkio.c │ │ ├── linkutil.c │ │ ├── load16m.c │ │ ├── loaddos.c │ │ ├── loadelf.c │ │ ├── loadelf2.c │ │ ├── loadfile.c │ │ ├── loadflat.c │ │ ├── loadnov.c │ │ ├── loados2.c │ │ ├── loadpe.c │ │ ├── loadphar.c │ │ ├── loadqnx.c │ │ ├── loadraw.c │ │ ├── loadrdv.c │ │ ├── loadzdos.c │ │ ├── lsymtab.c │ │ ├── maindrv.c │ │ ├── mapio.c │ │ ├── mem.c │ │ ├── mixcache.c │ │ ├── msg.c │ │ ├── ntio.c │ │ ├── obj2supp.c │ │ ├── objcalc.c │ │ ├── objfree.c │ │ ├── objio.c │ │ ├── objnode.c │ │ ├── objomf.c │ │ ├── objorl.c │ │ ├── objpass1.c │ │ ├── objpass2.c │ │ ├── objstrip.c │ │ ├── omfreloc.c │ │ ├── orlstubs.c │ │ ├── overlays.c │ │ ├── ovlsupp.c │ │ ├── permdata.c │ │ ├── posixio.c │ │ ├── procfile.c │ │ ├── reloc.c │ │ ├── ring.c │ │ ├── ring2.c │ │ ├── salloc.c │ │ ├── spillio.c │ │ ├── stidedrv.c │ │ ├── strtab.c │ │ ├── symmem.c │ │ ├── symtrace.c │ │ ├── toc.c │ │ ├── virtmem.c │ │ ├── virtpage.c │ │ ├── wcomdef.c │ │ ├── wlink.c │ │ ├── wlnkmsg.c │ │ └── zdosio.c │ ├── command │ │ ├── command.c │ │ └── makefile │ ├── ddos386 │ │ ├── debug.h │ │ └── makefile │ ├── dlnx386 │ │ ├── debug.h │ │ └── makefile │ ├── dnt386.dll │ │ ├── debug.h │ │ └── makefile │ ├── dnt386.rtd │ │ ├── debug.h │ │ └── makefile │ ├── dnt386 │ │ ├── debug.h │ │ └── makefile │ ├── dntaxp │ │ ├── debug.h │ │ └── makefile │ ├── dos2386 │ │ ├── debug.h │ │ └── makefile │ ├── dos386 │ │ └── makefile │ ├── exe2bin │ │ ├── dosi86 │ │ │ └── makefile │ │ ├── exe2bin.c │ │ ├── linux386 │ │ │ └── makefile │ │ ├── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── ntaxp │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ └── test │ │ │ ├── makefile │ │ │ ├── test01.asm │ │ │ └── test02.asm │ ├── exever.rc │ ├── fcenable │ │ ├── c │ │ │ ├── fcenable.c │ │ │ ├── findret.asm │ │ │ ├── mem.c │ │ │ ├── memtrack.c │ │ │ ├── records.c │ │ │ └── spawn.c │ │ ├── dosi86 │ │ │ └── makefile │ │ ├── h │ │ │ └── fcenable.h │ │ ├── linux386 │ │ │ └── makefile │ │ ├── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ └── os2i86 │ │ │ └── makefile │ ├── files.dat │ ├── h │ │ ├── alloc.h │ │ ├── carve.h │ │ ├── cmd16m.h │ │ ├── cmdall.h │ │ ├── cmddos.h │ │ ├── cmdelf.h │ │ ├── cmdline.h │ │ ├── cmdnov.h │ │ ├── cmdos2.h │ │ ├── cmdphar.h │ │ ├── cmdqnx.h │ │ ├── cmdraw.h │ │ ├── cmdrdv.h │ │ ├── cmdzdos.h │ │ ├── command.h │ │ ├── dbgall.h │ │ ├── dbgcomm.h │ │ ├── dbgcv.h │ │ ├── dbgdwarf.h │ │ ├── dbghll.h │ │ ├── dbginfo.h │ │ ├── dbgwat.h │ │ ├── debug.h │ │ ├── distrib.h │ │ ├── fileio.h │ │ ├── formats.h │ │ ├── globals.h │ │ ├── hash.h │ │ ├── ideentry.h │ │ ├── impexp.h │ │ ├── ldefext.h │ │ ├── library.h │ │ ├── link.h │ │ ├── linkstd.h │ │ ├── linkutil.h │ │ ├── lnkerror.msg │ │ ├── lnkerror.rc │ │ ├── load16m.h │ │ ├── loaddos.h │ │ ├── loadelf.h │ │ ├── loadelf2.h │ │ ├── loadfile.h │ │ ├── loadnov.h │ │ ├── loados2.h │ │ ├── loadpe.h │ │ ├── loadqnx.h │ │ ├── loadraw.h │ │ ├── loadrdv.h │ │ ├── loadzdos.h │ │ ├── mapio.h │ │ ├── msg.h │ │ ├── newmem.h │ │ ├── ntio.h │ │ ├── nwpfx.h │ │ ├── obj2supp.h │ │ ├── objcache.h │ │ ├── objcalc.h │ │ ├── objfree.h │ │ ├── objio.h │ │ ├── objnode.h │ │ ├── objomf.h │ │ ├── objorl.h │ │ ├── objpass1.h │ │ ├── objpass2.h │ │ ├── objstrip.h │ │ ├── objstruc.h │ │ ├── omfreloc.h │ │ ├── overlays.h │ │ ├── ovlstruc.h │ │ ├── permdata.h │ │ ├── pharlap.h │ │ ├── procfile.h │ │ ├── reloc.h │ │ ├── ring.h │ │ ├── salloc.h │ │ ├── specials.h │ │ ├── spillio.h │ │ ├── standard.h │ │ ├── strtab.h │ │ ├── syms.h │ │ ├── symtab.h │ │ ├── symtrace.h │ │ ├── taddr.h │ │ ├── toc.h │ │ ├── uintmacs.h │ │ ├── virtmem.h │ │ ├── wcomdef.h │ │ ├── wlink.h │ │ ├── wlink.msg │ │ ├── wlink.rc │ │ ├── wlmsgs.h │ │ ├── wlnkmsg.h │ │ └── wlrcmem.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── linuxmps │ │ └── makefile │ ├── makefile │ ├── ms2wlink │ │ ├── c │ │ │ ├── fileio.c │ │ │ ├── findret.asm │ │ │ ├── keyword.c │ │ │ ├── mem.c │ │ │ ├── memtrack.c │ │ │ ├── ms2wlink.c │ │ │ ├── parsems.c │ │ │ └── utils.c │ │ ├── dosi86 │ │ │ └── makefile │ │ ├── h │ │ │ ├── command.h │ │ │ └── ms2wlink.h │ │ ├── linux386 │ │ │ └── makefile │ │ ├── master.mif │ │ ├── nt386 │ │ │ └── makefile │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── regress │ │ │ ├── def8.def │ │ │ ├── makefile │ │ │ ├── rsp1.lnk │ │ │ ├── rsp2.lnk │ │ │ ├── rsp3.lnk │ │ │ ├── rsp4.lnk │ │ │ ├── rsp5.lnk │ │ │ ├── rsp6a.lnk │ │ │ ├── rsp6b.lnk │ │ │ ├── rsp7.lnk │ │ │ ├── test01.chk │ │ │ ├── test02.chk │ │ │ ├── test03.chk │ │ │ ├── test04.chk │ │ │ ├── test05.chk │ │ │ ├── test06.chk │ │ │ ├── test07.chk │ │ │ ├── test08.chk │ │ │ ├── test09.chk │ │ │ ├── test10.chk │ │ │ ├── test11.chk │ │ │ ├── test12.chk │ │ │ ├── test13.chk │ │ │ ├── test14.chk │ │ │ ├── test15.chk │ │ │ ├── test16.chk │ │ │ ├── test17.chk │ │ │ ├── test18.chk │ │ │ ├── test19.chk │ │ │ ├── test20.chk │ │ │ ├── test21.chk │ │ │ ├── test22.chk │ │ │ └── test23.chk │ │ └── test │ │ │ ├── death.rsp │ │ │ ├── dingbat.def │ │ │ ├── fate │ │ │ └── grief.def │ ├── nt386.dll │ │ └── makefile │ ├── nt386.rtd │ │ └── makefile │ ├── nt386 │ │ └── makefile │ ├── ntaxp.dll │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386.dll │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── ovlldr │ │ ├── a │ │ │ ├── lovlmain.asm │ │ │ ├── lovlret.asm │ │ │ ├── movlmain.asm │ │ │ ├── ngrablow.asm │ │ │ ├── novlmain.asm │ │ │ ├── ovldata.asm │ │ │ ├── ovlmain.asm │ │ │ ├── ovlret.asm │ │ │ ├── ovlstd.asm │ │ │ ├── sovlmain.asm │ │ │ └── sovlret.asm │ │ ├── c │ │ │ ├── movlldr.c │ │ │ ├── naddarea.c │ │ │ ├── novlldr.c │ │ │ ├── ovlboth.c │ │ │ ├── ovldbg.c │ │ │ ├── ovlio.c │ │ │ ├── ovlldr.c │ │ │ └── ovlshare.c │ │ ├── dosi86 │ │ │ └── makefile │ │ ├── h │ │ │ ├── novlldr.h │ │ │ ├── novlldr.inc │ │ │ ├── ovlstd.h │ │ │ └── ovlstd.inc │ │ └── master.mif │ ├── prereq.ctl │ ├── qnx386 │ │ ├── dos.h │ │ └── makefile │ ├── specs.sp │ ├── test │ │ ├── dos16m │ │ │ ├── atest.asm │ │ │ ├── ctest.c │ │ │ ├── d16info.inc │ │ │ ├── makefile │ │ │ └── readme.txt │ │ └── overlay │ │ │ ├── main.c │ │ │ ├── makefile │ │ │ ├── ovl1.c │ │ │ ├── ovl2.c │ │ │ └── ovl3.c │ ├── version.rc │ ├── wlaxpnt.lnk │ ├── wlbin.lnk │ ├── wlbinl.lnk │ ├── wlbinnt.lnk │ ├── wlbinp.lnk │ ├── wlbinz.lnk │ ├── wlink.mif │ ├── wlink.u │ ├── wln98.lnk │ ├── wlobjs.mif │ └── wlqnx.lnk ├── wmake │ ├── boot.ctl │ ├── c │ │ ├── cretype.c │ │ ├── macros.c │ │ ├── main.c │ │ ├── massert.c │ │ ├── mautodep.c │ │ ├── mautoomf.c │ │ ├── mautoorl.c │ │ ├── mautores.c │ │ ├── mcache.c │ │ ├── memory.c │ │ ├── mexec.c │ │ ├── mglob.c │ │ ├── mhash.c │ │ ├── misc.c │ │ ├── mlex.c │ │ ├── mlexmac.c │ │ ├── mlexprs.c │ │ ├── mparse.c │ │ ├── mpreproc.c │ │ ├── mrcmsg.c │ │ ├── msg.c │ │ ├── mstream.c │ │ ├── msuffix.c │ │ ├── msysdep.c │ │ ├── mtarget.c │ │ ├── mupdate.c │ │ └── mvecstr.c │ ├── dos386 │ │ └── makefile │ ├── dosi86 │ │ └── makefile │ ├── exever.rc │ ├── files.dat │ ├── gnumake │ ├── h │ │ ├── macros.h │ │ ├── make.h │ │ ├── massert.h │ │ ├── mautodep.h │ │ ├── mautoomf.h │ │ ├── mautoorl.h │ │ ├── mautores.h │ │ ├── mcache.h │ │ ├── mexec.h │ │ ├── mhash.h │ │ ├── mlex.h │ │ ├── mmemory.h │ │ ├── mmisc.h │ │ ├── mparse.h │ │ ├── mpreproc.h │ │ ├── mrcmsg.h │ │ ├── msg.h │ │ ├── mstream.h │ │ ├── msuffix.h │ │ ├── msysdep.h │ │ ├── mtarget.h │ │ ├── mtypes.h │ │ ├── mupdate.h │ │ ├── mvecstr.h │ │ ├── usage.sp │ │ ├── wmake.msg │ │ └── wmake.rc │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── linuxmps │ │ └── makefile │ ├── mif │ │ ├── makefile │ │ ├── master.mif │ │ ├── mkdo.sed │ │ ├── msgdef.sed │ │ ├── msgref.awk │ │ └── wmk.mif │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── posmake │ ├── prereq.ctl │ ├── qnxi86 │ │ └── makefile │ └── regress │ │ ├── cmds │ │ ├── envarg.c │ │ ├── ifeq.c │ │ ├── makefile │ │ ├── mkerr.c │ │ └── rem.c │ │ ├── errtest │ │ ├── all.43 │ │ ├── debug.bat │ │ ├── debug.cmd │ │ ├── err03a.cmp │ │ ├── err03b.cmp │ │ ├── err04.cmp │ │ ├── err05 │ │ ├── err05.cmp │ │ ├── err07 │ │ ├── err07.cmp │ │ ├── err10 │ │ ├── err10.cmp │ │ ├── err11 │ │ ├── err11.cmp │ │ ├── err12 │ │ ├── err12.cmp │ │ ├── err13.cmp │ │ ├── err15 │ │ ├── err15.cmp │ │ ├── err16 │ │ ├── err16.cmp │ │ ├── err17.cmp │ │ ├── err17a │ │ ├── err17b │ │ ├── err17c │ │ ├── err17d │ │ ├── err17e │ │ ├── err17f │ │ ├── err18 │ │ ├── err18.cmp │ │ ├── err19 │ │ ├── err19.cmp │ │ ├── err20 │ │ ├── err20.cmp │ │ ├── err21 │ │ ├── err21.cmp │ │ ├── err22 │ │ ├── err22.cmp │ │ ├── err23 │ │ ├── err23.cmp │ │ ├── err24 │ │ ├── err24.cmp │ │ ├── err25 │ │ ├── err25.cmp │ │ ├── err26 │ │ ├── err26.cmp │ │ ├── err27 │ │ ├── err27.cmp │ │ ├── err28 │ │ ├── err28.cmp │ │ ├── err29a │ │ ├── err29a.cmp │ │ ├── err29b │ │ ├── err29b.cmp │ │ ├── err29c │ │ ├── err29c.cmp │ │ ├── err30 │ │ ├── err30.cmp │ │ ├── err31a │ │ ├── err31a.cmp │ │ ├── err31b │ │ ├── err31b.cmp │ │ ├── err31c │ │ ├── err31c.cmp │ │ ├── err31d │ │ ├── err31d.cmp │ │ ├── err31e │ │ ├── err31e.cmp │ │ ├── err31f │ │ ├── err31f.cmp │ │ ├── err32 │ │ ├── err32.cmp │ │ ├── err33 │ │ ├── err33.cmp │ │ ├── err34.cmp │ │ ├── err34a │ │ ├── err34a.cmp │ │ ├── err34b │ │ ├── err34b.cmp │ │ ├── err35 │ │ ├── err35.cmp │ │ ├── err36 │ │ ├── err36.cmp │ │ ├── err37a │ │ ├── err37a.cmp │ │ ├── err37b │ │ ├── err37b.cmp │ │ ├── err38 │ │ ├── err38.cmp │ │ ├── err39 │ │ ├── err39.cmp │ │ ├── err40 │ │ ├── err40.cmp │ │ ├── err41 │ │ ├── err41.cmp │ │ ├── err42 │ │ ├── err42.cmp │ │ ├── err43 │ │ ├── err43.cmp │ │ ├── err44a │ │ ├── err44a.cmp │ │ ├── err44b │ │ ├── err44b.cmp │ │ ├── err44c │ │ ├── err44c.cmp │ │ ├── err45 │ │ ├── error.bat │ │ ├── error.cmd │ │ ├── makeinit │ │ ├── work.bat │ │ ├── work.cmd │ │ └── z43.43 │ │ ├── fortest │ │ ├── for01 │ │ ├── for01.cmp │ │ ├── for02 │ │ ├── for02.cmp │ │ ├── for03 │ │ ├── for03.cmp │ │ ├── for04 │ │ ├── for04a.cmp │ │ ├── for04b.cmp │ │ ├── for04c.cmp │ │ ├── for05 │ │ ├── for05.cmp │ │ ├── for06 │ │ ├── for06.cm2 │ │ ├── for06.cmp │ │ ├── for06.cmu │ │ ├── for07 │ │ ├── for07.cmp │ │ ├── for08 │ │ ├── for08.cmp │ │ ├── for08.cmu │ │ ├── prntdir.c │ │ ├── test.bat │ │ ├── test.cmd │ │ └── test.sh │ │ ├── implicit │ │ ├── ap1.c │ │ ├── ap2.c │ │ ├── ap3.c │ │ ├── imp02.cmp │ │ ├── imp02a │ │ ├── imp02b │ │ ├── imp02c │ │ ├── imp02d │ │ ├── imp02d.cmp │ │ ├── makefile │ │ ├── makefile.u │ │ ├── test.bat │ │ ├── test.cmd │ │ └── test.sh │ │ ├── inline │ │ ├── inline01 │ │ ├── inline01.cmp │ │ ├── inline02 │ │ ├── inline02.cmp │ │ ├── inline03 │ │ ├── inline03.cmp │ │ ├── inline04 │ │ ├── inline04.cmp │ │ ├── inline05 │ │ ├── inline05.cmp │ │ ├── inline06 │ │ ├── inline06.cmp │ │ ├── inline07 │ │ ├── inline07.cmp │ │ ├── test.bat │ │ ├── test.cmd │ │ └── test.sh │ │ ├── longfile │ │ ├── long01 │ │ ├── long01.cmp │ │ ├── long02 │ │ ├── long02.cmp │ │ ├── long03 │ │ ├── long03.cmp │ │ ├── long04 │ │ ├── long04.cmp │ │ ├── long04u │ │ ├── long04u.cmp │ │ ├── long05 │ │ ├── long05.cmp │ │ ├── long06 │ │ ├── long06.cmp │ │ ├── long06.cmu │ │ ├── long07 │ │ ├── long07.cmp │ │ ├── test.bat │ │ ├── test.cmd │ │ └── test.sh │ │ ├── macros │ │ ├── macro01 │ │ ├── macro01.cmp │ │ ├── macro02 │ │ ├── macro02a.cmp │ │ ├── macro02b.cmp │ │ ├── macro03 │ │ ├── macro03a.cmp │ │ ├── macro03b.cmp │ │ ├── macro04 │ │ ├── macro04a.cmp │ │ ├── macro04b.cmp │ │ ├── macro05 │ │ ├── macro05.cmp │ │ ├── macro05u │ │ ├── macro05u.cmp │ │ ├── macro06 │ │ ├── macro06.cmp │ │ ├── macro07 │ │ ├── macro07.cmp │ │ ├── macro08 │ │ ├── macro08.cmp │ │ ├── test.bat │ │ ├── test.cmd │ │ └── test.sh │ │ ├── misc │ │ ├── misc01 │ │ ├── misc01.cmp │ │ ├── misc02 │ │ ├── misc02.cmp │ │ ├── misc03 │ │ ├── misc03.cmp │ │ ├── misc04 │ │ ├── misc04.cmp │ │ ├── misc05 │ │ ├── misc05.cmp │ │ ├── misc06 │ │ ├── misc06.cmp │ │ ├── misc06u │ │ ├── misc06u.cmp │ │ ├── misc07 │ │ ├── misc07.cmp │ │ ├── test.bat │ │ ├── test.cmd │ │ └── test.sh │ │ ├── preproc │ │ ├── prep01 │ │ ├── prep01.cmp │ │ ├── prep02 │ │ ├── prep02.cmp │ │ ├── prep03 │ │ ├── prep03.cmp │ │ ├── prep04 │ │ ├── prep04.cmp │ │ ├── test.bat │ │ ├── test.cmd │ │ └── test.sh │ │ ├── pretest │ │ ├── dopre.bat │ │ ├── dopre.cmd │ │ ├── makeinit │ │ ├── pre01 │ │ ├── pre02 │ │ ├── pre03 │ │ ├── pre03.out │ │ ├── pre04 │ │ ├── pre05 │ │ ├── pre06 │ │ ├── pre07 │ │ ├── pre07.out │ │ ├── pre08 │ │ ├── pre08.out │ │ └── test.sh │ │ ├── test.bat │ │ ├── test.cmd │ │ ├── test.sh │ │ ├── test1 │ │ ├── create.c │ │ ├── err1.chk │ │ ├── test.bat │ │ ├── test.cmd │ │ ├── test.sh │ │ ├── tst1.chk │ │ └── tst1u.chk │ │ └── updtest │ │ ├── doupd.bat │ │ ├── doupd.cmd │ │ ├── makeinit │ │ ├── test.sh │ │ ├── upd01 │ │ ├── upd01.out │ │ ├── upd02 │ │ ├── upd03 │ │ ├── upd04 │ │ ├── upd04.out │ │ ├── upd05 │ │ ├── upd05.out │ │ ├── upd06 │ │ ├── upd06.out │ │ ├── upd07 │ │ ├── upd07.out │ │ ├── upd08 │ │ ├── upd08.out │ │ ├── upd09 │ │ ├── upd10 │ │ ├── upd11 │ │ └── upd11.out ├── womp │ ├── c │ │ ├── array.c │ │ ├── can2ms0.c │ │ ├── can2ms1.c │ │ ├── can2ms2.c │ │ ├── can2td0.c │ │ ├── can2td1.c │ │ ├── can2td2.c │ │ ├── can2txt.c │ │ ├── canaddr.c │ │ ├── canmisc.c │ │ ├── cansymb.c │ │ ├── cantype.c │ │ ├── carve.c │ │ ├── cmdline.c │ │ ├── deflib.c │ │ ├── fixup.c │ │ ├── genmscmt.c │ │ ├── genmsomf.c │ │ ├── genphar.c │ │ ├── genutil.c │ │ ├── lifix.c │ │ ├── main.c │ │ ├── memutil.c │ │ ├── namemgr.c │ │ ├── objio.c │ │ ├── objprs.c │ │ ├── objrec.c │ │ ├── pubdef.c │ │ ├── queue.c │ │ ├── reglist.c │ │ ├── segment.c │ │ ├── wat2can0.c │ │ ├── wat2can1.c │ │ ├── watdump.c │ │ ├── wpmsg.c │ │ └── wpmsgfor.c │ ├── docs │ │ ├── msnotes.txt │ │ ├── read.me │ │ └── tdnotes.txt │ ├── dosi86 │ │ └── makefile │ ├── h │ │ ├── array.h │ │ ├── can2txt.h │ │ ├── canaddr.h │ │ ├── canmisc.h │ │ ├── cansymb.h │ │ ├── cantype.h │ │ ├── carve.h │ │ ├── cmdline.h │ │ ├── deflib.h │ │ ├── fixup.h │ │ ├── genmscmt.h │ │ ├── genmsomf.h │ │ ├── genphar.h │ │ ├── genutil.h │ │ ├── lifix.h │ │ ├── makefile │ │ ├── makemsg.vi │ │ ├── memutil.h │ │ ├── msdbg.h │ │ ├── mstype.h │ │ ├── myassert.h │ │ ├── namemgr.h │ │ ├── objio.h │ │ ├── objprs.h │ │ ├── objrec.h │ │ ├── pubdef.h │ │ ├── queue.h │ │ ├── segment.h │ │ ├── turbodbg.h │ │ ├── watdbg.h │ │ ├── womp.h │ │ ├── womp.rc │ │ ├── wompopt.h │ │ └── wpmsg.h │ ├── lang.ctl │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── sed │ │ ├── maked2.sed │ │ ├── msgdef.sed │ │ └── msgref.sed │ ├── test │ │ ├── howard.c │ │ ├── howie.for │ │ └── typ01.c │ ├── usage.sp │ ├── utils │ │ ├── makefile │ │ └── msdump.c │ └── womp.msg ├── wpack │ ├── c │ │ ├── common.c │ │ ├── decode.c │ │ ├── encode.c │ │ ├── io.c │ │ ├── lookup.c │ │ ├── message.c │ │ ├── qsort.c │ │ └── wpack.c │ ├── dosi86 │ │ └── makefile │ ├── h │ │ ├── message.dat │ │ ├── text.h │ │ ├── txttable.h │ │ └── wpack.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── os2386 │ │ └── makefile │ └── prereq.ctl ├── wpi │ ├── c │ │ ├── new_os2.c │ │ ├── new_win.c │ │ ├── wpi_arc.c │ │ ├── wpi_dbcs.c │ │ ├── wpi_ffnt.c │ │ ├── wpi_file.c │ │ ├── wpi_fntf.c │ │ ├── wpi_inif.c │ │ ├── wpi_libs.c │ │ ├── wpi_line.c │ │ ├── wpi_os2.c │ │ ├── wpi_wfnf.c │ │ └── wpi_win.c │ ├── debugger.mak │ ├── doc │ │ ├── wpi.doc │ │ └── wpi.odt │ ├── h │ │ ├── new_os2.h │ │ ├── new_win.h │ │ ├── wpi.h │ │ ├── wpi_os2.h │ │ ├── wpi_win.h │ │ ├── wpicomp.h │ │ └── wpitypes.h │ ├── lang.ctl │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── os2i86 │ │ └── makefile │ ├── win386 │ │ └── makefile │ ├── wini86 │ │ └── makefile │ └── wpi.mif ├── wprof │ ├── bitmap │ │ ├── os2 │ │ │ └── prof_i.ico │ │ └── win │ │ │ ├── prof_i.bmp │ │ │ ├── prof_i.ico │ │ │ └── prof_s.bmp │ ├── boot.ctl │ ├── bootmake │ ├── c │ │ ├── aboutmsg.c │ │ ├── clrsamps.c │ │ ├── diginter.c │ │ ├── dipinter.c │ │ ├── dlgcnvt.c │ │ ├── dlgoptn.c │ │ ├── dlgsamp.c │ │ ├── dumpmem.c │ │ ├── finger.c │ │ ├── getsamps.c │ │ ├── madinter.c │ │ ├── memutil.c │ │ ├── msg.c │ │ ├── msgstr.c │ │ ├── rptsamps.c │ │ ├── setsamps.c │ │ ├── support.c │ │ ├── utils.c │ │ ├── wndimain.c │ │ ├── wpasmfil.c │ │ ├── wpavals.c │ │ ├── wpbar.c │ │ ├── wpcnvt.c │ │ ├── wpdriver.c │ │ ├── wpgather.c │ │ ├── wpgetrow.c │ │ ├── wphelp.c │ │ ├── wpmain.c │ │ ├── wpnumrow.c │ │ ├── wppushin.c │ │ ├── wpsamp.c │ │ ├── wpsort.c │ │ ├── wpsrcfil.c │ │ ├── wpstart.c │ │ └── wpwind.c │ ├── dist │ │ ├── _mark_.for │ │ └── markstub.for │ ├── dos386 │ │ └── makefile │ ├── exever.rc │ ├── files.dat │ ├── h │ │ ├── appmanif.xml │ │ ├── common.h │ │ ├── dlgcnvt.h │ │ ├── dlgoptn.h │ │ ├── exedefs.h │ │ ├── foros2pm.rc │ │ ├── msg.h │ │ ├── myassert.h │ │ ├── pathlist.h │ │ ├── rcdef.h │ │ ├── sampinfo.h │ │ ├── srcmgt.h │ │ ├── wpasmfil.h │ │ ├── wpaui.h │ │ ├── wprof.h │ │ ├── wprof.rc │ │ ├── wprof.u │ │ ├── wprofgui.rc │ │ ├── wprofui.rc │ │ └── wpsrcfil.h │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── mif │ │ ├── master.mif │ │ ├── wproflib.mif │ │ └── wprofobj.mif │ ├── misc │ │ ├── document.txt │ │ ├── profiler.txt │ │ └── todo.dat │ ├── nt386 │ │ └── makefile │ ├── nt386c │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── os2386pm │ │ └── makefile │ ├── qnx386 │ │ └── makefile │ ├── test │ │ ├── check_if.c │ │ ├── do_it.c │ │ ├── dodmp.cmd │ │ ├── dogml.cmd │ │ ├── dont_do.c │ │ ├── fetch.c │ │ ├── makefile │ │ ├── mark.c │ │ ├── pt.h │ │ ├── pt.lnk │ │ ├── pt1.lnk │ │ ├── pt2.lnk │ │ ├── pt3.lnk │ │ ├── pt4.lnk │ │ ├── ptd.lnk │ │ ├── quoi.c │ │ ├── set_fals.c │ │ ├── set_true.c │ │ ├── show.c │ │ ├── threaded.c │ │ ├── threaded.lnk │ │ └── waste.c │ ├── utils │ │ ├── makefile │ │ ├── mergehlp.c │ │ ├── smpmt.c │ │ └── smpsync.c │ └── wini86 │ │ └── makefile ├── wsample │ ├── asm │ │ ├── cpuspeed.asm │ │ ├── hookdos.asm │ │ ├── hookos2.asm │ │ ├── hookpls.asm │ │ ├── hookrsi.asm │ │ ├── interc.asm │ │ ├── pitstuff.asm │ │ ├── timasm.asm │ │ └── timer.asm │ ├── boot.ctl │ ├── bootmake │ ├── c │ │ ├── io.c │ │ ├── realmode.c │ │ ├── rmhooks.c │ │ ├── sampaxp.c │ │ ├── sampdata.c │ │ ├── sampdos.c │ │ ├── sampexe.c │ │ ├── sample.c │ │ ├── samplnx.c │ │ ├── sampnlm.c │ │ ├── sampnt.c │ │ ├── sampos2.c │ │ ├── sampos22.c │ │ ├── samppls.c │ │ ├── samprsi.c │ │ ├── sampwin.c │ │ ├── settime.c │ │ ├── sysinit.c │ │ ├── sysio.c │ │ └── wmsg.c │ ├── callg.doc │ ├── dosi86 │ │ ├── makefile │ │ └── sysio.c │ ├── dump │ │ ├── makefile │ │ └── smpdump.c │ ├── exever.rc │ ├── files.dat │ ├── h │ │ ├── exceptv.h │ │ ├── intrptr.h │ │ ├── offset.h │ │ ├── os.h │ │ ├── sample.h │ │ ├── smpstuff.h │ │ ├── timermod.h │ │ ├── wmsg.h │ │ ├── wsample.msg │ │ ├── wsample.rc │ │ ├── wsamplew.ico │ │ ├── wsamplew.rc │ │ ├── wsamprc.h │ │ └── wsampres.rc │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── linuxppc │ │ └── makefile │ ├── master.mif │ ├── nlm │ │ ├── intrptr.h │ │ ├── io.c │ │ ├── makefile │ │ ├── nwhooks.c │ │ ├── os.h │ │ └── sysio.c │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── os2i86 │ │ └── makefile │ ├── pls386 │ │ └── makefile │ ├── rsii86 │ │ └── makefile │ ├── rsii86w │ │ └── makefile │ ├── wini86 │ │ ├── fault.c │ │ ├── getidata.c │ │ ├── globals.c │ │ ├── io.c │ │ ├── libload.c │ │ ├── makefile │ │ ├── notify.c │ │ ├── sampwin.h │ │ ├── sysio.c │ │ ├── winmain.c │ │ └── winopts.c │ └── wsample.h ├── wstrip │ ├── boot.ctl │ ├── bootmake │ ├── dosi86 │ │ └── makefile │ ├── exever.rc │ ├── files.dat │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── linuxmps │ │ └── makefile │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── output.c │ ├── prereq.ctl │ ├── qnx386 │ │ └── makefile │ ├── strip.c │ ├── usage.sp │ ├── wstrip.h │ ├── wstrip.msg │ └── wstrip.rc ├── wstub │ ├── files.dat │ ├── lang.ctl │ ├── makefile │ ├── prereq.ctl │ ├── wstub.c │ └── wstubq.c ├── wstuba │ ├── bigenv.bat │ ├── lang.ctl │ ├── makefile │ ├── prereq.ctl │ ├── wstub.asm │ └── wstubq.asm ├── wtouch │ ├── dosi86 │ │ └── makefile │ ├── dtparse.c │ ├── exever.rc │ ├── files.dat │ ├── lang.ctl │ ├── linux386 │ │ └── makefile │ ├── linuxmps │ │ └── makefile │ ├── master.mif │ ├── nt386 │ │ └── makefile │ ├── ntaxp │ │ └── makefile │ ├── os2386 │ │ └── makefile │ ├── qnxi86 │ │ └── makefile │ ├── touch.c │ ├── touch.h │ ├── usage.sp │ ├── wtmsg.c │ ├── wtmsg.h │ ├── wtouch.msg │ └── wtouch.rc ├── wv │ ├── boot.ctl │ ├── c │ │ ├── addarith.c │ │ ├── ambigsym.c │ │ ├── dbg_dbg.c │ │ ├── dbgass.c │ │ ├── dbgbrk.c │ │ ├── dbgcall.c │ │ ├── dbgcall2.c │ │ ├── dbgcap.c │ │ ├── dbgchain.c │ │ ├── dbgcmd.c │ │ ├── dbgcmdln.c │ │ ├── dbgdata.c │ │ ├── dbgdisp.c │ │ ├── dbgdll.c │ │ ├── dbgdot.c │ │ ├── dbgdraw.c │ │ ├── dbgerr.c │ │ ├── dbgevent.c │ │ ├── dbgexdat.c │ │ ├── dbgexec.c │ │ ├── dbgexins.c │ │ ├── dbgexpr.c │ │ ├── dbgexpr2.c │ │ ├── dbgexpr3.c │ │ ├── dbgexpr4.c │ │ ├── dbgfile.c │ │ ├── dbgfing.c │ │ ├── dbghook.c │ │ ├── dbgicon.c │ │ ├── dbgimg.c │ │ ├── dbginsp.c │ │ ├── dbginsty.c │ │ ├── dbgintrn.c │ │ ├── dbginvk.c │ │ ├── dbglist.c │ │ ├── dbglit.c │ │ ├── dbglkup.c │ │ ├── dbgloc.c │ │ ├── dbglog.c │ │ ├── dbgmain.c │ │ ├── dbgmem.c │ │ ├── dbgmisc.c │ │ ├── dbgmodfy.c │ │ ├── dbgovl.c │ │ ├── dbgpaint.c │ │ ├── dbgparse.c │ │ ├── dbgpend.c │ │ ├── dbgprint.c │ │ ├── dbgprog.c │ │ ├── dbgreg.c │ │ ├── dbgscan.c │ │ ├── dbgsem.c │ │ ├── dbgset.c │ │ ├── dbgshow.c │ │ ├── dbgsrc.c │ │ ├── dbgstdio.c │ │ ├── dbgsys.c │ │ ├── dbgtback.c │ │ ├── dbgtool.c │ │ ├── dbgtrace.c │ │ ├── dbgupdt.c │ │ ├── dbgutil.c │ │ ├── dbgvar.c │ │ ├── dbgvset.c │ │ ├── dbgwalk.c │ │ ├── dbgwass.c │ │ ├── dbgwbrk.c │ │ ├── dbgwcall.c │ │ ├── dbgwdata.c │ │ ├── dbgwdlg.c │ │ ├── dbgwfil.c │ │ ├── dbgwfpu.c │ │ ├── dbgwfunc.c │ │ ├── dbgwglob.c │ │ ├── dbgwimg.c │ │ ├── dbgwio.c │ │ ├── dbgwmac.c │ │ ├── dbgwmadr.c │ │ ├── dbgwmem.c │ │ ├── dbgwmmx.c │ │ ├── dbgwmod.c │ │ ├── dbgwregs.c │ │ ├── dbgwrep.c │ │ ├── dbgwrtrd.c │ │ ├── dbgwset.c │ │ ├── dbgwsrch.c │ │ ├── dbgwthrd.c │ │ ├── dbgwtogl.c │ │ ├── dbgwvar.c │ │ ├── dbgwxmm.c │ │ ├── diginter.c │ │ ├── dipinter.c │ │ ├── dlgabout.c │ │ ├── dlgambig.c │ │ ├── dlgasync.c │ │ ├── dlgayn.c │ │ ├── dlgbreak.c │ │ ├── dlgcmd.c │ │ ├── dlgdll.c │ │ ├── dlgexpr.c │ │ ├── dlgfile.c │ │ ├── dlglist.c │ │ ├── dlgnewp.c │ │ ├── dlgnewws.c │ │ ├── dlgoptn.c │ │ ├── dlgscan.c │ │ ├── dlgscomp.c │ │ ├── dlgsrc.c │ │ ├── dlgstk.c │ │ ├── dlgvarx.c │ │ ├── dlgwind.c │ │ ├── doserr.c │ │ ├── dui.c │ │ ├── dynmem.c │ │ ├── fingmsg.c │ │ ├── helpio.c │ │ ├── ldsupp.c │ │ ├── litdef.c │ │ ├── litengin.c │ │ ├── litwd.c │ │ ├── madinter.c │ │ ├── memtypes.c │ │ ├── mkstr.c │ │ ├── modcomp.c │ │ ├── modlist.c │ │ ├── namelist.c │ │ ├── remasync.c │ │ ├── remcore.c │ │ ├── remenv.c │ │ ├── remfile.c │ │ ├── remfinfo.c │ │ ├── remmisc.c │ │ ├── removl.c │ │ ├── remrtrd.c │ │ ├── remthrd.c │ │ ├── search.c │ │ ├── spawn.c │ │ ├── strutil.c │ │ ├── stub.c │ │ ├── symcomp.c │ │ ├── wndalloc.c │ │ ├── wnddump.c │ │ ├── wndhelp.c │ │ ├── wndmenu.c │ │ └── wndsys.c │ ├── dbg │ │ ├── addsrc.dbg │ │ ├── ads.dbg │ │ ├── animate.dbg │ │ ├── bcnt.dbg │ │ ├── bif.dbg │ │ ├── bp.dbg │ │ ├── cntbrks.dbg │ │ ├── colour.dbg │ │ ├── cvkeys.dbg │ │ ├── default.dbg │ │ ├── fill.dbg │ │ ├── fox.dbg │ │ ├── mono.dbg │ │ ├── nwvkeys.dbg │ │ ├── owvkeys.dbg │ │ ├── resize.dbg │ │ ├── restart.dbg │ │ ├── return.dbg │ │ ├── save.dbg │ │ ├── setup.dbg │ │ ├── slow.dbg │ │ ├── tdemu.dbg │ │ ├── tdkeys.dbg │ │ ├── vc.dbg │ │ ├── vikeys.dbg │ │ ├── vr.dbg │ │ ├── wd.dbg │ │ └── wdkeys.dbg │ ├── doc │ │ ├── changes.trp │ │ ├── cmd.doc │ │ ├── cvkey.doc │ │ ├── dbg.gml │ │ ├── debug.doc │ │ ├── defkey.doc │ │ ├── dosx.doc │ │ ├── extra.gml │ │ ├── intrp.doc │ │ ├── keys.doc │ │ ├── link.doc │ │ ├── mainmenu.doc │ │ ├── novnlm.doc │ │ ├── old_ovl.pdf │ │ ├── old_ovl.ps │ │ ├── old_trap.pdf │ │ ├── old_trap.ps │ │ ├── opt.doc │ │ ├── ovl.gml │ │ ├── predef.doc │ │ ├── readme │ │ ├── remote.doc │ │ ├── ritemous.doc │ │ ├── tdkey.doc │ │ ├── trap.gml │ │ ├── wddoc.gml │ │ └── wvideo95.hlp │ ├── dos │ │ ├── asm │ │ │ ├── dosstart.asm │ │ │ └── fork.asm │ │ ├── c │ │ │ ├── dosalloc.c │ │ │ ├── doschk.c │ │ │ ├── doscmd.c │ │ │ ├── dosfilio.c │ │ │ ├── dosgrow.c │ │ │ ├── doslkup.c │ │ │ ├── dosmem.c │ │ │ ├── dosscrn.c │ │ │ ├── dosstl.c │ │ │ ├── fmrscrn.c │ │ │ └── necscrn.c │ │ ├── dosi86 │ │ │ └── makefile │ │ ├── h │ │ │ ├── dbgscrn.h │ │ │ ├── dosheap.h │ │ │ ├── kbio.h │ │ │ ├── necscrio.h │ │ │ └── pcscrnio.h │ │ └── mapfix.vi │ ├── dsx │ │ ├── asm │ │ │ ├── dsxdebug.inc │ │ │ ├── dsxfork.asm │ │ │ └── dsxhdlr.asm │ │ ├── c │ │ │ ├── dsxchk.c │ │ │ ├── dsxcmd.c │ │ │ ├── dsxfilio.c │ │ │ ├── dsxlkup.c │ │ │ ├── dsxmem.c │ │ │ ├── dsxscrn.c │ │ │ ├── dsxstart.c │ │ │ └── trplddsx.c │ │ ├── dos386 │ │ │ └── makefile │ │ ├── h │ │ │ ├── dsxutil.h │ │ │ └── pcscrnio.h │ │ ├── readme │ │ └── test │ │ │ ├── dbgfork.asm │ │ │ ├── dbgutil.asm │ │ │ ├── debugger.c │ │ │ ├── makefile │ │ │ └── task.c │ ├── files.dat │ ├── h │ │ ├── ambigsym.h │ │ ├── appmanif.xml │ │ ├── dbgadget.h │ │ ├── dbgbreak.h │ │ ├── dbgchain.h │ │ ├── dbgcmd.h │ │ ├── dbgdata.h │ │ ├── dbgdefn.h │ │ ├── dbgerr.h │ │ ├── dbgevent.h │ │ ├── dbggptr.h │ │ ├── dbghook.h │ │ ├── dbgicon.h │ │ ├── dbginfo.h │ │ ├── dbginp.h │ │ ├── dbginvk.h │ │ ├── dbgio.h │ │ ├── dbgitem.h │ │ ├── dbglevel.h │ │ ├── dbglit.h │ │ ├── dbgmem.h │ │ ├── dbgmenu.h │ │ ├── dbgname.h │ │ ├── dbgradix.h │ │ ├── dbgreg.h │ │ ├── dbgrep.h │ │ ├── dbgri.h │ │ ├── dbgstk.h │ │ ├── dbgswtch.h │ │ ├── dbgtback.h │ │ ├── dbgtoggl.h │ │ ├── dbgtoken.h │ │ ├── dbgtrace.h │ │ ├── dbgvar.h │ │ ├── dbgwind.h │ │ ├── dialogs.rc │ │ ├── dipwv.h │ │ ├── dlgamb.dlg │ │ ├── dlgamb.h │ │ ├── dlgasync.dlg │ │ ├── dlgasync.h │ │ ├── dlgayn.dlg │ │ ├── dlgayn.h │ │ ├── dlgbrk.dlg │ │ ├── dlgbrk.h │ │ ├── dlgcmd.dlg │ │ ├── dlgcmd.h │ │ ├── dlghis.dlg │ │ ├── dlglist.dlg │ │ ├── dlglist.h │ │ ├── dlgnewp.dlg │ │ ├── dlgnewp.h │ │ ├── dlgoptn.dlg │ │ ├── dlgoptn.h │ │ ├── dlgstk.dlg │ │ ├── dlgstk.h │ │ ├── dlgvarx.dlg │ │ ├── dlgvarx.h │ │ ├── dlgwind.dlg │ │ ├── dlgwind.h │ │ ├── doserr.h │ │ ├── dui.h │ │ ├── farptrs.h │ │ ├── foros2pm.rc │ │ ├── gadgets.h │ │ ├── japamb.dlg │ │ ├── japayn.dlg │ │ ├── japbrk.dlg │ │ ├── japcmd.dlg │ │ ├── japhis.dlg │ │ ├── japlist.dlg │ │ ├── japnewp.dlg │ │ ├── japoptn.dlg │ │ ├── japstk.dlg │ │ ├── japvarx.dlg │ │ ├── japwind.dlg │ │ ├── keynames.h │ │ ├── language.h │ │ ├── ldsupp.h │ │ ├── litdef.h │ │ ├── literals.h │ │ ├── masmopt.h │ │ ├── masmshow.h │ │ ├── mempiece.h │ │ ├── memtypes.h │ │ ├── menu.str │ │ ├── menuasm.h │ │ ├── menubrk.h │ │ ├── menucall.h │ │ ├── menudef.h │ │ ├── menuenum.h │ │ ├── menufile.h │ │ ├── menufpu.h │ │ ├── menufunc.h │ │ ├── menuglob.h │ │ ├── menuimg.h │ │ ├── menuio.h │ │ ├── menumac.h │ │ ├── menumem.h │ │ ├── menumod.h │ │ ├── menureg.h │ │ ├── menurep.h │ │ ├── menurtrd.h │ │ ├── menusrch.h │ │ ├── menustr.h │ │ ├── menutool.h │ │ ├── menutrd.h │ │ ├── menuvar.h │ │ ├── mfilshow.h │ │ ├── mmbreak.h │ │ ├── mmcode.h │ │ ├── mmconfig.h │ │ ├── mmdat.h │ │ ├── mmfile.h │ │ ├── mmhelp.h │ │ ├── mmrun.h │ │ ├── mmsearch.h │ │ ├── mmundo.h │ │ ├── mmwind.h │ │ ├── modlist.h │ │ ├── mvarclas.h │ │ ├── mvaredit.h │ │ ├── mvaropt.h │ │ ├── mvarshow.h │ │ ├── mvartype.h │ │ ├── namelist.h │ │ ├── rcdef.h │ │ ├── spawn.h │ │ ├── srcmgt.h │ │ ├── sslops.h │ │ ├── strings.rc │ │ ├── sysdef.h │ │ ├── usage.sp │ │ ├── wd.str │ │ ├── wdengin.str │ │ ├── wdmsg.h │ │ ├── wndnames.h │ │ ├── wv.rc │ │ ├── wvpm.rc │ │ ├── wvui.rc │ │ └── wvwin.rc │ ├── hlp │ │ ├── whatsup.doc │ │ ├── wvideo.hlp │ │ └── wvideoj.hlp │ ├── lang.ctl │ ├── linux │ │ ├── boot.ctl │ │ ├── bootmake │ │ ├── c │ │ │ ├── linuxcmd.c │ │ │ ├── linuxio.c │ │ │ ├── lnxchk.c │ │ │ ├── lnxinit.c │ │ │ ├── lnxlkup.c │ │ │ └── lnxscrn.c │ │ ├── linux386 │ │ │ └── makefile │ │ └── linuxmps │ │ │ └── makefile │ ├── master.mif │ ├── os2 │ │ ├── 8087.ico │ │ ├── asm.ico │ │ ├── brk.ico │ │ ├── c │ │ │ ├── os22flio.c │ │ │ ├── os22ini.c │ │ │ ├── os2chk.c │ │ │ ├── os2cmd.c │ │ │ ├── os2filio.c │ │ │ ├── os2init.c │ │ │ ├── os2lkup.c │ │ │ ├── os2scrn.c │ │ │ ├── pmscrn.c │ │ │ ├── pmscrn2.c │ │ │ └── stubdb.c │ │ ├── call.ico │ │ ├── engos2 │ │ │ └── makefile │ │ ├── exe.ico │ │ ├── func.ico │ │ ├── glob.ico │ │ ├── hot.ico │ │ ├── io.ico │ │ ├── loc.ico │ │ ├── log.ico │ │ ├── mem.ico │ │ ├── mod.ico │ │ ├── os2386.gui │ │ │ └── makefile │ │ ├── os2386 │ │ │ └── makefile │ │ ├── os2i86.gui │ │ │ └── makefile │ │ ├── os2i86 │ │ │ └── makefile │ │ ├── pmtest │ │ │ ├── dbg.c │ │ │ ├── dbg.lnk │ │ │ ├── hello.c │ │ │ ├── hello.h │ │ │ ├── hello.ico │ │ │ ├── hello.lnk │ │ │ ├── hello.rc │ │ │ ├── locker.c │ │ │ ├── locker.h │ │ │ ├── locker.rc │ │ │ ├── makefile │ │ │ ├── try.c │ │ │ ├── try.lnk │ │ │ ├── undocapi.txt │ │ │ └── works.c │ │ ├── reg.ico │ │ ├── repl.ico │ │ ├── src.ico │ │ ├── srch.ico │ │ ├── thrd.ico │ │ ├── var.ico │ │ ├── wat.ico │ │ └── zapant.ico │ ├── qnx │ │ ├── c │ │ │ ├── qnxchk.c │ │ │ ├── qnxcmd.c │ │ │ ├── qnxfilio.c │ │ │ ├── qnxinit.c │ │ │ ├── qnxlkup.c │ │ │ └── qnxscrn.c │ │ ├── qnx386 │ │ │ └── makefile │ │ └── wvqnx.u │ ├── rdos │ │ ├── c │ │ │ ├── rdoschk.c │ │ │ ├── rdoscmd.c │ │ │ ├── rdosinit.c │ │ │ ├── rdosio.c │ │ │ ├── rdoslkup.c │ │ │ └── rdosscrn.c │ │ └── rdos386 │ │ │ └── makefile │ ├── rfx │ │ ├── doserr.c │ │ ├── dosi86 │ │ │ ├── inthdlrs.asm │ │ │ ├── localdos.c │ │ │ └── makefile │ │ ├── dta.h │ │ ├── fparse.h │ │ ├── local.h │ │ ├── master.mif │ │ ├── nt386 │ │ │ ├── localnt.c │ │ │ └── makefile │ │ ├── os2386 │ │ │ ├── localos2.c │ │ │ └── makefile │ │ ├── os2i86 │ │ │ ├── localos2.c │ │ │ └── makefile │ │ ├── rfx.c │ │ ├── rfxacc.c │ │ └── stubs.c │ ├── ssl │ │ ├── c.ssl │ │ ├── cpp.ssl │ │ ├── dbgintr.ssl │ │ ├── dbgrules.ssl │ │ ├── fortran.ssl │ │ ├── java.ssl │ │ ├── makefile │ │ ├── pp_c.ssl │ │ └── wsl.ssl │ ├── test │ │ └── dbgtest.c │ ├── utils │ │ └── trap2txt │ │ │ ├── c │ │ │ ├── trap2txt.cpp │ │ │ ├── trap_x86.cpp │ │ │ ├── trsp_cap.cpp │ │ │ ├── trsp_env.cpp │ │ │ ├── trsp_ovl.cpp │ │ │ ├── trsp_thr.cpp │ │ │ ├── trspfile.cpp │ │ │ └── trspfinf.cpp │ │ │ ├── master.mif │ │ │ ├── nt386 │ │ │ └── makefile │ │ │ └── readme.txt │ ├── wdb │ │ ├── c │ │ │ └── wdbstub.c │ │ └── nt386 │ │ │ └── makefile │ └── win │ │ ├── 8087.ico │ │ ├── ant.bmp │ │ ├── art.bmp │ │ ├── asm.ico │ │ ├── assembl1.bmp │ │ ├── assembl2.bmp │ │ ├── back.bmp │ │ ├── bpoints1.bmp │ │ ├── bpoints2.bmp │ │ ├── brk.ico │ │ ├── brkhere1.bmp │ │ ├── brkhere2.bmp │ │ ├── c │ │ ├── ntcmd.c │ │ ├── ntfilio.c │ │ ├── ntfinfo.c │ │ ├── ntguiscn.c │ │ ├── ntinit.c │ │ ├── ntscrn.c │ │ ├── ntstub.c │ │ ├── stubdb.c │ │ ├── wdstub.c │ │ ├── wguiscrn.c │ │ ├── winchk.c │ │ ├── wincmd.c │ │ ├── winfilio.c │ │ ├── wininit.c │ │ ├── winlkup.c │ │ └── winscrn.c │ │ ├── call.ico │ │ ├── close1.bmp │ │ ├── close2.bmp │ │ ├── closebmp.bmp │ │ ├── codeher1.bmp │ │ ├── codeher2.bmp │ │ ├── currbrk1.bmp │ │ ├── currbrk2.bmp │ │ ├── currdim1.bmp │ │ ├── currdim2.bmp │ │ ├── currlin1.bmp │ │ ├── currlin2.bmp │ │ ├── dimbrk1.bmp │ │ ├── dimbrk2.bmp │ │ ├── down.bmp │ │ ├── engnt │ │ └── makefile │ │ ├── exe.ico │ │ ├── exever.rc │ │ ├── for.bmp │ │ ├── func.ico │ │ ├── glob.ico │ │ ├── go.bmp │ │ ├── h │ │ └── winscrn.h │ │ ├── home.bmp │ │ ├── hot.ico │ │ ├── iclose1.bmp │ │ ├── iclose2.bmp │ │ ├── into.bmp │ │ ├── io.ico │ │ ├── iopen1.bmp │ │ ├── iopen2.bmp │ │ ├── kill.bmp │ │ ├── loc.ico │ │ ├── log.ico │ │ ├── mem.ico │ │ ├── mod.ico │ │ ├── nt386.gui │ │ └── makefile │ │ ├── nt386 │ │ └── makefile │ │ ├── ntaxp.gui │ │ └── makefile │ │ ├── ntaxp │ │ └── makefile │ │ ├── open1.bmp │ │ ├── open2.bmp │ │ ├── over.bmp │ │ ├── pmdbg.ico │ │ ├── points1.bmp │ │ ├── points2.bmp │ │ ├── read1.bmp │ │ ├── read2.bmp │ │ ├── reg.ico │ │ ├── repl.ico │ │ ├── return.bmp │ │ ├── source1.bmp │ │ ├── source2.bmp │ │ ├── splash.bmp │ │ ├── src.ico │ │ ├── srch.ico │ │ ├── stop.bmp │ │ ├── thrd.ico │ │ ├── unpoint1.bmp │ │ ├── unpoint2.bmp │ │ ├── up.bmp │ │ ├── var.ico │ │ ├── wat.ico │ │ ├── wini86.gui │ │ └── makefile │ │ ├── wini86 │ │ └── makefile │ │ ├── write1.bmp │ │ ├── write2.bmp │ │ └── zapant.ico └── yacc │ ├── boot.ctl │ ├── bootmake │ ├── c │ ├── bitsets.c │ ├── buildpro.c │ ├── default.c │ ├── defshift.c │ ├── dont_opt.c │ ├── elimunit.c │ ├── fpopen.c │ ├── genc.c │ ├── genfast.c │ ├── genobj.c │ ├── gensmall.c │ ├── gensupp.c │ ├── gentable.c │ ├── getname.c │ ├── lalr1.c │ ├── lr0.c │ ├── parse.c │ ├── recover.c │ ├── sentence.c │ ├── used.c │ ├── writeobj.c │ ├── yacc.c │ ├── yycompac.c │ └── yydriver.c │ ├── dos386 │ └── makefile │ ├── h │ ├── alloc.h │ ├── yacc.h │ ├── yaccins.h │ └── ytabmac.inc │ ├── lang.ctl │ ├── linux386 │ └── makefile │ ├── master.mif │ ├── nt386 │ └── makefile │ ├── ntaxp │ └── makefile │ ├── o │ ├── bug01.y │ └── makefile │ ├── os2386 │ └── makefile │ ├── prereq.ctl │ ├── things.2do │ └── y │ ├── ansic.y │ ├── bug.y │ ├── cansi.y │ ├── else.y │ ├── expr.y │ ├── hand.y │ └── simple.y ├── bootclean.sh ├── clean.sh ├── cmnvars.bat ├── cmnvars.cmd ├── cmnvars.sh ├── contrib ├── awk │ ├── FIXES │ ├── README │ ├── awk.1 │ ├── awk.h │ ├── awkgram.y │ ├── b.c │ ├── buildwin.bat │ ├── lex.c │ ├── lib.c │ ├── main.c │ ├── makefile │ ├── makefile.win │ ├── maketab.c │ ├── missing95.c │ ├── parse.c │ ├── proto.h │ ├── run.c │ ├── tran.c │ ├── ytab.c │ └── ytab.h ├── bzip2 │ ├── CHANGES │ ├── LICENSE │ ├── Makefile │ ├── Makefile-libbz2_so │ ├── README │ ├── README.COMPILATION.PROBLEMS │ ├── README.XML.STUFF │ ├── Y2K_INFO │ ├── blocksort.c │ ├── bz-common.xsl │ ├── bz-fo.xsl │ ├── bz-html.xsl │ ├── bzdiff │ ├── bzdiff.1 │ ├── bzgrep │ ├── bzgrep.1 │ ├── bzip.css │ ├── bzip2.1 │ ├── bzip2.1.preformatted │ ├── bzip2.c │ ├── bzip2.txt │ ├── bzip2recover.c │ ├── bzlib.c │ ├── bzlib.h │ ├── bzlib_private.h │ ├── bzmore │ ├── bzmore.1 │ ├── compress.c │ ├── crctable.c │ ├── decompress.c │ ├── dlltest.c │ ├── dlltest.dsp │ ├── entities.xml │ ├── format.pl │ ├── huffman.c │ ├── lib │ │ └── makefile │ ├── libbz2.def │ ├── libbz2.dsp │ ├── makefile.msc │ ├── manual.html │ ├── manual.pdf │ ├── manual.ps │ ├── manual.xml │ ├── mk251.c │ ├── randtable.c │ ├── sample1.bz2 │ ├── sample1.ref │ ├── sample2.bz2 │ ├── sample2.ref │ ├── sample3.bz2 │ ├── sample3.ref │ ├── spewG.c │ ├── unzcrash.c │ ├── words0 │ ├── words1 │ ├── words2 │ ├── words3 │ └── xmlproc.sh ├── dostrace │ ├── article.ps │ ├── doprnt.c │ ├── doprnt.h │ ├── makefile │ ├── readme.txt │ ├── trace.c │ └── trace.man ├── extender │ ├── causeway │ │ ├── bin │ │ │ ├── _mayday.c │ │ │ ├── aliassel.asm │ │ │ ├── callback.asm │ │ │ ├── croak1.c │ │ │ ├── croak2.c │ │ │ ├── croak3.c │ │ │ ├── cw.inc │ │ │ ├── cw.trp │ │ │ ├── cwapi.obj │ │ │ ├── cwc.exe │ │ │ ├── cwd.cfg │ │ │ ├── cwd.exe │ │ │ ├── cwd.ovl │ │ │ ├── cwdstub.exe │ │ │ ├── cwhelp.cfg │ │ │ ├── cwhelp.exe │ │ │ ├── cwstub.exe │ │ │ ├── cwswapr.obj │ │ │ ├── cwswaps.obj │ │ │ ├── cwsystem.lnk │ │ │ ├── dexdll.zip │ │ │ ├── dll.c │ │ │ ├── dllfunc.h │ │ │ ├── dllfunc.obj │ │ │ ├── dllr.lnk │ │ │ ├── dllr105a.obj │ │ │ ├── dlls.lnk │ │ │ ├── dlls105a.obj │ │ │ ├── dllstrtr.obj │ │ │ ├── dllstrts.obj │ │ │ ├── dlltest.c │ │ │ ├── dlltest.lnk │ │ │ ├── dosshell.asm │ │ │ ├── intasm.asm │ │ │ ├── intc.c │ │ │ ├── kbhitr.obj │ │ │ ├── kbhits.obj │ │ │ ├── le23p.exe │ │ │ ├── makefile │ │ │ ├── mslink.def │ │ │ ├── multflat.asm │ │ │ ├── multnear.asm │ │ │ ├── read.me │ │ │ ├── rtlink.def │ │ │ ├── screen32.asm │ │ │ ├── showevar.asm │ │ │ ├── showevar.obj │ │ │ ├── testterm.c │ │ │ ├── timer.asm │ │ │ ├── version.asm │ │ │ ├── vesa.asm │ │ │ ├── vesa.obj │ │ │ ├── vesa.txt │ │ │ ├── warplink.def │ │ │ ├── warpwrap.def │ │ │ ├── watswap.zip │ │ │ ├── wl32.exe │ │ │ ├── wmapcwd.c │ │ │ ├── wmapcwd.exe │ │ │ ├── wmapcwd.txt │ │ │ └── ww.exe │ │ ├── misc │ │ │ ├── critical.asm │ │ │ ├── cwswapr.asm │ │ │ ├── cwswaps.asm │ │ │ ├── impexp.txt │ │ │ ├── linear.zip │ │ │ ├── makeasm.com │ │ │ ├── ring0_16.asm │ │ │ ├── ring0_32.asm │ │ │ ├── stress2.asm │ │ │ ├── stress3.asm │ │ │ ├── verflat.asm │ │ │ ├── wmapcwd.c │ │ │ ├── wmapcwd.exe │ │ │ ├── wmapcwd.lnk │ │ │ └── wmapcwd.txt │ │ └── source │ │ │ └── all │ │ │ ├── 3plib │ │ │ ├── 3plib.asm │ │ │ ├── 3plib.exe │ │ │ └── 3plib.txt │ │ │ ├── a.bat │ │ │ ├── api.asm │ │ │ ├── b.bat │ │ │ ├── bgnovmak │ │ │ ├── big1novm.bat │ │ │ ├── bignovmx.bat │ │ │ ├── bnvmxmak │ │ │ ├── cw.inc │ │ │ ├── cw │ │ │ ├── a.bat │ │ │ ├── command.asm │ │ │ ├── cw.asm │ │ │ ├── cw.cfg │ │ │ ├── cwmake.asm │ │ │ ├── cwmake.exe │ │ │ ├── d.bat │ │ │ ├── e.bat │ │ │ ├── files.asm │ │ │ ├── general.inc │ │ │ └── print.asm │ │ │ ├── cw32.asm │ │ │ ├── cw32.def │ │ │ ├── cw32.inc │ │ │ ├── cw32.lib │ │ │ ├── cw32exp.def │ │ │ ├── cw352.exe │ │ │ ├── cwc.exe │ │ │ ├── cwc │ │ │ ├── a.bat │ │ │ ├── copystub.asm │ │ │ ├── copystub.com │ │ │ ├── copystub.exe │ │ │ ├── copystub.inc │ │ │ ├── cw.inc │ │ │ ├── cw.lib │ │ │ ├── cwc.asm │ │ │ ├── cwc.exe │ │ │ ├── cwlib.inc │ │ │ ├── decstub.asm │ │ │ ├── decstub.com │ │ │ ├── decstub.exe │ │ │ ├── decstub.inc │ │ │ ├── makeasm.com │ │ │ ├── makefile │ │ │ └── strucs.inc │ │ │ ├── cwd.exe │ │ │ ├── cwd.ovl │ │ │ ├── cwd │ │ │ ├── a.bat │ │ │ ├── cwd-ovl.asm │ │ │ ├── cwd.asm │ │ │ ├── cwd.cfg │ │ │ ├── cwd.exe │ │ │ ├── cwd.ovl │ │ │ ├── cwl.exe │ │ │ ├── disas.asm │ │ │ ├── disas.inc │ │ │ ├── equates.asm │ │ │ ├── evaluate.asm │ │ │ ├── files.asm │ │ │ ├── fpu.asm │ │ │ ├── generr.asm │ │ │ ├── getkeys.asm │ │ │ ├── isfpu.asm │ │ │ ├── macros.asm │ │ │ ├── macros.inc │ │ │ ├── makefile │ │ │ ├── print.asm │ │ │ ├── w.bat │ │ │ ├── win.asm │ │ │ └── wl │ │ │ ├── cwl │ │ │ ├── a.bat │ │ │ ├── cwl.asm │ │ │ ├── cwl.doc │ │ │ ├── cwl.exe │ │ │ └── cwl.inc │ │ │ ├── cwlib │ │ │ ├── cw.asm │ │ │ │ ├── _apndstr.asm │ │ │ │ ├── _beep.asm │ │ │ │ ├── _bin2dec.asm │ │ │ │ ├── _bin2hex.asm │ │ │ │ ├── _bord.asm │ │ │ │ ├── _buffile.asm │ │ │ │ ├── _closef.asm │ │ │ │ ├── _closew.asm │ │ │ │ ├── _command.asm │ │ │ │ ├── _copystr.asm │ │ │ │ ├── _crbtmp.asm │ │ │ │ ├── _createf.asm │ │ │ │ ├── _delay.asm │ │ │ │ ├── _deletef.asm │ │ │ │ ├── _dlgbtwn.asm │ │ │ │ ├── _dlgdraw.asm │ │ │ │ ├── _dlggtbd.asm │ │ │ │ ├── _dlggtbw.asm │ │ │ │ ├── _dlggtbx.asm │ │ │ │ ├── _dlggtby.asm │ │ │ │ ├── _dlggtd.asm │ │ │ │ ├── _dlggtst.asm │ │ │ │ ├── _dlggtw.asm │ │ │ │ ├── _dlgstst.asm │ │ │ │ ├── _dlgwhch.asm │ │ │ │ ├── _filesel.asm │ │ │ │ ├── _flmknm.asm │ │ │ │ ├── _free.asm │ │ │ │ ├── _getdrv.asm │ │ │ │ ├── _getdrvs.asm │ │ │ │ ├── _getkey.asm │ │ │ │ ├── _getpath.asm │ │ │ │ ├── _ldfont.asm │ │ │ │ ├── _ldgif.asm │ │ │ │ ├── _ldiff.asm │ │ │ │ ├── _ldimage.asm │ │ │ │ ├── _ldtga.asm │ │ │ │ ├── _lnstr.asm │ │ │ │ ├── _makflst.asm │ │ │ │ ├── _malloc.asm │ │ │ │ ├── _messw.asm │ │ │ │ ├── _mgetpos.asm │ │ │ │ ├── _msetype.asm │ │ │ │ ├── _openf.asm │ │ │ │ ├── _prntstr.asm │ │ │ │ ├── _readf.asm │ │ │ │ ├── _regsbit.asm │ │ │ │ ├── _regupw.asm │ │ │ │ ├── _relsbit.asm │ │ │ │ ├── _remallo.asm │ │ │ │ ├── _remsbit.asm │ │ │ │ ├── _renfile.asm │ │ │ │ ├── _rmsbits.asm │ │ │ │ ├── _setdacs.asm │ │ │ │ ├── _setdrv.asm │ │ │ │ ├── _setmode.asm │ │ │ │ ├── _setpal.asm │ │ │ │ ├── _setpath.asm │ │ │ │ ├── _setpix.asm │ │ │ │ ├── _setposf.asm │ │ │ │ ├── _srchrgb.asm │ │ │ │ ├── _srtflst.asm │ │ │ │ ├── _strlnpx.asm │ │ │ │ ├── _svgif.asm │ │ │ │ ├── _sviff.asm │ │ │ │ ├── _svimage.asm │ │ │ │ ├── _svtga.asm │ │ │ │ ├── _sys2hrd.asm │ │ │ │ ├── _ulflist.asm │ │ │ │ ├── _upchr.asm │ │ │ │ ├── _upprstr.asm │ │ │ │ ├── _vesa.asm │ │ │ │ ├── _video.asm │ │ │ │ ├── _waitkey.asm │ │ │ │ ├── _whichw.asm │ │ │ │ ├── _writef.asm │ │ │ │ ├── a.bat │ │ │ │ ├── apndstr.asm │ │ │ │ ├── arrow.gsc │ │ │ │ ├── bdrwlin.asm │ │ │ │ ├── beep.asm │ │ │ │ ├── bin2dec.asm │ │ │ │ ├── bin2hex.asm │ │ │ │ ├── bitfrec.asm │ │ │ │ ├── bitmaps.asm │ │ │ │ ├── blitbit.asm │ │ │ │ ├── blitw.asm │ │ │ │ ├── bmxflp.asm │ │ │ │ ├── bmyflp.asm │ │ │ │ ├── bord.asm │ │ │ │ ├── bsetpix.asm │ │ │ │ ├── buffile.asm │ │ │ │ ├── calsplts.asm │ │ │ │ ├── closef.asm │ │ │ │ ├── closew.asm │ │ │ │ ├── command.asm │ │ │ │ ├── copystr.asm │ │ │ │ ├── crbtmp.asm │ │ │ │ ├── createf.asm │ │ │ │ ├── delay.asm │ │ │ │ ├── deletef.asm │ │ │ │ ├── dlg_oc.asm │ │ │ │ ├── dlgbtwn.asm │ │ │ │ ├── dlgdraw.asm │ │ │ │ ├── dlggtbd.asm │ │ │ │ ├── dlggtbw.asm │ │ │ │ ├── dlggtbx.asm │ │ │ │ ├── dlggtby.asm │ │ │ │ ├── dlggtd.asm │ │ │ │ ├── dlggtst.asm │ │ │ │ ├── dlggtw.asm │ │ │ │ ├── dlgstst.asm │ │ │ │ ├── dlgwhch.asm │ │ │ │ ├── drwlin.asm │ │ │ │ ├── filesel.asm │ │ │ │ ├── fillrct.asm │ │ │ │ ├── fillw.asm │ │ │ │ ├── flmknm.asm │ │ │ │ ├── free.asm │ │ │ │ ├── getdrv.asm │ │ │ │ ├── getdrvs.asm │ │ │ │ ├── getkey.asm │ │ │ │ ├── getpath.asm │ │ │ │ ├── ldbm.asm │ │ │ │ ├── ldfont.asm │ │ │ │ ├── ldgif.asm │ │ │ │ ├── ldiff.asm │ │ │ │ ├── ldimage.asm │ │ │ │ ├── ldpcx.asm │ │ │ │ ├── ldtga.asm │ │ │ │ ├── lnstr.asm │ │ │ │ ├── makefile │ │ │ │ ├── makflst.asm │ │ │ │ ├── malloc.asm │ │ │ │ ├── mdelst.asm │ │ │ │ ├── messw.asm │ │ │ │ ├── mouse.asm │ │ │ │ ├── null.asm │ │ │ │ ├── openf.asm │ │ │ │ ├── openw.asm │ │ │ │ ├── palette.inc │ │ │ │ ├── printw.asm │ │ │ │ ├── prntstr.asm │ │ │ │ ├── readf.asm │ │ │ │ ├── regclipw.asm │ │ │ │ ├── regsbit.asm │ │ │ │ ├── regupw.asm │ │ │ │ ├── relsbit.asm │ │ │ │ ├── remallo.asm │ │ │ │ ├── remsbit.asm │ │ │ │ ├── renfile.asm │ │ │ │ ├── rmsbits.asm │ │ │ │ ├── setdacs.asm │ │ │ │ ├── setdrv.asm │ │ │ │ ├── setmode.asm │ │ │ │ ├── setpal.asm │ │ │ │ ├── setpath.asm │ │ │ │ ├── setpix.asm │ │ │ │ ├── setposf.asm │ │ │ │ ├── srchrgb.asm │ │ │ │ ├── srtflst.asm │ │ │ │ ├── startup.asm │ │ │ │ ├── strlnpx.asm │ │ │ │ ├── svbm.asm │ │ │ │ ├── svgif.asm │ │ │ │ ├── sviff.asm │ │ │ │ ├── svimage.asm │ │ │ │ ├── svtga.asm │ │ │ │ ├── sys2hrd.asm │ │ │ │ ├── timer.gsc │ │ │ │ ├── ulflist.asm │ │ │ │ ├── upchr.asm │ │ │ │ ├── upprstr.asm │ │ │ │ ├── vesa.asm │ │ │ │ ├── video.asm │ │ │ │ ├── waitkey.asm │ │ │ │ ├── wdrwlin.asm │ │ │ │ ├── whichw.asm │ │ │ │ ├── windows.asm │ │ │ │ ├── writef.asm │ │ │ │ └── wsetpix.asm │ │ │ ├── cw.lib │ │ │ └── cwlib.inc │ │ │ ├── cwstub.exe │ │ │ ├── d.bat │ │ │ ├── debugmak │ │ │ ├── decode_c.asm │ │ │ ├── e.bat │ │ │ ├── exceptn.asm │ │ │ ├── exesplit.exe │ │ │ ├── f.bat │ │ │ ├── general.inc │ │ │ ├── int10h.asm │ │ │ ├── int21h.asm │ │ │ ├── int33h.asm │ │ │ ├── interrup.asm │ │ │ ├── ldt.asm │ │ │ ├── le23p.exe │ │ │ ├── le23p │ │ │ ├── a.bat │ │ │ ├── c.inc │ │ │ ├── c2asm.obj │ │ │ ├── command.asm │ │ │ ├── cw.inc │ │ │ ├── cwc2asm.asm │ │ │ ├── cwfileio.asm │ │ │ ├── cwfileio.obj │ │ │ ├── cwmalloc.asm │ │ │ ├── cwmalloc.obj │ │ │ ├── cwstk2re.asm │ │ │ ├── d.bat │ │ │ ├── e.bat │ │ │ ├── equmac.inc │ │ │ ├── fileio.obj │ │ │ ├── le23p.asm │ │ │ ├── le23p.exe │ │ │ ├── le23p.lnk │ │ │ ├── le23p.obj │ │ │ ├── malloc.asm │ │ │ ├── malloc.obj │ │ │ ├── mallocd.obj │ │ │ ├── nt_le23p.exe │ │ │ ├── nt_le23p.lnk │ │ │ ├── nt_le23p.obj │ │ │ ├── openf.asm │ │ │ ├── prntstr.asm │ │ │ ├── startup.asm │ │ │ ├── stk2reg.obj │ │ │ ├── strucs.inc │ │ │ ├── system.inc │ │ │ ├── system.lib │ │ │ └── system2.lib │ │ │ ├── loadle │ │ │ └── loadle.asm │ │ │ ├── makefile │ │ │ ├── memory.asm │ │ │ ├── nocomp │ │ │ ├── noex.bat │ │ │ ├── noexmak │ │ │ ├── noexvm.bat │ │ │ ├── noexvmmk │ │ │ ├── novm.bat │ │ │ ├── novmmak │ │ │ ├── raw_vcpi.asm │ │ │ ├── read.me │ │ │ ├── strucs.inc │ │ │ └── watcom │ │ │ ├── a.bat │ │ │ ├── c.inc │ │ │ ├── c2asm.obj │ │ │ ├── cw.inc │ │ │ ├── cw.trp │ │ │ ├── cwdstub.asm │ │ │ ├── cwdstub.obj │ │ │ ├── cwhelp.cfg │ │ │ ├── cwhelp.cw │ │ │ ├── cwhelp.exe │ │ │ ├── cwsystem.lnk │ │ │ ├── dll.c │ │ │ ├── dllfunc.asm │ │ │ ├── dllfunc.h │ │ │ ├── dllr105a.obj │ │ │ ├── dlls105a.obj │ │ │ ├── dodll.bat │ │ │ ├── equmac.inc │ │ │ ├── h.bat │ │ │ ├── kbhit │ │ │ ├── a.bat │ │ │ ├── kbhit.asm │ │ │ └── makefile │ │ │ ├── makefile │ │ │ ├── oldcwhlp.cw │ │ │ ├── oldcwhlp.exe │ │ │ ├── system.inc │ │ │ ├── system.lib │ │ │ └── vesa.asm │ └── dos32a │ │ ├── binw │ │ ├── dos32a.exe │ │ ├── dos32a.lnk │ │ ├── sb.exe │ │ ├── sc.exe │ │ ├── sd.exe │ │ ├── ss.exe │ │ ├── stub32a.exe │ │ ├── stub32c.exe │ │ └── sver.exe │ │ ├── d32 │ │ ├── default.d32 │ │ ├── dos4gw.d32 │ │ ├── failsafe.d32 │ │ ├── maximum.d32 │ │ ├── minimum.d32 │ │ ├── pmodew.d32 │ │ ├── standard.d32 │ │ └── verbose.d32 │ │ ├── docs │ │ ├── html │ │ │ ├── down.html │ │ │ ├── gnrl.html │ │ │ ├── gnrl │ │ │ │ ├── 0c.html │ │ │ │ ├── 1.html │ │ │ │ ├── 10.html │ │ │ │ ├── 12.html │ │ │ │ ├── 13.html │ │ │ │ ├── 2.html │ │ │ │ ├── 3.html │ │ │ │ ├── 4.html │ │ │ │ ├── 5.html │ │ │ │ ├── 6.html │ │ │ │ ├── 7.html │ │ │ │ └── 9.html │ │ │ ├── index.html │ │ │ ├── libr.html │ │ │ ├── libr │ │ │ │ ├── 2 │ │ │ │ │ ├── 1.htm │ │ │ │ │ ├── 10.htm │ │ │ │ │ ├── 11.htm │ │ │ │ │ ├── 12.htm │ │ │ │ │ ├── 13.htm │ │ │ │ │ ├── 2.htm │ │ │ │ │ ├── 3.htm │ │ │ │ │ ├── 4.htm │ │ │ │ │ ├── 5.htm │ │ │ │ │ ├── 6.htm │ │ │ │ │ ├── 7.htm │ │ │ │ │ ├── 8.htm │ │ │ │ │ └── 9.htm │ │ │ │ ├── 3 │ │ │ │ │ ├── 1.htm │ │ │ │ │ ├── 2.htm │ │ │ │ │ └── 3.htm │ │ │ │ ├── 4 │ │ │ │ │ ├── 1.htm │ │ │ │ │ ├── 10.htm │ │ │ │ │ ├── 11.htm │ │ │ │ │ ├── 2.htm │ │ │ │ │ ├── 3.htm │ │ │ │ │ ├── 4.htm │ │ │ │ │ ├── 5.htm │ │ │ │ │ ├── 6.htm │ │ │ │ │ ├── 7.htm │ │ │ │ │ ├── 8.htm │ │ │ │ │ └── 9.htm │ │ │ │ ├── 5 │ │ │ │ │ ├── 1.htm │ │ │ │ │ └── 2.htm │ │ │ │ ├── 6 │ │ │ │ │ ├── 1.htm │ │ │ │ │ ├── 2.htm │ │ │ │ │ ├── 3.htm │ │ │ │ │ ├── 4.htm │ │ │ │ │ ├── 5.htm │ │ │ │ │ └── 6.htm │ │ │ │ ├── 1.html │ │ │ │ ├── 2.html │ │ │ │ ├── 3.html │ │ │ │ ├── 4.html │ │ │ │ ├── 5.html │ │ │ │ └── 6.html │ │ │ ├── main.html │ │ │ ├── menu.html │ │ │ ├── news.html │ │ │ ├── prog.html │ │ │ ├── prog │ │ │ │ ├── 1.html │ │ │ │ ├── 2.html │ │ │ │ ├── 3.html │ │ │ │ ├── 4.html │ │ │ │ ├── 5.html │ │ │ │ ├── int10h │ │ │ │ │ ├── 1b.html │ │ │ │ │ ├── 1c.html │ │ │ │ │ ├── 4f00.html │ │ │ │ │ ├── 4f01.html │ │ │ │ │ ├── 4f04.html │ │ │ │ │ ├── 4f09.html │ │ │ │ │ └── 4f0a.html │ │ │ │ ├── int21h │ │ │ │ │ ├── 09.htm │ │ │ │ │ ├── 0ff00.htm │ │ │ │ │ ├── 0ff80.htm │ │ │ │ │ ├── 0ff88.htm │ │ │ │ │ ├── 0ff89.htm │ │ │ │ │ ├── 0ff8a.htm │ │ │ │ │ ├── 0ff90.htm │ │ │ │ │ ├── 0ff91.htm │ │ │ │ │ ├── 0ff92.htm │ │ │ │ │ ├── 0ff93.htm │ │ │ │ │ ├── 0ff94.htm │ │ │ │ │ ├── 0ff95.htm │ │ │ │ │ ├── 0ff96.htm │ │ │ │ │ ├── 0ff97.htm │ │ │ │ │ ├── 0ff98.htm │ │ │ │ │ ├── 0ff99.htm │ │ │ │ │ ├── 0ff9a.htm │ │ │ │ │ ├── 1a.htm │ │ │ │ │ ├── 1b.htm │ │ │ │ │ ├── 1c.htm │ │ │ │ │ ├── 1f.htm │ │ │ │ │ ├── 25.htm │ │ │ │ │ ├── 2f.htm │ │ │ │ │ ├── 32.htm │ │ │ │ │ ├── 34.htm │ │ │ │ │ ├── 35.htm │ │ │ │ │ ├── 39.htm │ │ │ │ │ ├── 3a.htm │ │ │ │ │ ├── 3b.htm │ │ │ │ │ ├── 3c.htm │ │ │ │ │ ├── 3d.htm │ │ │ │ │ ├── 3f.htm │ │ │ │ │ ├── 40.htm │ │ │ │ │ ├── 41.htm │ │ │ │ │ ├── 42.htm │ │ │ │ │ ├── 43.htm │ │ │ │ │ ├── 47.htm │ │ │ │ │ ├── 48.htm │ │ │ │ │ ├── 49.htm │ │ │ │ │ ├── 4a.htm │ │ │ │ │ ├── 4b.htm │ │ │ │ │ ├── 4c.htm │ │ │ │ │ ├── 4e.htm │ │ │ │ │ ├── 4f.htm │ │ │ │ │ ├── 51.htm │ │ │ │ │ ├── 56.htm │ │ │ │ │ ├── 5a.htm │ │ │ │ │ ├── 5b.htm │ │ │ │ │ ├── 62.htm │ │ │ │ │ ├── 7139.htm │ │ │ │ │ ├── 713a.htm │ │ │ │ │ ├── 713b.htm │ │ │ │ │ ├── 7141.htm │ │ │ │ │ ├── 7143.htm │ │ │ │ │ ├── 7147.htm │ │ │ │ │ ├── 7156.htm │ │ │ │ │ ├── 7160.htm │ │ │ │ │ └── 716c.htm │ │ │ │ ├── int31h │ │ │ │ │ ├── 00.htm │ │ │ │ │ ├── 0000.htm │ │ │ │ │ ├── 0001.htm │ │ │ │ │ ├── 0002.htm │ │ │ │ │ ├── 0003.htm │ │ │ │ │ ├── 0006.htm │ │ │ │ │ ├── 0007.htm │ │ │ │ │ ├── 0008.htm │ │ │ │ │ ├── 0009.htm │ │ │ │ │ ├── 000a.htm │ │ │ │ │ ├── 000b.htm │ │ │ │ │ ├── 000c.htm │ │ │ │ │ ├── 000e.htm │ │ │ │ │ ├── 000f.htm │ │ │ │ │ ├── 01.htm │ │ │ │ │ ├── 0100.htm │ │ │ │ │ ├── 0101.htm │ │ │ │ │ ├── 0102.htm │ │ │ │ │ ├── 02.htm │ │ │ │ │ ├── 0200.htm │ │ │ │ │ ├── 0201.htm │ │ │ │ │ ├── 0202.htm │ │ │ │ │ ├── 0203.htm │ │ │ │ │ ├── 0204.htm │ │ │ │ │ ├── 0205.htm │ │ │ │ │ ├── 03.htm │ │ │ │ │ ├── 0300.htm │ │ │ │ │ ├── 0301.htm │ │ │ │ │ ├── 0302.htm │ │ │ │ │ ├── 0303.htm │ │ │ │ │ ├── 0304.htm │ │ │ │ │ ├── 0305.htm │ │ │ │ │ ├── 0306.htm │ │ │ │ │ ├── 04.htm │ │ │ │ │ ├── 0400.htm │ │ │ │ │ ├── 05.htm │ │ │ │ │ ├── 0500.htm │ │ │ │ │ ├── 0501.htm │ │ │ │ │ ├── 0502.htm │ │ │ │ │ ├── 0503.htm │ │ │ │ │ ├── 050a.htm │ │ │ │ │ ├── 06.htm │ │ │ │ │ ├── 0600.htm │ │ │ │ │ ├── 0601.htm │ │ │ │ │ ├── 0602.htm │ │ │ │ │ ├── 0603.htm │ │ │ │ │ ├── 0604.htm │ │ │ │ │ ├── 07.htm │ │ │ │ │ ├── 0702.htm │ │ │ │ │ ├── 0703.htm │ │ │ │ │ ├── 08.htm │ │ │ │ │ ├── 0800.htm │ │ │ │ │ ├── 0801.htm │ │ │ │ │ ├── 09.htm │ │ │ │ │ ├── 0900.htm │ │ │ │ │ ├── 0901.htm │ │ │ │ │ ├── 0902.htm │ │ │ │ │ ├── 0a00.htm │ │ │ │ │ ├── 0e00.htm │ │ │ │ │ ├── 0e01.htm │ │ │ │ │ ├── 0eeff.htm │ │ │ │ │ ├── dapi.htm │ │ │ │ │ └── derr.htm │ │ │ │ └── int33h │ │ │ │ │ ├── 0009.htm │ │ │ │ │ ├── 000c.htm │ │ │ │ │ ├── 0014.htm │ │ │ │ │ ├── 0016.htm │ │ │ │ │ ├── 0017.htm │ │ │ │ │ ├── 0018.htm │ │ │ │ │ ├── 0019.htm │ │ │ │ │ └── 0020.htm │ │ │ ├── sheet.css │ │ │ ├── tech.html │ │ │ ├── tech │ │ │ │ ├── 1.html │ │ │ │ ├── 10.html │ │ │ │ ├── 11.html │ │ │ │ ├── 2.html │ │ │ │ ├── 3.html │ │ │ │ ├── 4.html │ │ │ │ ├── 5.html │ │ │ │ ├── 6.html │ │ │ │ ├── 7.html │ │ │ │ ├── 8.html │ │ │ │ └── 9.html │ │ │ ├── user.html │ │ │ ├── user │ │ │ │ ├── 1.html │ │ │ │ ├── 2.html │ │ │ │ ├── 3.html │ │ │ │ ├── 4.html │ │ │ │ ├── 5.html │ │ │ │ ├── 6.html │ │ │ │ ├── 7.html │ │ │ │ └── 8.html │ │ │ ├── util.html │ │ │ └── util │ │ │ │ ├── 1.html │ │ │ │ ├── 2.html │ │ │ │ ├── 3.html │ │ │ │ ├── 3a.html │ │ │ │ ├── 3b.html │ │ │ │ ├── 3c.html │ │ │ │ ├── 3d.html │ │ │ │ ├── 3e.html │ │ │ │ ├── 3f.html │ │ │ │ ├── 4.html │ │ │ │ ├── 5.html │ │ │ │ └── 6.html │ │ ├── img │ │ │ ├── g0.png │ │ │ ├── p1.png │ │ │ ├── p2.png │ │ │ ├── s2.png │ │ │ ├── s3.png │ │ │ ├── s4.png │ │ │ ├── s6.png │ │ │ ├── shim.png │ │ │ ├── w1.png │ │ │ ├── w2.png │ │ │ ├── w3.png │ │ │ ├── w4.png │ │ │ ├── w5.png │ │ │ └── w6.png │ │ ├── index.html │ │ └── readme.txt │ │ ├── examples │ │ ├── asm_1 │ │ │ ├── hello.asm │ │ │ ├── hello.exe │ │ │ ├── make.bat │ │ │ └── oemtitle.inf │ │ ├── asm_2 │ │ │ ├── detect.asm │ │ │ ├── detect.exe │ │ │ ├── make.bat │ │ │ └── oemtitle.inf │ │ ├── asm_3 │ │ │ ├── int1ch.asm │ │ │ ├── int1ch.exe │ │ │ ├── make.bat │ │ │ └── oemtitle.inf │ │ ├── asm_4 │ │ │ ├── dbgshow.asm │ │ │ ├── dbgshow.exe │ │ │ ├── excshow.asm │ │ │ ├── excshow.exe │ │ │ ├── intshow.asm │ │ │ ├── intshow.exe │ │ │ ├── make.bat │ │ │ ├── oemtitle.inf │ │ │ ├── simshow.asm │ │ │ └── simshow.exe │ │ ├── asm_5 │ │ │ ├── make.bat │ │ │ ├── memerr.asm │ │ │ ├── memerr.exe │ │ │ └── oemtitle.inf │ │ ├── asm_6 │ │ │ ├── lfb.asm │ │ │ ├── lfb.exe │ │ │ ├── make.bat │ │ │ └── oemtitle.inf │ │ ├── asm_7 │ │ │ ├── make.bat │ │ │ ├── oemtitle.inf │ │ │ ├── tsr.asm │ │ │ ├── tsr.d32 │ │ │ └── tsr.exe │ │ ├── c_1 │ │ │ ├── hello.c │ │ │ ├── hello.exe │ │ │ ├── make.bat │ │ │ └── oemtitle.inf │ │ ├── c_2 │ │ │ ├── make.bat │ │ │ ├── memory.c │ │ │ ├── memory.exe │ │ │ └── oemtitle.inf │ │ ├── c_3 │ │ │ ├── except86.c │ │ │ ├── except86.d32 │ │ │ ├── except86.exe │ │ │ ├── except86.map │ │ │ ├── make.bat │ │ │ └── oemtitle.inf │ │ ├── c_4 │ │ │ ├── make.bat │ │ │ ├── nullptr.c │ │ │ ├── nullptr.d32 │ │ │ ├── nullptr.exe │ │ │ ├── nullptr.map │ │ │ └── oemtitle.inf │ │ ├── c_5 │ │ │ ├── make.bat │ │ │ ├── oemtitle.inf │ │ │ ├── vesa.c │ │ │ └── vesa.exe │ │ ├── c_6 │ │ │ ├── make.bat │ │ │ ├── oemtitle.inf │ │ │ ├── prog1.c │ │ │ ├── prog1.exe │ │ │ ├── prog2.c │ │ │ ├── prog2.exe │ │ │ ├── spawn.c │ │ │ └── spawn.exe │ │ ├── c_7 │ │ │ ├── d32alib.cpp │ │ │ ├── d32alib.exe │ │ │ ├── make.bat │ │ │ └── oemtitle.inf │ │ └── makeall.bat │ │ ├── h32 │ │ ├── d32a.h │ │ ├── debug.h │ │ └── typedefs.h │ │ ├── l32 │ │ ├── d32a.lib │ │ └── sdebug.lib │ │ ├── license.txt │ │ ├── pctest │ │ ├── 4gtest.bat │ │ ├── 4gwtest.bat │ │ ├── cwtest.bat │ │ ├── d32atest.bat │ │ ├── dos4gw.exe │ │ ├── pctest.exe │ │ ├── pmwtest.bat │ │ └── zrdxtest.bat │ │ ├── src │ │ ├── _todo.txt │ │ ├── dos32a │ │ │ ├── changes.txt │ │ │ ├── dos32a.asm │ │ │ ├── dos32a.map │ │ │ ├── kernel.asm │ │ │ ├── loader.asm │ │ │ ├── loadlc.asm │ │ │ ├── make.bat │ │ │ ├── makebeta.bat │ │ │ ├── notes.txt │ │ │ └── text │ │ │ │ ├── client │ │ │ │ ├── config.asm │ │ │ │ ├── data.asm │ │ │ │ ├── debug.asm │ │ │ │ ├── int10h.asm │ │ │ │ ├── int21h.asm │ │ │ │ ├── int33h.asm │ │ │ │ ├── misc.asm │ │ │ │ └── strings.asm │ │ │ │ ├── include.asm │ │ │ │ ├── kernel │ │ │ │ ├── detect.asm │ │ │ │ ├── exit.asm │ │ │ │ ├── init.asm │ │ │ │ ├── int31h.asm │ │ │ │ ├── intr.asm │ │ │ │ ├── misc.asm │ │ │ │ ├── mode.asm │ │ │ │ └── test.asm │ │ │ │ └── oemtitle.asm │ │ ├── makeall.bat │ │ ├── readme.txt │ │ ├── sb │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── make.bat │ │ │ ├── oemtitle.inf │ │ │ ├── sb.d32 │ │ │ └── sbind.asm │ │ ├── sc │ │ │ ├── encode.c │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── make.bat │ │ │ ├── oemtitle.inf │ │ │ ├── sc.d32 │ │ │ ├── scomp.asm │ │ │ └── sload.asm │ │ ├── sd │ │ │ ├── make.bat │ │ │ ├── oemtitle.inf │ │ │ ├── sd.asm │ │ │ ├── sd.d32 │ │ │ ├── sdebug.asm │ │ │ ├── sdisassm.asm │ │ │ ├── sdlib │ │ │ │ ├── make.bat │ │ │ │ ├── sdebug.asm │ │ │ │ ├── sdebug.inc │ │ │ │ └── sdisassm.inc │ │ │ ├── sloader.asm │ │ │ └── sloadlc.asm │ │ ├── setvars.bat │ │ ├── ss │ │ │ ├── iface.c │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── make.bat │ │ │ ├── menus.c │ │ │ ├── oemtitle.inf │ │ │ ├── setup.asm │ │ │ └── ss.d32 │ │ ├── stub32a │ │ │ ├── make.bat │ │ │ ├── oemtitle.inf │ │ │ ├── stub32a.asm │ │ │ └── stub32c.asm │ │ └── sutils │ │ │ ├── build │ │ │ ├── build.c │ │ │ ├── build.exe │ │ │ └── make.bat │ │ │ ├── misc │ │ │ ├── stddef.inc │ │ │ └── tasm.cfg │ │ │ ├── pctest │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── make.bat │ │ │ └── pctest.asm │ │ │ └── sver │ │ │ ├── main.c │ │ │ └── make.bat │ │ ├── updates.txt │ │ └── version.id ├── libzip │ ├── AUTHORS │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── THANKS │ ├── TODO │ ├── aclocal.m4 │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── install-sh │ ├── lib │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── make_zip_err_str.sh │ │ ├── zadd.c │ │ ├── zclose.c │ │ ├── zdelete.c │ │ ├── zdirent.c │ │ ├── zentfree.c │ │ ├── zentnew.c │ │ ├── zerr2str.c │ │ ├── zerrget.c │ │ ├── zerrgets.c │ │ ├── zerrstr.c │ │ ├── zerrstre.c │ │ ├── zfclose.c │ │ ├── zferrget.c │ │ ├── zfgetoff.c │ │ ├── zfopen.c │ │ ├── zfopenin.c │ │ ├── zfread.c │ │ ├── zfree.c │ │ ├── zfstrerr.c │ │ ├── zgetname.c │ │ ├── zgetnumf.c │ │ ├── zip.h │ │ ├── ziperror.c │ │ ├── zipint.h │ │ ├── znameloc.c │ │ ├── znew.c │ │ ├── zopen.c │ │ ├── zrename.c │ │ ├── zreplace.c │ │ ├── zsetname.c │ │ ├── zsrcbuff.c │ │ ├── zsrcfile.c │ │ ├── zsrcfilp.c │ │ ├── zsrcfree.c │ │ ├── zsrcfunc.c │ │ ├── zsrczip.c │ │ ├── zstat.c │ │ ├── zstatind.c │ │ ├── zstrerr.c │ │ ├── zuchg.c │ │ ├── zuchgall.c │ │ └── zuchgdat.c │ ├── libzip-uninstalled.pc.in │ ├── libzip.pc.in │ ├── ltmain.sh │ ├── man │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── libzip.man │ │ ├── libzip.mdoc │ │ ├── zip_add.man │ │ ├── zip_add.mdoc │ │ ├── zip_close.man │ │ ├── zip_close.mdoc │ │ ├── zip_delete.man │ │ ├── zip_delete.mdoc │ │ ├── zip_error_get.man │ │ ├── zip_error_get.mdoc │ │ ├── zip_error_get_sys_type.man │ │ ├── zip_error_get_sys_type.mdoc │ │ ├── zip_error_to_str.man │ │ ├── zip_error_to_str.mdoc │ │ ├── zip_errors.man │ │ ├── zip_errors.mdoc │ │ ├── zip_fclose.man │ │ ├── zip_fclose.mdoc │ │ ├── zip_file_strerror.man │ │ ├── zip_file_strerror.mdoc │ │ ├── zip_fopen.man │ │ ├── zip_fopen.mdoc │ │ ├── zip_fread.man │ │ ├── zip_fread.mdoc │ │ ├── zip_get_name.man │ │ ├── zip_get_name.mdoc │ │ ├── zip_get_num_files.man │ │ ├── zip_get_num_files.mdoc │ │ ├── zip_name_locate.man │ │ ├── zip_name_locate.mdoc │ │ ├── zip_open.man │ │ ├── zip_open.mdoc │ │ ├── zip_rename.man │ │ ├── zip_rename.mdoc │ │ ├── zip_source_buffer.man │ │ ├── zip_source_buffer.mdoc │ │ ├── zip_source_file.man │ │ ├── zip_source_file.mdoc │ │ ├── zip_source_filep.man │ │ ├── zip_source_filep.mdoc │ │ ├── zip_source_free.man │ │ ├── zip_source_free.mdoc │ │ ├── zip_source_function.man │ │ ├── zip_source_function.mdoc │ │ ├── zip_source_zip.man │ │ ├── zip_source_zip.mdoc │ │ ├── zip_stat.man │ │ ├── zip_stat.mdoc │ │ ├── zip_unchange.man │ │ ├── zip_unchange.mdoc │ │ ├── zip_unchange_all.man │ │ ├── zip_unchange_all.mdoc │ │ ├── zipcmp.man │ │ ├── zipcmp.mdoc │ │ ├── zipmerge.man │ │ └── zipmerge.mdoc │ ├── missing │ ├── mkinstalldirs │ ├── regress │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── broken.zip │ │ ├── buffadd.c │ │ ├── deltest.c │ │ ├── fread.c │ │ ├── mkname.c │ │ ├── mkname.h │ │ ├── name_locate.c │ │ ├── open.c │ │ ├── test.zip │ │ └── ziptest.c │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── zipcmp.c │ │ └── zipmerge.c │ └── wlib │ │ └── makefile ├── mp3lib │ ├── bitstrm.c │ ├── decoder.c │ ├── huffman.c │ ├── hufftab.c │ ├── internal.h │ ├── main.c │ ├── maindart.c │ ├── maindec.c │ ├── mainds.c │ ├── makefile │ ├── mp3dec.h │ ├── outfile.c │ ├── readme.1st │ └── synthtab.c ├── tinyxml │ ├── changes.txt │ ├── docs │ │ ├── annotated.html │ │ ├── classtixmlattribute-members.html │ │ ├── classtixmlattribute.html │ │ ├── classtixmlattribute.png │ │ ├── classtixmlbase-members.html │ │ ├── classtixmlbase.html │ │ ├── classtixmlbase.png │ │ ├── classtixmlcomment-members.html │ │ ├── classtixmlcomment.html │ │ ├── classtixmlcomment.png │ │ ├── classtixmldeclaration-members.html │ │ ├── classtixmldeclaration.html │ │ ├── classtixmldeclaration.png │ │ ├── classtixmldocument-members.html │ │ ├── classtixmldocument.html │ │ ├── classtixmldocument.png │ │ ├── classtixmlelement-members.html │ │ ├── classtixmlelement.html │ │ ├── classtixmlelement.png │ │ ├── classtixmlhandle-members.html │ │ ├── classtixmlhandle.html │ │ ├── classtixmlnode-members.html │ │ ├── classtixmlnode.html │ │ ├── classtixmlnode.png │ │ ├── classtixmlprinter-members.html │ │ ├── classtixmlprinter.html │ │ ├── classtixmlprinter.png │ │ ├── classtixmltext-members.html │ │ ├── classtixmltext.html │ │ ├── classtixmltext.png │ │ ├── classtixmlunknown-members.html │ │ ├── classtixmlunknown.html │ │ ├── classtixmlunknown.png │ │ ├── classtixmlvisitor-members.html │ │ ├── classtixmlvisitor.html │ │ ├── classtixmlvisitor.png │ │ ├── deprecated.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── files.html │ │ ├── functions.html │ │ ├── functions_enum.html │ │ ├── functions_func.html │ │ ├── functions_rela.html │ │ ├── functions_vars.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── pages.html │ │ ├── tab_b.gif │ │ ├── tab_l.gif │ │ ├── tab_r.gif │ │ ├── tabs.css │ │ ├── tinystr_8h-source.html │ │ ├── tinyxml_8h-source.html │ │ └── tutorial0.html │ ├── echo.dsp │ ├── makefile │ ├── readme.txt │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.dsw │ ├── tinyxml.h │ ├── tinyxml.sln │ ├── tinyxml_lib.dsp │ ├── tinyxml_lib.vcproj │ ├── tinyxmlerror.cpp │ ├── tinyxmlparser.cpp │ ├── tinyxmlstl.dsp │ ├── tinyxmlstl.vcproj │ ├── tinyxmltest.dsp │ ├── tinyxmltest.vcproj │ ├── tinyxmlteststl.dsp │ ├── tinyxmlteststl.vcproj │ ├── utf8test.gif │ ├── utf8test.xml │ ├── utf8testverify.xml │ └── xmltest.cpp ├── torture │ ├── crm.c │ ├── defs │ ├── read.me │ ├── readme.1st │ ├── s22.c │ ├── s22.old │ ├── s241.c │ ├── s243.c │ ├── s243.old │ ├── s244.c │ ├── s25.c │ ├── s25.old │ ├── s26.c │ ├── s4.c │ ├── s61.c │ ├── s626.c │ ├── s71.c │ ├── s714.c │ ├── s715.c │ ├── s72.c │ ├── s757.c │ ├── s7813.c │ ├── s81.c │ ├── s84.c │ ├── s85.c │ ├── s86.c │ ├── s88.c │ ├── s9.c │ └── setev.c ├── wattcp │ ├── bin │ │ ├── hosts │ │ ├── networks │ │ ├── protocol │ │ ├── services │ │ └── wattcp.cfg │ ├── changes │ ├── inc │ │ ├── arpa │ │ │ ├── ftp.h │ │ │ ├── inet.h │ │ │ ├── nameser.h │ │ │ ├── telnet.h │ │ │ └── tftp.h │ │ ├── copying.bsd │ │ ├── net │ │ │ ├── bpf.h │ │ │ ├── bpfdesc.h │ │ │ ├── ethertyp.h │ │ │ ├── if.h │ │ │ ├── if_arc.h │ │ │ ├── if_arp.h │ │ │ ├── if_atm.h │ │ │ ├── if_dl.h │ │ │ ├── if_ether.h │ │ │ ├── if_fddi.h │ │ │ ├── if_llc.h │ │ │ ├── if_media.h │ │ │ ├── if_ppp.h │ │ │ ├── if_pppva.h │ │ │ ├── if_slvar.h │ │ │ ├── if_strip.h │ │ │ ├── if_tun.h │ │ │ ├── if_types.h │ │ │ ├── netisr.h │ │ │ ├── pfil.h │ │ │ ├── ppp-comp.h │ │ │ ├── ppp_defs.h │ │ │ ├── radix.h │ │ │ ├── raw_cb.h │ │ │ ├── route.h │ │ │ ├── slcompre.h │ │ │ └── slip.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ ├── icmp_var.h │ │ │ ├── icmpv6.h │ │ │ ├── if_ether.h │ │ │ ├── if_fddi.h │ │ │ ├── igmp.h │ │ │ ├── igmp_var.h │ │ │ ├── in.h │ │ │ ├── in_pcb.h │ │ │ ├── in_systm.h │ │ │ ├── in_var.h │ │ │ ├── ip.h │ │ │ ├── ip_fw.h │ │ │ ├── ip_icmp.h │ │ │ ├── ip_mrout.h │ │ │ ├── ip_var.h │ │ │ ├── ipv6.h │ │ │ ├── nd6.h │ │ │ ├── tcp.h │ │ │ ├── tcp_debu.h │ │ │ ├── tcp_fsm.h │ │ │ ├── tcp_scor.h │ │ │ ├── tcp_seq.h │ │ │ ├── tcp_time.h │ │ │ ├── tcp_var.h │ │ │ ├── tcpip.h │ │ │ ├── udp.h │ │ │ └── udp_var.h │ │ ├── protocol │ │ │ ├── dumprest.h │ │ │ ├── routed.h │ │ │ ├── rwhod.h │ │ │ ├── talkd.h │ │ │ └── timed.h │ │ ├── resolv.h │ │ ├── rpc │ │ │ ├── auth.h │ │ │ ├── auth_des.h │ │ │ ├── auth_uni.h │ │ │ ├── clnt.h │ │ │ ├── key_prot.h │ │ │ ├── pmap_cln.h │ │ │ ├── pmap_pro.h │ │ │ ├── pmap_rmt.h │ │ │ ├── rpc.h │ │ │ ├── rpc_msg.h │ │ │ ├── svc.h │ │ │ ├── svc_auth.h │ │ │ ├── types.h │ │ │ └── xdr.h │ │ ├── rpcsvc │ │ │ ├── yp_prot.h │ │ │ └── ypclnt.h │ │ ├── sys │ │ │ ├── borland.err │ │ │ ├── cdefs.h │ │ │ ├── djgpp.err │ │ │ ├── errno.h │ │ │ ├── ioctl.h │ │ │ ├── metaware.err │ │ │ ├── msoft.err │ │ │ ├── msoft32.err │ │ │ ├── packoff.h │ │ │ ├── packon.h │ │ │ ├── param.h │ │ │ ├── queue.h │ │ │ ├── select.h │ │ │ ├── so_ioctl.h │ │ │ ├── socket.h │ │ │ ├── swap.h │ │ │ ├── syslog.h │ │ │ ├── time.h │ │ │ ├── turboc.err │ │ │ ├── watcom.err │ │ │ ├── werrno.h │ │ │ ├── wtime.h │ │ │ └── wtypes.h │ │ ├── syslog.h │ │ └── tcp.h │ ├── install │ ├── lib │ │ └── readme.txt │ ├── manual.txt │ ├── readme │ ├── readme.too │ ├── readme.wc │ └── src │ │ ├── accept.c │ │ ├── adr2asc.c │ │ ├── asc2adr.c │ │ ├── asmpkt.asm │ │ ├── asmpkt.h │ │ ├── asmpkt2.s │ │ ├── asmpkt4.asm │ │ ├── bind.c │ │ ├── bsddbug.c │ │ ├── bsdname.c │ │ ├── bsdname.h │ │ ├── bswap.asm │ │ ├── btree.c │ │ ├── btree.h │ │ ├── chksum.c │ │ ├── chksum.h │ │ ├── chksum0.asm │ │ ├── chksum0.s │ │ ├── close.c │ │ ├── config.h │ │ ├── configur.bat │ │ ├── connect.c │ │ ├── copyrigh.h │ │ ├── country.c │ │ ├── cpumodel.asm │ │ ├── cpumodel.s │ │ ├── crc.c │ │ ├── crc.h │ │ ├── crit.c │ │ ├── crit.h │ │ ├── djgpp.mak │ │ ├── echo.c │ │ ├── echo.h │ │ ├── fcntl.c │ │ ├── fortify.c │ │ ├── fortify.h │ │ ├── fragment.c │ │ ├── fragment.h │ │ ├── fsext.c │ │ ├── geteth.c │ │ ├── gethost.c │ │ ├── gethost2.c │ │ ├── getname.c │ │ ├── getnet.c │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── getprot.c │ │ ├── getput.c │ │ ├── getserv.c │ │ ├── gettod.c │ │ ├── gettod.h │ │ ├── gxby_r.c │ │ ├── highc.c │ │ ├── ioctl.c │ │ ├── ioport.h │ │ ├── ip_out.c │ │ ├── ip_out.h │ │ ├── language.c │ │ ├── language.h │ │ ├── language.l │ │ ├── linkaddr.c │ │ ├── lint.mak │ │ ├── listen.c │ │ ├── lookup.c │ │ ├── loopback.c │ │ ├── loopback.h │ │ ├── makefile │ │ ├── misc.c │ │ ├── misc.h │ │ ├── netaddr.c │ │ ├── netback.c │ │ ├── neterr.c │ │ ├── nettime.c │ │ ├── nsapaddr.c │ │ ├── oldstuff.c │ │ ├── pc_cbrk.c │ │ ├── pc_cbrk.h │ │ ├── pcarp.c │ │ ├── pcarp.h │ │ ├── pcbootp.c │ │ ├── pcbootp.h │ │ ├── pcbsd.c │ │ ├── pcbsd.h │ │ ├── pcbuf.c │ │ ├── pcbuf.h │ │ ├── pcconfig.c │ │ ├── pcconfig.h │ │ ├── pcdbug.c │ │ ├── pcdbug.h │ │ ├── pcdhcp.c │ │ ├── pcdhcp.h │ │ ├── pcicmp.c │ │ ├── pcicmp.h │ │ ├── pcigmp.c │ │ ├── pcigmp.h │ │ ├── pcintr.c │ │ ├── pcmulti.c │ │ ├── pcmulti.h │ │ ├── pcping.c │ │ ├── pcping.h │ │ ├── pcpkt.c │ │ ├── pcpkt.h │ │ ├── pcpkt32.c │ │ ├── pcpkt32.h │ │ ├── pcqueue.c │ │ ├── pcqueue.h │ │ ├── pcrarp.c │ │ ├── pcrarp.h │ │ ├── pcrecv.c │ │ ├── pcrecv.h │ │ ├── pcsed.c │ │ ├── pcsed.h │ │ ├── pcslip.c │ │ ├── pcslip.h │ │ ├── pcstat.c │ │ ├── pcstat.h │ │ ├── pctcp.c │ │ ├── pctcp.h │ │ ├── poll.c │ │ ├── poll.h │ │ ├── ports.c │ │ ├── pppoe.c │ │ ├── pppoe.h │ │ ├── presaddr.c │ │ ├── printk.c │ │ ├── printk.h │ │ ├── profile.c │ │ ├── profile.h │ │ ├── qmsg.c │ │ ├── receive.c │ │ ├── register.h │ │ ├── res_comp.c │ │ ├── res_data.c │ │ ├── res_debu.c │ │ ├── res_init.c │ │ ├── res_loc.c │ │ ├── res_mkqu.c │ │ ├── res_quer.c │ │ ├── res_send.c │ │ ├── resolver.h │ │ ├── rmcb.c │ │ ├── select.c │ │ ├── settod.c │ │ ├── settod.h │ │ ├── shutdown.c │ │ ├── signal.c │ │ ├── sock_dbu.c │ │ ├── sock_in.c │ │ ├── sock_ini.c │ │ ├── sock_ini.h │ │ ├── sock_io.c │ │ ├── sock_prn.c │ │ ├── sock_scn.c │ │ ├── sock_sel.c │ │ ├── socket.c │ │ ├── socket.h │ │ ├── sockopt.c │ │ ├── stream.c │ │ ├── strings.c │ │ ├── strings.h │ │ ├── syslog.c │ │ ├── syslog2.c │ │ ├── syslog2.h │ │ ├── target.h │ │ ├── tcp_fsm.c │ │ ├── tcp_fsm.h │ │ ├── tftp.c │ │ ├── tftp.h │ │ ├── timer.c │ │ ├── transmit.c │ │ ├── udp_dom.c │ │ ├── udp_dom.h │ │ ├── udp_nds.c │ │ ├── udp_nds.h │ │ ├── ufortify.h │ │ ├── version.c │ │ ├── w32pcap.c │ │ ├── w32pcap.h │ │ ├── watcom │ │ ├── depend.wat │ │ ├── large │ │ │ └── readme.txt │ │ └── syserr.c │ │ ├── wattcp.c │ │ ├── wattcp.h │ │ ├── wattcpd.c │ │ ├── wattcpd.h │ │ ├── wdpmi.c │ │ └── wdpmi.h └── zlib │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── adler32.c │ ├── algorithm.txt │ ├── amiga │ ├── Makefile.pup │ └── Makefile.sas │ ├── as400 │ ├── bndsrc │ ├── compile.clp │ ├── readme.txt │ └── zlib.inc │ ├── compress.c │ ├── configure │ ├── contrib │ ├── README.contrib │ ├── ada │ │ ├── buffer_demo.adb │ │ ├── mtest.adb │ │ ├── read.adb │ │ ├── readme.txt │ │ ├── test.adb │ │ ├── zlib-streams.adb │ │ ├── zlib-streams.ads │ │ ├── zlib-thin.adb │ │ ├── zlib-thin.ads │ │ ├── zlib.adb │ │ ├── zlib.ads │ │ └── zlib.gpr │ ├── asm586 │ │ ├── README.586 │ │ └── match.S │ ├── asm686 │ │ ├── README.686 │ │ └── match.S │ ├── blast │ │ ├── Makefile │ │ ├── README │ │ ├── blast.c │ │ ├── blast.h │ │ ├── test.pk │ │ └── test.txt │ ├── delphi │ │ ├── ZLib.pas │ │ ├── ZLibConst.pas │ │ ├── readme.txt │ │ └── zlibd32.mak │ ├── dotzlib │ │ ├── DotZLib.build │ │ ├── DotZLib.chm │ │ ├── DotZLib.sln │ │ ├── DotZLib │ │ │ ├── AssemblyInfo.cs │ │ │ ├── ChecksumImpl.cs │ │ │ ├── CircularBuffer.cs │ │ │ ├── CodecBase.cs │ │ │ ├── Deflater.cs │ │ │ ├── DotZLib.cs │ │ │ ├── DotZLib.csproj │ │ │ ├── GZipStream.cs │ │ │ ├── Inflater.cs │ │ │ └── UnitTests.cs │ │ ├── LICENSE_1_0.txt │ │ └── readme.txt │ ├── gzappend │ │ └── gzappend.c │ ├── infback9 │ │ ├── README │ │ ├── infback9.c │ │ ├── infback9.h │ │ ├── inffix9.h │ │ ├── inflate9.h │ │ ├── inftree9.c │ │ └── inftree9.h │ ├── inflate86 │ │ ├── inffas86.c │ │ └── inffast.S │ ├── iostream │ │ ├── test.cpp │ │ ├── zfstream.cpp │ │ └── zfstream.h │ ├── iostream2 │ │ ├── zstream.h │ │ └── zstream_test.cpp │ ├── iostream3 │ │ ├── README │ │ ├── TODO │ │ ├── test.cc │ │ ├── zfstream.cc │ │ └── zfstream.h │ ├── masm686 │ │ └── match.asm │ ├── masmx86 │ │ ├── gvmat32.asm │ │ ├── gvmat32c.c │ │ ├── inffas32.asm │ │ ├── mkasm.bat │ │ └── readme.txt │ ├── minizip │ │ ├── ChangeLogUnzip │ │ ├── Makefile │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── iowin32.c │ │ ├── iowin32.h │ │ ├── miniunz.c │ │ ├── minizip.c │ │ ├── mztools.c │ │ ├── mztools.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ ├── pascal │ │ ├── example.pas │ │ ├── readme.txt │ │ ├── zlibd32.mak │ │ └── zlibpas.pas │ ├── puff │ │ ├── Makefile │ │ ├── README │ │ ├── puff.c │ │ ├── puff.h │ │ └── zeros.raw │ ├── testzlib │ │ ├── testzlib.c │ │ ├── testzlib.sln │ │ └── testzlib.vcproj │ ├── untgz │ │ ├── Makefile │ │ ├── Makefile.msc │ │ └── untgz.c │ └── vstudio │ │ ├── readme.txt │ │ └── vc7 │ │ ├── gvmat32.obj │ │ ├── inffas32.obj │ │ ├── miniunz.vcproj │ │ ├── minizip.vcproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcproj │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── example.c │ ├── gzio.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── minigzip.c │ ├── msdos │ ├── Makefile.bor │ ├── Makefile.dj2 │ ├── Makefile.emx │ ├── Makefile.msc │ ├── Makefile.tc │ ├── Makefile.w16 │ └── Makefile.w32 │ ├── old │ ├── Make_vms.com │ ├── Makefile.riscos │ ├── README │ ├── descrip.mms │ ├── os2 │ │ ├── Makefile.os2 │ │ └── zlib.def │ ├── visual-basic.txt │ └── zlib.html │ ├── projects │ ├── README.projects │ └── visualc6 │ │ ├── README.txt │ │ ├── example.dsp │ │ ├── minigzip.dsp │ │ ├── zlib.dsp │ │ └── zlib.dsw │ ├── qnx │ └── package.qpg │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── win32 │ ├── DLL_FAQ.txt │ ├── Makefile.bor │ ├── Makefile.emx │ ├── Makefile.gcc │ ├── Makefile.msc │ ├── VisualC.txt │ ├── zlib.def │ └── zlib1.rc │ ├── zconf.h │ ├── zconf.in.h │ ├── zlib.3 │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── distrib ├── include │ ├── cancel.dlg │ ├── help.dlg │ ├── next.dlg │ ├── oc.dlg │ ├── ohc.dlg │ ├── ok.dlg │ ├── onc.dlg │ ├── pnhc.dlg │ ├── poc.dlg │ ├── previous.dlg │ ├── templat1.inf │ └── yesno.dlg ├── ow │ ├── 16bit.dlg │ ├── 32bit.dlg │ ├── alpha.inf │ ├── ccommon.inf │ ├── common.inf │ ├── disksize.dlg │ ├── dos386 │ │ └── makefile │ ├── dstdir.dlg │ ├── fcommon.inf │ ├── files.dat │ ├── final.dlg │ ├── full.dlg │ ├── fullcd.dlg │ ├── h16bit.dlg │ ├── h32bit.dlg │ ├── hdstdir.dlg │ ├── helpfile.dlg │ ├── hfull.dlg │ ├── hfullcd.dlg │ ├── hhelpfil.dlg │ ├── hhi.dlg │ ├── hhost.dlg │ ├── hmaint.dlg │ ├── hmini.dlg │ ├── hnewinst.dlg │ ├── hopt.dlg │ ├── hopt1.dlg │ ├── host.dlg │ ├── hosttarg.dlg │ ├── hother.dlg │ ├── hother1.dlg │ ├── hsel.dlg │ ├── htarget.dlg │ ├── lang.ctl │ ├── license.dlg │ ├── linux386 │ │ └── makefile │ ├── maintain.dlg │ ├── maintfin.dlg │ ├── master.mif │ ├── mini.dlg │ ├── mksetup.inf │ ├── newinst.dlg │ ├── nt386 │ │ └── makefile │ ├── options.dlg │ ├── options1.dlg │ ├── options2.dlg │ ├── os2386 │ │ └── makefile │ ├── other.dlg │ ├── other1.dlg │ ├── other2.dlg │ ├── readme.1st │ ├── readme.dat │ ├── sel.dlg │ ├── space.dlg │ ├── target.dlg │ └── unfinal.dlg ├── supp │ └── readme.txt ├── wc11 │ ├── 16bit.dlg │ ├── 32bit.dlg │ ├── 32sdksmp.dlg │ ├── alpha.inf │ ├── alphaopt.dlg │ ├── areadme.105 │ ├── axphost.dlg │ ├── axptarg.dlg │ ├── cancel.dlg │ ├── ccommon.inf │ ├── common.inf │ ├── compit.bat │ ├── dbgcopy.ctl │ ├── demacro.vi │ ├── diskac.bat │ ├── diskall.bat │ ├── diskc.bat │ ├── diskf.bat │ ├── diskit.bat │ ├── diskjc.bat │ ├── diskjf.bat │ ├── disksize.dlg │ ├── doit.bat │ ├── dojd.bat │ ├── dopack.vi │ ├── dstdir.dlg │ ├── f77setup.inf │ ├── fcommon.inf │ ├── files.dat │ ├── final.dlg │ ├── finish.bat │ ├── foo.ctl │ ├── found21.dlg │ ├── found25.dlg │ ├── found30.dlg │ ├── foundobs.dlg │ ├── freadme.105 │ ├── freadme.110 │ ├── freadme.11a │ ├── full.dlg │ ├── fullcd.dlg │ ├── go.ctl │ ├── go.vi │ ├── h16bit.dlg │ ├── h32bit.dlg │ ├── hdstdir.dlg │ ├── help.dlg │ ├── help2.dlg │ ├── helpfile.dlg │ ├── hfull.dlg │ ├── hfullcd.dlg │ ├── hhi.dlg │ ├── hhost.dlg │ ├── hithere.dlg │ ├── hmaint.dlg │ ├── hmakedsk.dlg │ ├── hmini.dlg │ ├── hnewinst.dlg │ ├── hopt.dlg │ ├── hopt1.dlg │ ├── hoptmd.dlg │ ├── host.dlg │ ├── hosttarg.dlg │ ├── hother.dlg │ ├── hother1.dlg │ ├── hothermd.dlg │ ├── hsel.dlg │ ├── htarget.dlg │ ├── hvpinstl.dlg │ ├── hwin32s.dlg │ ├── jfreadme.105 │ ├── jfreadme.110 │ ├── jreadme.105 │ ├── jreadme.110 │ ├── l10new.dat │ ├── lang.ctl │ ├── maintain.dlg │ ├── maintfin.dlg │ ├── make_axp.bat │ ├── make_c.bat │ ├── make_f77.bat │ ├── makedirs.vi │ ├── makedisk.dlg │ ├── mfc25.dlg │ ├── mfc25lib.dlg │ ├── mfc25smp.dlg │ ├── mfc2x.dlg │ ├── mfc2xlib.dlg │ ├── mfc2xsmp.dlg │ ├── mfc30.dlg │ ├── mfc30lib.dlg │ ├── mfc30smp.dlg │ ├── mfc32.dlg │ ├── mfc32lib.dlg │ ├── mfc32smp.dlg │ ├── mfc41.dlg │ ├── mfc41lib.dlg │ ├── mfc41smp.dlg │ ├── mini.dlg │ ├── mkdisk.inf │ ├── mkdskfin.dlg │ ├── mkdslfin.dlg │ ├── mklist.new │ ├── newainf.bat │ ├── newaset.bat │ ├── newcinf.bat │ ├── newcset.bat │ ├── newfinf.bat │ ├── newfset.bat │ ├── newinf.bat │ ├── newinf77.bat │ ├── newinst.dlg │ ├── oc.dlg │ ├── ohc.dlg │ ├── ok.dlg │ ├── optionmd.dlg │ ├── options.dlg │ ├── options1.dlg │ ├── options2.dlg │ ├── other.dlg │ ├── other1.dlg │ ├── other2.dlg │ ├── othermd.dlg │ ├── packdec.bat │ ├── packit.bat │ ├── packit.ctl │ ├── packsize.ctl │ ├── poc.dlg │ ├── pohc.dlg │ ├── previous.dlg │ ├── readme.10 │ ├── readme.105 │ ├── readme.110 │ ├── readme.11a │ ├── readme.1st │ ├── readme.ctl │ ├── readme.dat │ ├── sdk.dat │ ├── sdk_samp.dlg │ ├── sel.dlg │ ├── setup.inf │ ├── setup.var │ ├── space.dlg │ ├── startit.bat │ ├── startit.ctl │ ├── target.dlg │ ├── test.bat │ ├── unfinal.dlg │ ├── upgradno.dlg │ ├── upgradst.dlg │ ├── upgrlist.dlg │ ├── vpinstl.dlg │ ├── win32s.dlg │ ├── win32sdk.dlg │ └── yesno.dlg └── wcrtl │ ├── cancel.dlg │ ├── disksize.dlg │ ├── dstdir.dlg │ ├── files.dat │ ├── final.dlg │ ├── help.dlg │ ├── hithere.dlg │ ├── maintain.dlg │ ├── maintfin.dlg │ ├── mkdisk.inf │ ├── newinst.dlg │ ├── oc.dlg │ ├── ohc.dlg │ ├── ok.dlg │ ├── options.dlg │ ├── poc.dlg │ ├── pohc.dlg │ ├── previous.dlg │ ├── sel.dlg │ ├── space.dlg │ ├── unfinal.dlg │ └── wcrtlwel.dlg ├── docs ├── LJ │ ├── Article-Revisions.txt │ ├── Figure-1.png │ ├── Figure-2.png │ ├── Figure-3.png │ ├── README.txt │ ├── article.txt │ ├── check.c │ ├── hello.c │ ├── hello.tgt │ ├── hello.wpj │ ├── listing-1.txt │ ├── listing-2.txt │ ├── listing-3.txt │ ├── listing-4.txt │ └── sort.cpp ├── admin │ ├── README.txt │ ├── empty-dirs.js │ ├── help-rename.bat │ ├── makeOW.bat │ ├── making-release.txt │ └── writable-files.js ├── areadme.txt ├── booklist.txt ├── doc │ ├── cg │ │ ├── ccall.gml │ │ ├── cguide.bmp │ │ ├── cguide.gml │ │ ├── cguideq.gml │ │ ├── cmsgs.gml │ │ ├── cpasm.gml │ │ ├── cpbench.gml │ │ ├── cpheader.gml │ │ ├── cplibr.gml │ │ ├── cpoptlst.gml │ │ ├── cpoptmdl.gml │ │ ├── cpopts.gml │ │ ├── cpoptsum.gml │ │ ├── cppmsgs.gml │ │ ├── cpref.gml │ │ ├── cpwcc.gml │ │ ├── cromable.gml │ │ ├── crtmsgs.gml │ │ ├── errnodos.gml │ │ ├── errnoqnx.gml │ │ ├── inlintab.gml │ │ ├── seh.gml │ │ ├── wccerrs.gml │ │ └── wpperrs.gml │ ├── cl │ │ ├── advantag.gml │ │ ├── advanty.gml │ │ ├── appescap.gml │ │ ├── appkword.gml │ │ ├── apporder.gml │ │ ├── appprepr.gml │ │ ├── apptrigr.gml │ │ ├── array.gml │ │ ├── auto.gml │ │ ├── autostg.gml │ │ ├── basedptr.gml │ │ ├── basicle.gml │ │ ├── basicty.gml │ │ ├── boxmac.gml │ │ ├── bubble.gml │ │ ├── c.gml │ │ ├── charset.gml │ │ ├── clr.bmp │ │ ├── cmac.gml │ │ ├── comments.gml │ │ ├── const.gml │ │ ├── constant.gml │ │ ├── convert.gml │ │ ├── cover.gml │ │ ├── csymbol.gml │ │ ├── declare.gml │ │ ├── defmacro.gml │ │ ├── enum.gml │ │ ├── enumtab.gml │ │ ├── escape.gml │ │ ├── examples.gml │ │ ├── express.gml │ │ ├── extern.gml │ │ ├── float.gml │ │ ├── float370.gml │ │ ├── float87.gml │ │ ├── fltround.gml │ │ ├── function.gml │ │ ├── glossary.gml │ │ ├── grammar.gml │ │ ├── history.gml │ │ ├── ids.gml │ │ ├── if.gml │ │ ├── impldef1.gml │ │ ├── impldef2.gml │ │ ├── init.gml │ │ ├── integer.gml │ │ ├── intro.gml │ │ ├── keywords.gml │ │ ├── kwlist.gml │ │ ├── kwwatcom.gml │ │ ├── macro.gml │ │ ├── memos.gml │ │ ├── memos2.gml │ │ ├── modular.gml │ │ ├── notation.gml │ │ ├── notes │ │ ├── numlimit.gml │ │ ├── orddesc.gml │ │ ├── orderop.gml │ │ ├── ordtrans.gml │ │ ├── pcptrs.gml │ │ ├── pitfalls.gml │ │ ├── pointer.gml │ │ ├── portable.gml │ │ ├── preface.gml │ │ ├── preproc.gml │ │ ├── program.gml │ │ ├── ptr16.gml │ │ ├── register.gml │ │ ├── regtypes.gml │ │ ├── shade.ps │ │ ├── shade │ │ │ ├── intran.tbl │ │ │ ├── nbpsshad.opt │ │ │ ├── ps.pcd │ │ │ ├── psdrv.pcd │ │ │ ├── psshade.fon │ │ │ ├── shade.eps │ │ │ ├── shademac.gml │ │ │ ├── shdtest.gml │ │ │ ├── shdtest.ps │ │ │ ├── steve.gml │ │ │ └── steve.ps │ │ ├── statemen.gml │ │ ├── static.gml │ │ ├── statstg.gml │ │ ├── stgclass.gml │ │ ├── string.gml │ │ ├── struct.gml │ │ ├── style.gml │ │ ├── sysmacro.gml │ │ ├── thanks.gml │ │ ├── tqwatcom.gml │ │ ├── trademrk.gml │ │ ├── translim.gml │ │ ├── trigraph.gml │ │ ├── typedef.gml │ │ ├── union.gml │ │ ├── usebook.gml │ │ ├── uses.gml │ │ ├── void.gml │ │ └── volatile.gml │ ├── cmn │ │ ├── 386arch.gml │ │ ├── 86arch.gml │ │ ├── about.gml │ │ ├── bpatch.gml │ │ ├── cmpenv.gml │ │ ├── complink.gml │ │ ├── ctools.gml │ │ ├── environ.gml │ │ ├── envsetup.gml │ │ ├── exe2bin.gml │ │ ├── ftools.gml │ │ ├── ide2make.gml │ │ ├── owcc.gml │ │ ├── owccopts.gml │ │ ├── pcbugfrm.gml │ │ ├── prag16.gml │ │ ├── pragma.gml │ │ ├── pragstx.gml │ │ ├── toolpref.gml │ │ ├── tools.gml │ │ ├── was.gml │ │ ├── wasaxp.gml │ │ ├── wasm.gml │ │ ├── wasmitms.gml │ │ ├── wasqual.gml │ │ ├── wasvqual.gml │ │ ├── wbsymbol.gml │ │ ├── wcgmem.gml │ │ ├── wcl.gml │ │ ├── wdis.gml │ │ ├── wdisasm.gml │ │ ├── wfl.gml │ │ ├── winio.gml │ │ ├── wmake.gml │ │ ├── wmakemsg.gml │ │ ├── wmemlay.gml │ │ ├── wmodels.gml │ │ ├── wmodl386.gml │ │ ├── womp.gml │ │ ├── wompexam.gml │ │ └── wtouch.gml │ ├── cpplib │ │ ├── _alocfns.gml │ │ ├── _dtor.gml │ │ ├── _dtor2.gml │ │ ├── _expt_bc.gml │ │ ├── _iext_bc.gml │ │ ├── _keyequ.gml │ │ ├── _valequ.gml │ │ ├── alloctor.cpp │ │ ├── clslib.gml │ │ ├── complex_.gml │ │ ├── contdef.gml │ │ ├── cpplib.gml │ │ ├── cpx_asgn.gml │ │ ├── cpx_op.gml │ │ ├── filebuf_.gml │ │ ├── flb_desc.gml │ │ ├── fs_ovflw.gml │ │ ├── fs_unflw.gml │ │ ├── fstr_ct1.gml │ │ ├── fstr_ct2.gml │ │ ├── fstr_ct3.gml │ │ ├── fstr_ct4.gml │ │ ├── fstr_dt.gml │ │ ├── fstr_op.gml │ │ ├── fstrbse_.gml │ │ ├── fstream_.gml │ │ ├── hdrs.gml │ │ ├── ifstrm_.gml │ │ ├── intro.gml │ │ ├── ios_.gml │ │ ├── ios_stat.gml │ │ ├── iosinit.gml │ │ ├── iostrm_.gml │ │ ├── iotypes.gml │ │ ├── ipword.gml │ │ ├── isstrm_.gml │ │ ├── istr_in.gml │ │ ├── istream_.gml │ │ ├── libftyp.gml │ │ ├── listcont.gml │ │ ├── listiter.gml │ │ ├── makefile │ │ ├── manip_.gml │ │ ├── mkdos.cmd │ │ ├── mkqnx.cmd │ │ ├── ofstrm_.gml │ │ ├── osstrm_.gml │ │ ├── ostr_out.gml │ │ ├── ostream_.gml │ │ ├── predef.gml │ │ ├── preface.gml │ │ ├── queue.gml │ │ ├── sb_rgp.gml │ │ ├── sb_sbmpc.gml │ │ ├── sb_spkc.gml │ │ ├── seekdir.gml │ │ ├── seekmode.gml │ │ ├── ssb_desc.gml │ │ ├── sst_str.gml │ │ ├── sstr_ct1.gml │ │ ├── sstr_ct2.gml │ │ ├── sstr_dt.gml │ │ ├── sstrbse_.gml │ │ ├── sstrbuf_.gml │ │ ├── sstrm_.gml │ │ ├── stack.gml │ │ ├── std_desc.gml │ │ ├── stdiobu_.gml │ │ ├── str_b.gml │ │ ├── str_subs.gml │ │ ├── streamb_.gml │ │ ├── string_.gml │ │ ├── wcalloc.gml │ │ ├── wcdlink.gml │ │ ├── wcexcep.gml │ │ ├── wchash.gml │ │ ├── wchashdi.gml │ │ ├── wchashit.gml │ │ ├── wchashst.gml │ │ ├── wchiter.gml │ │ ├── wcisv.gml │ │ ├── wcisvit.gml │ │ ├── wcitexc.gml │ │ ├── wcldintr.cpp │ │ ├── wcldptr.cpp │ │ ├── wcldval.cpp │ │ ├── wclist.gml │ │ ├── wclistit.gml │ │ ├── wcptr.gml │ │ ├── wcptrit.gml │ │ ├── wcqueue.cpp │ │ ├── wcskip.gml │ │ ├── wcskipdi.gml │ │ ├── wcskipst.gml │ │ ├── wcslink.gml │ │ ├── wcstack.cpp │ │ ├── wcval.gml │ │ ├── wcvalit.gml │ │ ├── wcvdli.cpp │ │ ├── wcvect.gml │ │ ├── wcvector.gml │ │ └── wcvectos.gml │ ├── cstyle │ │ └── cstyle.txt │ ├── cw │ │ ├── cw.gml │ │ ├── gloss.gml │ │ ├── guide.gml │ │ ├── intro.gml │ │ └── ref.gml │ ├── devguide │ │ ├── arch.gml │ │ ├── devguide.gml │ │ ├── docs.gml │ │ ├── style.gml │ │ └── tour.gml │ ├── fg │ │ ├── fcall.gml │ │ ├── fcond.gml │ │ ├── fdata.gml │ │ ├── fdosfile.gml │ │ ├── ferrmac.gml │ │ ├── ferrmsg.gml │ │ ├── ferror.gml │ │ ├── fgkslib.old │ │ ├── fguide.bmp │ │ ├── flib.gml │ │ ├── fplibr.gml │ │ ├── fpopts.gml │ │ ├── fpref.gml │ │ ├── fpwfc.gml │ │ ├── fuguide.gml │ │ ├── include.gml │ │ ├── optdflts.gml │ │ ├── optsumry.gml │ │ ├── wfcerrs.gml │ │ └── wfcopts.gml │ ├── fl │ │ ├── alloc.for │ │ ├── appoint.for │ │ ├── bit.for │ │ ├── bit2.for │ │ ├── bit3.for │ │ ├── bl.for │ │ ├── case.for │ │ ├── char.for │ │ ├── cycle.for │ │ ├── cycle1.for │ │ ├── dealloc.for │ │ ├── equiv.for │ │ ├── f77ext.gml │ │ ├── f77lr.gml │ │ ├── farrays.gml │ │ ├── fassmnt.gml │ │ ├── fexit.for │ │ ├── fexpr.gml │ │ ├── fformats.gml │ │ ├── finote1.gml │ │ ├── finote10.gml │ │ ├── finote11.gml │ │ ├── finote2.gml │ │ ├── finote3.gml │ │ ├── finote4.gml │ │ ├── finote4a.gml │ │ ├── finote4b.gml │ │ ├── finote5a.gml │ │ ├── finote5b.gml │ │ ├── finote6.gml │ │ ├── finote7.gml │ │ ├── finote8.gml │ │ ├── finote9.gml │ │ ├── fio.gml │ │ ├── fitab.gml │ │ ├── fitabmon.gml │ │ ├── flmacs.gml │ │ ├── flpref.gml │ │ ├── fmt.for │ │ ├── fordoc.gml │ │ ├── frecord.gml │ │ ├── frstfont.gml │ │ ├── fsrcfmt.gml │ │ ├── fstats.gml │ │ ├── fstruct.gml │ │ ├── fsubp.gml │ │ ├── fsubstr.gml │ │ ├── ftypes.gml │ │ ├── guess.for │ │ ├── guess1.for │ │ ├── intran.tbl │ │ ├── item.for │ │ ├── items.dat │ │ ├── items.for │ │ ├── loc.for │ │ ├── map.for │ │ ├── namel.for │ │ ├── namel2.for │ │ ├── nbpsf77.opt │ │ ├── people.dat │ │ ├── people.for │ │ ├── person.for │ │ ├── ps.pcd │ │ ├── psdrv.pcd │ │ ├── psshade.fon │ │ ├── sadmit.gml │ │ ├── sallocat.gml │ │ ├── sassign.gml │ │ ├── sat.gml │ │ ├── sbackspa.gml │ │ ├── sblock.gml │ │ ├── scall.gml │ │ ├── scase.gml │ │ ├── schar.gml │ │ ├── scharact.gml │ │ ├── sclose.gml │ │ ├── scommon.gml │ │ ├── scomplex.gml │ │ ├── scontinu.gml │ │ ├── screen.for │ │ ├── scycle.gml │ │ ├── sdata.gml │ │ ├── sdealloc.gml │ │ ├── sdimensi.gml │ │ ├── sdo.gml │ │ ├── sdouble.gml │ │ ├── sdowhile.gml │ │ ├── selse.gml │ │ ├── selseif.gml │ │ ├── send.gml │ │ ├── sendaten.gml │ │ ├── sendbloc.gml │ │ ├── senddo.gml │ │ ├── sendfile.gml │ │ ├── sendgues.gml │ │ ├── sendif.gml │ │ ├── sendloop.gml │ │ ├── sendmap.gml │ │ ├── sendsele.gml │ │ ├── sendstru.gml │ │ ├── sendunio.gml │ │ ├── sendwhil.gml │ │ ├── sentry.gml │ │ ├── sequival.gml │ │ ├── sexecute.gml │ │ ├── sexit.gml │ │ ├── sexterna.gml │ │ ├── sformat.gml │ │ ├── sfunctio.gml │ │ ├── sgo.gml │ │ ├── sguess.gml │ │ ├── shade.fil │ │ ├── sif.gml │ │ ├── simplici.gml │ │ ├── sinclude.gml │ │ ├── sinquire.gml │ │ ├── sinteger.gml │ │ ├── sintrins.gml │ │ ├── slogical.gml │ │ ├── sloop.gml │ │ ├── smap.gml │ │ ├── snamelis.gml │ │ ├── sopen.gml │ │ ├── sotherwi.gml │ │ ├── sparamet.gml │ │ ├── spause.gml │ │ ├── sprint.gml │ │ ├── sprogram.gml │ │ ├── squit.gml │ │ ├── sread.gml │ │ ├── sreal.gml │ │ ├── srecord.gml │ │ ├── sremote.gml │ │ ├── sreturn.gml │ │ ├── srewind.gml │ │ ├── ssave.gml │ │ ├── sselect.gml │ │ ├── sstop.gml │ │ ├── sstructu.gml │ │ ├── ssubrout.gml │ │ ├── stmtclas.gml │ │ ├── student.for │ │ ├── stypdat.gml │ │ ├── stype.gml │ │ ├── stypext.gml │ │ ├── sunion.gml │ │ ├── suntil.gml │ │ ├── svolatil.gml │ │ ├── swhile.gml │ │ ├── swrite.gml │ │ └── while.for │ ├── gml │ │ ├── banner.gml │ │ ├── bantop.gml │ │ ├── booklay.gml │ │ ├── boxes.gml │ │ ├── copyrite.gml │ │ ├── copyrrsi.gml │ │ ├── cppextra.gml │ │ ├── defs.gml │ │ ├── disclaim.gml │ │ ├── doctitle.gml │ │ ├── dup.ps │ │ ├── enlarge.ps │ │ ├── eoj.ps │ │ ├── ezamble.ps │ │ ├── fmtmacro.gml │ │ ├── gmlack.gml │ │ ├── gmlmacs.gml │ │ ├── help.gml │ │ ├── help.opt │ │ ├── helplay.gml │ │ ├── html.opt │ │ ├── htmllay.gml │ │ ├── htmlmacs.gml │ │ ├── light2.eps │ │ ├── ltning.eps │ │ ├── lytchg.gml │ │ ├── nb6x8lay.gml │ │ ├── nb6x8ps.opt │ │ ├── nb7x9lay.gml │ │ ├── nb7x9lyn.gml │ │ ├── nb7x9ps.opt │ │ ├── nb7x9psc.opt │ │ ├── nb7x9psn.opt │ │ ├── nbhlp.opt │ │ ├── nbhlplay.gml │ │ ├── nbhlpos2.opt │ │ ├── nblay.gml │ │ ├── nbps.opt │ │ ├── nbpsshad.opt │ │ ├── newslett.gml │ │ ├── nn7x9lay.gml │ │ ├── nn7x9ps.opt │ │ ├── nobanner.gml │ │ ├── nodup.ps │ │ ├── owlogo.eps │ │ ├── ps269.ps │ │ ├── ps269r.ps │ │ ├── ps2811.ps │ │ ├── ps2epi.ps │ │ ├── pwrs.eps │ │ ├── rev.gml │ │ ├── rmfmacro.gml │ │ ├── rule.eps │ │ ├── rule6x8.eps │ │ ├── rule7x9.eps │ │ ├── shrink.ps │ │ ├── symbols.gml │ │ ├── to85x11.gml │ │ ├── ul.ps │ │ ├── wbls.opt │ │ ├── wblslay.gml │ │ ├── wbps.opt │ │ ├── wbpslay.gml │ │ ├── wmodels.gml │ │ ├── wtrdmrk.gml │ │ └── xdefs.gml │ ├── gs │ │ ├── bench.gml │ │ ├── bmpide.bat │ │ ├── c_readme.gml │ │ ├── cbooks.bmp │ │ ├── cbooks.cnt │ │ ├── cbooks.gml │ │ ├── diffs.gml │ │ ├── docson.gml │ │ ├── ebooks.cnt │ │ ├── ebooks.gml │ │ ├── f_readme.gml │ │ ├── fbooks.bmp │ │ ├── fbooks.cnt │ │ ├── fbooks.gml │ │ ├── ide10c.bmp │ │ ├── ide11c.bmp │ │ ├── ide12c.bmp │ │ ├── ide13c.bmp │ │ ├── ide14c.bmp │ │ ├── ide14f.bmp │ │ ├── ide1c.bmp │ │ ├── ide2c.bmp │ │ ├── ide2f.bmp │ │ ├── ide3c.bmp │ │ ├── ide3f.bmp │ │ ├── ide4c.bmp │ │ ├── ide5c.bmp │ │ ├── ide5f.bmp │ │ ├── ide6c.bmp │ │ ├── ide7c.bmp │ │ ├── ide7f.bmp │ │ ├── ide8c.bmp │ │ ├── ide8f.bmp │ │ ├── ide9c.bmp │ │ ├── ide9f.bmp │ │ ├── install.gml │ │ ├── intro.gml │ │ ├── lic.gml │ │ ├── light2.bmp │ │ ├── redist.gml │ │ ├── tshoot.gml │ │ └── tutorial.gml │ ├── gui │ │ ├── guitool.gml │ │ ├── rcerrs.gml │ │ ├── snaps │ │ │ ├── acc1.bmp │ │ │ ├── acc10.bmp │ │ │ ├── acc11.bmp │ │ │ ├── acc12.bmp │ │ │ ├── acc13.bmp │ │ │ ├── acc2.bmp │ │ │ ├── acc3.bmp │ │ │ ├── acc4.bmp │ │ │ ├── acc5.bmp │ │ │ ├── acc6.bmp │ │ │ ├── acc7.bmp │ │ │ ├── acc8.bmp │ │ │ ├── acc9.bmp │ │ │ ├── bmatch.bmp │ │ │ ├── bmpacc.bat │ │ │ ├── bmpdia.bat │ │ │ ├── bmpide.bat │ │ │ ├── bmpimg.bat │ │ │ ├── bmpmnu.bat │ │ │ ├── bmpres.bat │ │ │ ├── bmpstr.bat │ │ │ ├── bmpwed.bat │ │ │ ├── brow1.bmp │ │ │ ├── brow10.bmp │ │ │ ├── brow11.bmp │ │ │ ├── brow12.bmp │ │ │ ├── brow13.bmp │ │ │ ├── brow14.bmp │ │ │ ├── brow15.bmp │ │ │ ├── brow16.bmp │ │ │ ├── brow17.bmp │ │ │ ├── brow18.bmp │ │ │ ├── brow19.bmp │ │ │ ├── brow2.bmp │ │ │ ├── brow3.bmp │ │ │ ├── brow4.bmp │ │ │ ├── brow5.bmp │ │ │ ├── brow6.bmp │ │ │ ├── brow7.bmp │ │ │ ├── brow8.bmp │ │ │ ├── brow9.bmp │ │ │ ├── browtarg.bmp │ │ │ ├── copy.bmp │ │ │ ├── cut.bmp │ │ │ ├── dde1.bmp │ │ │ ├── dde10.bmp │ │ │ ├── dde11.bmp │ │ │ ├── dde12.bmp │ │ │ ├── dde13.bmp │ │ │ ├── dde1a.bmp │ │ │ ├── dde2.bmp │ │ │ ├── dde5.bmp │ │ │ ├── dde6.bmp │ │ │ ├── dde9.bmp │ │ │ ├── debgtarg.bmp │ │ │ ├── dia1.bmp │ │ │ ├── dia10.bmp │ │ │ ├── dia11.bmp │ │ │ ├── dia2.bmp │ │ │ ├── dia3.bmp │ │ │ ├── dia4.bmp │ │ │ ├── dia5.bmp │ │ │ ├── dia6.bmp │ │ │ ├── dia7.bmp │ │ │ ├── dia8.bmp │ │ │ ├── dia9.bmp │ │ │ ├── drw1.bmp │ │ │ ├── drw10.bmp │ │ │ ├── drw11.bmp │ │ │ ├── drw12.bmp │ │ │ ├── drw13.bmp │ │ │ ├── drw14.bmp │ │ │ ├── drw15.bmp │ │ │ ├── drw16.bmp │ │ │ ├── drw2.bmp │ │ │ ├── drw3.bmp │ │ │ ├── drw4.bmp │ │ │ ├── drw5.bmp │ │ │ ├── drw6.bmp │ │ │ ├── drw7.bmp │ │ │ ├── drw8.bmp │ │ │ ├── drw9.bmp │ │ │ ├── edititem.bmp │ │ │ ├── files.bmp │ │ │ ├── finddlg.bmp │ │ │ ├── hammer.bmp │ │ │ ├── hw1.bmp │ │ │ ├── hw10.bmp │ │ │ ├── hw11.bmp │ │ │ ├── hw12.bmp │ │ │ ├── hw13.bmp │ │ │ ├── hw14.bmp │ │ │ ├── hw15.bmp │ │ │ ├── hw16.bmp │ │ │ ├── hw2.bmp │ │ │ ├── hw3.bmp │ │ │ ├── hw4.bmp │ │ │ ├── hw5.bmp │ │ │ ├── hw6.bmp │ │ │ ├── hw7.bmp │ │ │ ├── hw8.bmp │ │ │ ├── hw9.bmp │ │ │ ├── ide1.bmp │ │ │ ├── ide10.bmp │ │ │ ├── ide11.bmp │ │ │ ├── ide12.bmp │ │ │ ├── ide13.bmp │ │ │ ├── ide14.bmp │ │ │ ├── ide15.bmp │ │ │ ├── ide16.bmp │ │ │ ├── ide17.bmp │ │ │ ├── ide18.bmp │ │ │ ├── ide19.bmp │ │ │ ├── ide2.bmp │ │ │ ├── ide20.bmp │ │ │ ├── ide21.bmp │ │ │ ├── ide22.bmp │ │ │ ├── ide23.bmp │ │ │ ├── ide24.bmp │ │ │ ├── ide25.bmp │ │ │ ├── ide26.bmp │ │ │ ├── ide27.bmp │ │ │ ├── ide28.bmp │ │ │ ├── ide29.bmp │ │ │ ├── ide3.bmp │ │ │ ├── ide4.bmp │ │ │ ├── ide5.bmp │ │ │ ├── ide6.bmp │ │ │ ├── ide7.bmp │ │ │ ├── ide8.bmp │ │ │ ├── ide9.bmp │ │ │ ├── ide_s.bmp │ │ │ ├── img1.bmp │ │ │ ├── img2.bmp │ │ │ ├── img3.bmp │ │ │ ├── img4.bmp │ │ │ ├── img5.bmp │ │ │ ├── img6.bmp │ │ │ ├── img7.bmp │ │ │ ├── makeitem.bmp │ │ │ ├── makeproj.bmp │ │ │ ├── maketarg.bmp │ │ │ ├── mnu1.bmp │ │ │ ├── mnu2.bmp │ │ │ ├── mnu3.bmp │ │ │ ├── mnu4.bmp │ │ │ ├── mnu5.bmp │ │ │ ├── mnu6.bmp │ │ │ ├── mnu7.bmp │ │ │ ├── mnu8.bmp │ │ │ ├── mnu9.bmp │ │ │ ├── new.bmp │ │ │ ├── newproj.bmp │ │ │ ├── nextfile.bmp │ │ │ ├── open.bmp │ │ │ ├── openproj.bmp │ │ │ ├── paste.bmp │ │ │ ├── prevfile.bmp │ │ │ ├── proftarg.bmp │ │ │ ├── rdbgtarg.bmp │ │ │ ├── redo.bmp │ │ │ ├── refind.bmp │ │ │ ├── res1.bmp │ │ │ ├── res10.bmp │ │ │ ├── res11.bmp │ │ │ ├── res12.bmp │ │ │ ├── res2.bmp │ │ │ ├── res3.bmp │ │ │ ├── res4.bmp │ │ │ ├── res5.bmp │ │ │ ├── res6.bmp │ │ │ ├── res7.bmp │ │ │ ├── res8.bmp │ │ │ ├── res9.bmp │ │ │ ├── runtarg.bmp │ │ │ ├── samptarg.bmp │ │ │ ├── save.bmp │ │ │ ├── saveproj.bmp │ │ │ ├── spy1.bmp │ │ │ ├── spy10.bmp │ │ │ ├── spy11.bmp │ │ │ ├── spy13.bmp │ │ │ ├── spy1a.bmp │ │ │ ├── spy2.bmp │ │ │ ├── spy5.bmp │ │ │ ├── spy6.bmp │ │ │ ├── spy8.bmp │ │ │ ├── spy9.bmp │ │ │ ├── str1.bmp │ │ │ ├── str2.bmp │ │ │ ├── str3.bmp │ │ │ ├── str4.bmp │ │ │ ├── str5.bmp │ │ │ ├── str6.bmp │ │ │ ├── str7.bmp │ │ │ ├── str8.bmp │ │ │ ├── undo.bmp │ │ │ ├── vi0.bmp │ │ │ ├── vi1.bmp │ │ │ ├── vi10.bmp │ │ │ ├── vi11.bmp │ │ │ ├── vi12.bmp │ │ │ ├── vi2.bmp │ │ │ ├── vi3.bmp │ │ │ ├── vi4.bmp │ │ │ ├── vi5.bmp │ │ │ ├── vi6.bmp │ │ │ ├── vi7.bmp │ │ │ ├── vi8.bmp │ │ │ ├── vi9.bmp │ │ │ ├── wprof01.bmp │ │ │ ├── wprof02.bmp │ │ │ ├── wprof03.bmp │ │ │ ├── wprof04.bmp │ │ │ ├── wprof05.bmp │ │ │ ├── wprof06.bmp │ │ │ ├── wprof07.bmp │ │ │ ├── wprof08.bmp │ │ │ ├── wzm1.bmp │ │ │ └── wzm2.bmp │ │ ├── wedref.gml │ │ ├── wedregx.gml │ │ ├── wedtutor.gml │ │ ├── wguiaccl.gml │ │ ├── wguibrow.gml │ │ ├── wguidlog.gml │ │ ├── wguidrnt.gml │ │ ├── wguidrwc.gml │ │ ├── wguidspy.gml │ │ ├── wguiheap.gml │ │ ├── wguilog.gml │ │ ├── wguimage.gml │ │ ├── wguimark.gml │ │ ├── wguimenu.gml │ │ ├── wguipref.gml │ │ ├── wguispy.gml │ │ ├── wguistrg.gml │ │ ├── wguiwide.gml │ │ ├── wguizoom.gml │ │ ├── wprof.gml │ │ ├── wrc.gml │ │ ├── wrcerrs.gml │ │ ├── wrcmacs.gml │ │ └── wre.gml │ ├── hlp │ │ ├── banner.gml │ │ ├── bantop.gml │ │ ├── cmix.gml │ │ ├── fmix.gml │ │ ├── fmtmacro.gml │ │ └── gmlmacs.gml │ ├── java │ │ ├── javadoc.gml │ │ ├── messages.gml │ │ ├── msgmacs.gml │ │ ├── options.gml │ │ ├── wjcerrs.gml │ │ ├── wjcerrs.hh │ │ ├── wjcerrs.hpj │ │ └── wjcmsgs.gml │ ├── lg │ │ ├── dosfiles.gml │ │ ├── ldalias.gml │ │ ├── ldanonym.gml │ │ ├── ldautose.gml │ │ ├── ldbegin.gml │ │ ├── ldcmt.gml │ │ ├── ldcommit.gml │ │ ├── lddebug.gml │ │ ├── lddisabl.gml │ │ ├── ldend.gml │ │ ├── ldendlin.gml │ │ ├── ldexport.gml │ │ ├── ldfile.gml │ │ ├── ldfixedl.gml │ │ ├── ldforcev.gml │ │ ├── ldformat.gml │ │ ├── ldimport.gml │ │ ├── ldinclud.gml │ │ ├── ldlangua.gml │ │ ├── ldlibfil.gml │ │ ├── ldlibpat.gml │ │ ├── ldlibrar.gml │ │ ├── ldmodfil.gml │ │ ├── ldmodtrc.gml │ │ ├── ldmodule.gml │ │ ├── ldname.gml │ │ ├── ldnewseg.gml │ │ ├── ldnovect.gml │ │ ├── ldoption.gml │ │ ├── ldoptlib.gml │ │ ├── ldorder.gml │ │ ├── ldoutput.gml │ │ ├── ldoverla.gml │ │ ├── ldpath.gml │ │ ├── ldrefere.gml │ │ ├── ldresour.gml │ │ ├── ldruntim.gml │ │ ├── ldsectio.gml │ │ ├── ldsegmen.gml │ │ ├── ldsort.gml │ │ ├── ldstartl.gml │ │ ├── ldsymtrc.gml │ │ ├── ldsystem.gml │ │ ├── ldvector.gml │ │ ├── lguide.gml │ │ ├── lnkdir.gml │ │ ├── lnkmain.gml │ │ ├── lnkvalue.gml │ │ ├── lpref.gml │ │ ├── ms2wlink.gml │ │ ├── objfile.gml │ │ ├── opalignm.gml │ │ ├── oparea.gml │ │ ├── opartifi.gml │ │ ├── opautoun.gml │ │ ├── opcache.gml │ │ ├── opcaseex.gml │ │ ├── opcheck.gml │ │ ├── opcopyri.gml │ │ ├── opcsum.gml │ │ ├── opcustom.gml │ │ ├── opcvpack.gml │ │ ├── opdescri.gml │ │ ├── opdistri.gml │ │ ├── opdosseg.gml │ │ ├── opdynami.gml │ │ ├── opelimin.gml │ │ ├── opexit.gml │ │ ├── opfarcal.gml │ │ ├── opfilchr.gml │ │ ├── opfullh.gml │ │ ├── opheap.gml │ │ ├── ophelp.gml │ │ ├── ophshift.gml │ │ ├── opimpfil.gml │ │ ├── opimplib.gml │ │ ├── opincrem.gml │ │ ├── opintern.gml │ │ ├── oplinear.gml │ │ ├── oplnkver.gml │ │ ├── oplongli.gml │ │ ├── opmangle.gml │ │ ├── opmanyau.gml │ │ ├── opmap.gml │ │ ├── opmaxdat.gml │ │ ├── opmaxerr.gml │ │ ├── opmessag.gml │ │ ├── opmindat.gml │ │ ├── opmixed.gml │ │ ├── opmodnam.gml │ │ ├── opmultil.gml │ │ ├── opnamele.gml │ │ ├── opnewfil.gml │ │ ├── opnlmfla.gml │ │ ├── opnoauto.gml │ │ ├── opnodefa.gml │ │ ├── opnoexte.gml │ │ ├── opnoindi.gml │ │ ├── opnorelo.gml │ │ ├── opnostdc.gml │ │ ├── opnostub.gml │ │ ├── opobjali.gml │ │ ├── opoffset.gml │ │ ├── opoldlib.gml │ │ ├── oponeaut.gml │ │ ├── oposdoma.gml │ │ ├── oposname.gml │ │ ├── oposver.gml │ │ ├── oppackco.gml │ │ ├── oppackda.gml │ │ ├── opprivil.gml │ │ ├── opprotmo.gml │ │ ├── oppseudo.gml │ │ ├── opquiet.gml │ │ ├── opredefs.gml │ │ ├── opreentr.gml │ │ ├── opresour.gml │ │ ├── oprwrelo.gml │ │ ├── opscreen.gml │ │ ├── opsharel.gml │ │ ├── opshowde.gml │ │ ├── opsmall.gml │ │ ├── opstack.gml │ │ ├── opstanda.gml │ │ ├── opstart.gml │ │ ├── opstatic.gml │ │ ├── opstub.gml │ │ ├── opsymfil.gml │ │ ├── opsynchr.gml │ │ ├── opthread.gml │ │ ├── optoggle.gml │ │ ├── opundefs.gml │ │ ├── opverbos.gml │ │ ├── opversio.gml │ │ ├── opvfremo.gml │ │ ├── opxdcdat.gml │ │ ├── qnxfiles.gml │ │ ├── spdos.gml │ │ ├── spelf.gml │ │ ├── spnov.gml │ │ ├── spos2.gml │ │ ├── spos2win.gml │ │ ├── spphar.gml │ │ ├── spqnx.gml │ │ ├── spraw.gml │ │ ├── spwin16.gml │ │ ├── spwin32.gml │ │ ├── spwivxd.gml │ │ ├── spzdos.gml │ │ ├── tutmain.gml │ │ ├── tutqnx.gml │ │ ├── tutsteps.gml │ │ ├── wlberror.gml │ │ ├── wlbimp.gml │ │ ├── wlbintro.gml │ │ ├── wlbmain.gml │ │ ├── wlerrfmt.gml │ │ ├── wlerrmsg.gml │ │ ├── wlerror.gml │ │ ├── wlfcopt.gml │ │ ├── wlib.gml │ │ ├── wlinkerr.gml │ │ ├── wlinklnk.gml │ │ ├── wlintro.gml │ │ ├── wlmem.gml │ │ ├── wlmemlay.gml │ │ ├── wlprompt.gml │ │ ├── wlsorder.gml │ │ ├── wlsyntax.gml │ │ ├── wlusage.gml │ │ ├── wsterror.gml │ │ ├── wstintro.gml │ │ ├── wstmain.gml │ │ └── wstrip.gml │ ├── lr │ │ ├── authors.gml │ │ ├── cfunrems.gml │ │ ├── clib_dos.gml │ │ ├── clib_nec.gml │ │ ├── clib_nt.gml │ │ ├── clib_pp.gml │ │ ├── clib_qnx.gml │ │ ├── clib_tst.gml │ │ ├── clibref.gml │ │ ├── cmanmac.gml │ │ ├── f77graph.gml │ │ ├── ge │ │ │ ├── eg_arc.bmp │ │ │ ├── eg_arc.c │ │ │ ├── eg_arc.for │ │ │ ├── eg_clear.c │ │ │ ├── eg_clear.for │ │ │ ├── eg_disp.c │ │ │ ├── eg_disp.for │ │ │ ├── eg_ellip.bmp │ │ │ ├── eg_ellip.c │ │ │ ├── eg_ellip.for │ │ │ ├── eg_flood.c │ │ │ ├── eg_flood.for │ │ │ ├── eg_getai.bmp │ │ │ ├── eg_getai.c │ │ │ ├── eg_getai.for │ │ │ ├── eg_getbc.c │ │ │ ├── eg_getbc.for │ │ │ ├── eg_getc.c │ │ │ ├── eg_getc.for │ │ │ ├── eg_getcp.c │ │ │ ├── eg_getcp.for │ │ │ ├── eg_getfi.c │ │ │ ├── eg_getfi.for │ │ │ ├── eg_getfm.bmp │ │ │ ├── eg_getfm.c │ │ │ ├── eg_getfm.for │ │ │ ├── eg_getim.c │ │ │ ├── eg_getim.for │ │ │ ├── eg_getlc.c │ │ │ ├── eg_getlc.for │ │ │ ├── eg_getls.bmp │ │ │ ├── eg_getls.c │ │ │ ├── eg_getls.for │ │ │ ├── eg_getpa.c │ │ │ ├── eg_getpa.for │ │ │ ├── eg_getpc.c │ │ │ ├── eg_getpc.for │ │ │ ├── eg_getpx.c │ │ │ ├── eg_getpx.for │ │ │ ├── eg_gettc.c │ │ │ ├── eg_gettc.for │ │ │ ├── eg_gette.bmp │ │ │ ├── eg_gette.c │ │ │ ├── eg_gette.for │ │ │ ├── eg_gettp.c │ │ │ ├── eg_gettp.for │ │ │ ├── eg_getts.bmp │ │ │ ├── eg_getts.c │ │ │ ├── eg_getts.for │ │ │ ├── eg_gettu.c │ │ │ ├── eg_gettu.for │ │ │ ├── eg_gettv.c │ │ │ ├── eg_gettv.for │ │ │ ├── eg_getvc.c │ │ │ ├── eg_getvc.for │ │ │ ├── eg_getwc.c │ │ │ ├── eg_getwc.for │ │ │ ├── eg_grtxt.bmp │ │ │ ├── eg_grtxt.c │ │ │ ├── eg_grtxt.for │ │ │ ├── eg_mappa.c │ │ │ ├── eg_mappa.for │ │ │ ├── eg_mappc.c │ │ │ ├── eg_mappc.for │ │ │ ├── eg_movto.bmp │ │ │ ├── eg_movto.c │ │ │ ├── eg_movto.for │ │ │ ├── eg_outm.c │ │ │ ├── eg_outm.for │ │ │ ├── eg_outtx.c │ │ │ ├── eg_outtx.for │ │ │ ├── eg_pal.c2 │ │ │ ├── eg_pgac.c │ │ │ ├── eg_pgac.for │ │ │ ├── eg_pgap.c │ │ │ ├── eg_pgap.for │ │ │ ├── eg_pgas.c │ │ │ ├── eg_pgas.for │ │ │ ├── eg_pgc.bmp │ │ │ ├── eg_pgc.c │ │ │ ├── eg_pgc.for │ │ │ ├── eg_pgcp.bmp │ │ │ ├── eg_pgcp.c │ │ │ ├── eg_pgcp.for │ │ │ ├── eg_pgcs.bmp │ │ │ ├── eg_pgcs.c │ │ │ ├── eg_pgcs.for │ │ │ ├── eg_pggc.c │ │ │ ├── eg_pggc.for │ │ │ ├── eg_pggp.c │ │ │ ├── eg_pggp.for │ │ │ ├── eg_pggy.c │ │ │ ├── eg_pggy.for │ │ │ ├── eg_pghl.c │ │ │ ├── eg_pghl.for │ │ │ ├── eg_pic1.c2 │ │ │ ├── eg_pic2.c2 │ │ │ ├── eg_pie.bmp │ │ │ ├── eg_pie.c │ │ │ ├── eg_pie.for │ │ │ ├── eg_polyg.bmp │ │ │ ├── eg_polyg.c │ │ │ ├── eg_polyg.for │ │ │ ├── eg_rect.bmp │ │ │ ├── eg_rect.c │ │ │ ├── eg_rect.for │ │ │ ├── eg_reg.c │ │ │ ├── eg_reg.for │ │ │ ├── eg_scrtw.c │ │ │ ├── eg_scrtw.for │ │ │ ├── eg_selpa.c │ │ │ ├── eg_selpa.for │ │ │ ├── eg_setap.c │ │ │ ├── eg_setap.for │ │ │ ├── eg_setcr.c │ │ │ ├── eg_setcr.for │ │ │ ├── eg_setcs.bmp │ │ │ ├── eg_setcs.c │ │ │ ├── eg_setcs.for │ │ │ ├── eg_setlg.c │ │ │ ├── eg_setlg.for │ │ │ ├── eg_setta.bmp │ │ │ ├── eg_setta.c │ │ │ ├── eg_setta.for │ │ │ ├── eg_setto.bmp │ │ │ ├── eg_setto.c │ │ │ ├── eg_setto.for │ │ │ ├── eg_settr.c │ │ │ ├── eg_settr.for │ │ │ ├── eg_settw.c │ │ │ ├── eg_settw.for │ │ │ ├── eg_settx.bmp │ │ │ ├── eg_settx.c │ │ │ ├── eg_settx.for │ │ │ ├── eg_setvp.c │ │ │ ├── eg_setvp.for │ │ │ ├── eg_setvr.c │ │ │ ├── eg_setvr.for │ │ │ ├── eg_setw.c │ │ │ ├── eg_setw.for │ │ │ ├── eg_stat.c │ │ │ ├── eg_stat.for │ │ │ ├── eg_wrap.c │ │ │ ├── eg_wrap.for │ │ │ ├── graph.fi │ │ │ ├── graphapi.fi │ │ │ ├── grdemo1.c │ │ │ ├── grdemo1.for │ │ │ ├── grdemo2.c │ │ │ ├── grdemo2.for │ │ │ ├── mksizes.bat │ │ │ ├── mksizes.wat │ │ │ ├── pg.fi │ │ │ ├── pgapi.fi │ │ │ ├── pgchart.h │ │ │ ├── pic1.bmp │ │ │ ├── pic1.c │ │ │ ├── pic1.for │ │ │ ├── pic2.bmp │ │ │ ├── pic2.c │ │ │ └── pic2.for │ │ ├── gfunmacs.gml │ │ ├── gfunrems.gml │ │ ├── gp │ │ │ ├── capture.bat │ │ │ ├── colmap │ │ │ ├── eg_arc.ps │ │ │ ├── eg_ellip.ps │ │ │ ├── eg_getai.ps │ │ │ ├── eg_getfm.ps │ │ │ ├── eg_getls.ps │ │ │ ├── eg_gette.ps │ │ │ ├── eg_getts.ps │ │ │ ├── eg_grtxt.ps │ │ │ ├── eg_movto.ps │ │ │ ├── eg_pgc.ps │ │ │ ├── eg_pgcp.ps │ │ │ ├── eg_pgcs.ps │ │ │ ├── eg_pie.ps │ │ │ ├── eg_polyg.ps │ │ │ ├── eg_rect.ps │ │ │ ├── eg_setcs.ps │ │ │ ├── eg_setta.ps │ │ │ ├── eg_setto.ps │ │ │ ├── eg_settx.ps │ │ │ ├── gcapdata.hdr │ │ │ ├── pic1.ps │ │ │ ├── pic2.ps │ │ │ └── uline.ps │ │ ├── gr │ │ │ ├── gr_arc.gml │ │ │ ├── gr_clrsc.gml │ │ │ ├── gr_dispc.gml │ │ │ ├── gr_ellip.gml │ │ │ ├── gr_fgfil.gml │ │ │ ├── gr_fillm.gml │ │ │ ├── gr_flood.gml │ │ │ ├── gr_fnbeg.gml │ │ │ ├── gr_getai.gml │ │ │ ├── gr_getap.gml │ │ │ ├── gr_getbc.gml │ │ │ ├── gr_getc.gml │ │ │ ├── gr_getcp.gml │ │ │ ├── gr_getcr.gml │ │ │ ├── gr_getfi.gml │ │ │ ├── gr_getfm.gml │ │ │ ├── gr_getge.gml │ │ │ ├── gr_getim.gml │ │ │ ├── gr_getlc.gml │ │ │ ├── gr_getls.gml │ │ │ ├── gr_getpa.gml │ │ │ ├── gr_getpc.gml │ │ │ ├── gr_getpx.gml │ │ │ ├── gr_gettc.gml │ │ │ ├── gr_gette.gml │ │ │ ├── gr_gettp.gml │ │ │ ├── gr_getts.gml │ │ │ ├── gr_gettu.gml │ │ │ ├── gr_gettv.gml │ │ │ ├── gr_gettw.gml │ │ │ ├── gr_getvc.gml │ │ │ ├── gr_getvp.gml │ │ │ ├── gr_getwc.gml │ │ │ ├── gr_grtxt.gml │ │ │ ├── gr_imsiz.gml │ │ │ ├── gr_index.gml │ │ │ ├── gr_lines.gml │ │ │ ├── gr_linto.gml │ │ │ ├── gr_mappa.gml │ │ │ ├── gr_mappc.gml │ │ │ ├── gr_movto.gml │ │ │ ├── gr_noarc.gml │ │ │ ├── gr_outgt.gml │ │ │ ├── gr_outm.gml │ │ │ ├── gr_outtx.gml │ │ │ ├── gr_pages.gml │ │ │ ├── gr_pgac.gml │ │ │ ├── gr_pgap.gml │ │ │ ├── gr_pgas.gml │ │ │ ├── gr_pgc.gml │ │ │ ├── gr_pgcp.gml │ │ │ ├── gr_pgcs.gml │ │ │ ├── gr_pgdc.gml │ │ │ ├── gr_pggc.gml │ │ │ ├── gr_pggp.gml │ │ │ ├── gr_pggy.gml │ │ │ ├── gr_pghl.gml │ │ │ ├── gr_pgic.gml │ │ │ ├── gr_pgrp.gml │ │ │ ├── gr_pgry.gml │ │ │ ├── gr_pgsc.gml │ │ │ ├── gr_pgsp.gml │ │ │ ├── gr_pgsy.gml │ │ │ ├── gr_pgvl.gml │ │ │ ├── gr_pie.gml │ │ │ ├── gr_pixvl.gml │ │ │ ├── gr_plot.gml │ │ │ ├── gr_polyg.gml │ │ │ ├── gr_putim.gml │ │ │ ├── gr_rect.gml │ │ │ ├── gr_reg.gml │ │ │ ├── gr_retdr.gml │ │ │ ├── gr_samp.gml │ │ │ ├── gr_scrtw.gml │ │ │ ├── gr_selp.gml │ │ │ ├── gr_setap.gml │ │ │ ├── gr_setbc.gml │ │ │ ├── gr_setc.gml │ │ │ ├── gr_setcr.gml │ │ │ ├── gr_setcs.gml │ │ │ ├── gr_setcx.gml │ │ │ ├── gr_setf.gml │ │ │ ├── gr_setfm.gml │ │ │ ├── gr_setlo.gml │ │ │ ├── gr_setls.gml │ │ │ ├── gr_setpa.gml │ │ │ ├── gr_setpx.gml │ │ │ ├── gr_setta.gml │ │ │ ├── gr_settc.gml │ │ │ ├── gr_setto.gml │ │ │ ├── gr_settp.gml │ │ │ ├── gr_settr.gml │ │ │ ├── gr_settt.gml │ │ │ ├── gr_settu.gml │ │ │ ├── gr_settv.gml │ │ │ ├── gr_settw.gml │ │ │ ├── gr_setvm.gml │ │ │ ├── gr_setvp.gml │ │ │ ├── gr_setvr.gml │ │ │ ├── gr_setvw.gml │ │ │ ├── gr_setw.gml │ │ │ ├── gr_sizes.gml │ │ │ ├── gr_stat.gml │ │ │ ├── gr_temp.gml │ │ │ ├── gr_text.gml │ │ │ ├── gr_txtco.gml │ │ │ ├── gr_unreg.gml │ │ │ ├── gr_vect.gml │ │ │ ├── gr_wrpon.gml │ │ │ ├── graphov.gml │ │ │ ├── grmacs.gml │ │ │ ├── grpref.gml │ │ │ └── grsyms.gml │ │ ├── libfuns.gml │ │ ├── liblist7.gml │ │ ├── libmacs.gml │ │ ├── lrsyms.gml │ │ ├── os2help.gml │ │ ├── safecmac.gml │ │ └── src │ │ │ ├── _atouni.gml │ │ │ ├── _bfreese.gml │ │ │ ├── _bgetcmd.gml │ │ │ ├── _bheapse.gml │ │ │ ├── _bprintf.gml │ │ │ ├── _bthread.gml │ │ │ ├── _clear87.gml │ │ │ ├── _cmdname.gml │ │ │ ├── _commit.gml │ │ │ ├── _ctime.gml │ │ │ ├── _disable.gml │ │ │ ├── _dwdelcl.gml │ │ │ ├── _dwshutd.gml │ │ │ ├── _dwstabo.gml │ │ │ ├── _dwstapt.gml │ │ │ ├── _dwstcnt.gml │ │ │ ├── _dwyield.gml │ │ │ ├── _enable.gml │ │ │ ├── _ethread.gml │ │ │ ├── _exit.gml │ │ │ ├── _expand.gml │ │ │ ├── _fedisab.gml │ │ │ ├── _feenabl.gml │ │ │ ├── _finite.gml │ │ │ ├── _fpreset.gml │ │ │ ├── _freect.gml │ │ │ ├── _fsopen.gml │ │ │ ├── _fullpat.gml │ │ │ ├── _gmtime.gml │ │ │ ├── _grow_ha.gml │ │ │ ├── _harderr.gml │ │ │ ├── _hdopen.gml │ │ │ ├── _heapchk.gml │ │ │ ├── _heapena.gml │ │ │ ├── _heapgrw.gml │ │ │ ├── _heapmin.gml │ │ │ ├── _heapset.gml │ │ │ ├── _heapshr.gml │ │ │ ├── _heapwal.gml │ │ │ ├── _localti.gml │ │ │ ├── _lrotl.gml │ │ │ ├── _lrotr.gml │ │ │ ├── _makepat.gml │ │ │ ├── _memavl.gml │ │ │ ├── _memmax.gml │ │ │ ├── _msize.gml │ │ │ ├── _pclose.gml │ │ │ ├── _pipe.gml │ │ │ ├── _popen.gml │ │ │ ├── _rotl.gml │ │ │ ├── _rotr.gml │ │ │ ├── _searche.gml │ │ │ ├── _setmath.gml │ │ │ ├── _smalloc.gml │ │ │ ├── _snprntf.gml │ │ │ ├── _splitp2.gml │ │ │ ├── _splitpa.gml │ │ │ ├── _status8.gml │ │ │ ├── _vbprint.gml │ │ │ ├── _vsnprnt.gml │ │ │ ├── _wdirent.gml │ │ │ ├── abort.gml │ │ │ ├── abrt_hnd.gml │ │ │ ├── abs.gml │ │ │ ├── access.gml │ │ │ ├── acos.gml │ │ │ ├── acosh.gml │ │ │ ├── alloca.gml │ │ │ ├── allocmem.gml │ │ │ ├── asctim_s.gml │ │ │ ├── asctime.gml │ │ │ ├── asin.gml │ │ │ ├── asinh.gml │ │ │ ├── assert.gml │ │ │ ├── atan.gml │ │ │ ├── atan2.gml │ │ │ ├── atanh.gml │ │ │ ├── atexit.gml │ │ │ ├── atof.gml │ │ │ ├── atoi.gml │ │ │ ├── atol.gml │ │ │ ├── atoll.gml │ │ │ ├── b_disk.gml │ │ │ ├── b_disk98.gml │ │ │ ├── b_equi98.gml │ │ │ ├── b_equip.gml │ │ │ ├── b_keyb98.gml │ │ │ ├── b_keybrd.gml │ │ │ ├── b_mems98.gml │ │ │ ├── b_memsiz.gml │ │ │ ├── b_prin98.gml │ │ │ ├── b_print.gml │ │ │ ├── b_seri98.gml │ │ │ ├── b_serial.gml │ │ │ ├── b_time.gml │ │ │ ├── b_time98.gml │ │ │ ├── basename.gml │ │ │ ├── bcmp.gml │ │ │ ├── bcopy.gml │ │ │ ├── bdos.gml │ │ │ ├── bessel.gml │ │ │ ├── breakoff.gml │ │ │ ├── bsearch.gml │ │ │ ├── bsrch_s.gml │ │ │ ├── btom.gml │ │ │ ├── btowc.gml │ │ │ ├── bzero.gml │ │ │ ├── cabs.gml │ │ │ ├── calloc.gml │ │ │ ├── ceil.gml │ │ │ ├── cfunmacs.gml │ │ │ ├── cgets.gml │ │ │ ├── chainint.gml │ │ │ ├── chdir.gml │ │ │ ├── chdrive.gml │ │ │ ├── chkctype.gml │ │ │ ├── chmod.gml │ │ │ ├── chsize.gml │ │ │ ├── clearenv.gml │ │ │ ├── clearerr.gml │ │ │ ├── clibdesc.gml │ │ │ ├── clibdos.gml │ │ │ ├── clibfnam.gml │ │ │ ├── clibfunc.gml │ │ │ ├── clibfuns.gml │ │ │ ├── clibindx.gml │ │ │ ├── clibover.gml │ │ │ ├── clock.gml │ │ │ ├── close.gml │ │ │ ├── closedir.gml │ │ │ ├── control8.gml │ │ │ ├── controlf.gml │ │ │ ├── cos.gml │ │ │ ├── cosh.gml │ │ │ ├── cprintf.gml │ │ │ ├── cputs.gml │ │ │ ├── creat.gml │ │ │ ├── creatatt.gml │ │ │ ├── creatnew.gml │ │ │ ├── crefuns.gml │ │ │ ├── cscanf.gml │ │ │ ├── csumfuns.gml │ │ │ ├── ctime.gml │ │ │ ├── ctime_s.gml │ │ │ ├── cwait.gml │ │ │ ├── d_close.gml │ │ │ ├── d_creat.gml │ │ │ ├── d_open.gml │ │ │ ├── d_read.gml │ │ │ ├── d_write.gml │ │ │ ├── dblslash.gml │ │ │ ├── delay.gml │ │ │ ├── dgetdriv.gml │ │ │ ├── dgetdskf.gml │ │ │ ├── dieee2ms.gml │ │ │ ├── difftime.gml │ │ │ ├── dirent.gml │ │ │ ├── dirname.gml │ │ │ ├── div.gml │ │ │ ├── dms2ieee.gml │ │ │ ├── dosattr.gml │ │ │ ├── doscommi.gml │ │ │ ├── dosexter.gml │ │ │ ├── dosfind.gml │ │ │ ├── dumplibs.bat │ │ │ ├── dumplibs.ed2 │ │ │ ├── dumplibs.prg │ │ │ ├── dup.gml │ │ │ ├── dup2.gml │ │ │ ├── ecvt.gml │ │ │ ├── eof.gml │ │ │ ├── errnocnv.gml │ │ │ ├── errnodom.gml │ │ │ ├── errnoref.gml │ │ │ ├── errnorng.gml │ │ │ ├── exec.gml │ │ │ ├── execcom.gml │ │ │ ├── exit.gml │ │ │ ├── exp.gml │ │ │ ├── fabs.gml │ │ │ ├── farfunc.gml │ │ │ ├── farparm.gml │ │ │ ├── fclose.gml │ │ │ ├── fcloseal.gml │ │ │ ├── fcvt.gml │ │ │ ├── fdopen.gml │ │ │ ├── fecleare.gml │ │ │ ├── fegetenv.gml │ │ │ ├── fegetexc.gml │ │ │ ├── fegetrnd.gml │ │ │ ├── feholdex.gml │ │ │ ├── feof.gml │ │ │ ├── feraise.gml │ │ │ ├── ferror.gml │ │ │ ├── fesetenv.gml │ │ │ ├── fesetexc.gml │ │ │ ├── fesetrnd.gml │ │ │ ├── fetestex.gml │ │ │ ├── feupdenv.gml │ │ │ ├── ffarfunc.gml │ │ │ ├── ffarparm.gml │ │ │ ├── fflush.gml │ │ │ ├── ffs.gml │ │ │ ├── fgetc.gml │ │ │ ├── fgetchar.gml │ │ │ ├── fgetpos.gml │ │ │ ├── fgets.gml │ │ │ ├── fieee2ms.gml │ │ │ ├── fileleng.gml │ │ │ ├── filenmax.gml │ │ │ ├── fileno.gml │ │ │ ├── findclos.gml │ │ │ ├── findfirs.gml │ │ │ ├── findnext.gml │ │ │ ├── floor.gml │ │ │ ├── flushall.gml │ │ │ ├── fmod.gml │ │ │ ├── fms2ieee.gml │ │ │ ├── fnmatch.gml │ │ │ ├── fopen.gml │ │ │ ├── fopen_s.gml │ │ │ ├── fp_off.gml │ │ │ ├── fp_seg.gml │ │ │ ├── fpclassf.gml │ │ │ ├── fprintf.gml │ │ │ ├── fprntf_s.gml │ │ │ ├── fputc.gml │ │ │ ├── fputchar.gml │ │ │ ├── fputs.gml │ │ │ ├── fread.gml │ │ │ ├── free.gml │ │ │ ├── freemem.gml │ │ │ ├── freop_s.gml │ │ │ ├── freopen.gml │ │ │ ├── frexp.gml │ │ │ ├── fscanf.gml │ │ │ ├── fscanf_s.gml │ │ │ ├── fseek.gml │ │ │ ├── fsetpos.gml │ │ │ ├── fstat.gml │ │ │ ├── fsync.gml │ │ │ ├── ftell.gml │ │ │ ├── ftime.gml │ │ │ ├── fwide.gml │ │ │ ├── fwrite.gml │ │ │ ├── gcvt.gml │ │ │ ├── getc.gml │ │ │ ├── getch.gml │ │ │ ├── getchar.gml │ │ │ ├── getche.gml │ │ │ ├── getcmd.gml │ │ │ ├── getcwd.gml │ │ │ ├── getdate.gml │ │ │ ├── getdcwd.gml │ │ │ ├── getdiskf.gml │ │ │ ├── getdrive.gml │ │ │ ├── getenv.gml │ │ │ ├── getenv_s.gml │ │ │ ├── getfattr.gml │ │ │ ├── getftime.gml │ │ │ ├── getmbcp.gml │ │ │ ├── getopt.gml │ │ │ ├── getosfha.gml │ │ │ ├── getpid.gml │ │ │ ├── gets.gml │ │ │ ├── gets_s.gml │ │ │ ├── gettime.gml │ │ │ ├── getvect.gml │ │ │ ├── getw.gml │ │ │ ├── globdata.gml │ │ │ ├── gmtime.gml │ │ │ ├── gmtime_s.gml │ │ │ ├── halloc.gml │ │ │ ├── hantozen.gml │ │ │ ├── hcfunmac.gml │ │ │ ├── header.gml │ │ │ ├── hfree.gml │ │ │ ├── hypot.gml │ │ │ ├── ign_hnd.gml │ │ │ ├── imaxabs.gml │ │ │ ├── imaxdiv.gml │ │ │ ├── inp.gml │ │ │ ├── inpd.gml │ │ │ ├── inpw.gml │ │ │ ├── int386.gml │ │ │ ├── int386x.gml │ │ │ ├── int86.gml │ │ │ ├── int86x.gml │ │ │ ├── intdos.gml │ │ │ ├── intdosx.gml │ │ │ ├── intr.gml │ │ │ ├── isalkana.gml │ │ │ ├── isalnmka.gml │ │ │ ├── isalnum.gml │ │ │ ├── isalpha.gml │ │ │ ├── isascii.gml │ │ │ ├── isatty.gml │ │ │ ├── isblank.gml │ │ │ ├── iscntrl.gml │ │ │ ├── iscsym.gml │ │ │ ├── iscsymf.gml │ │ │ ├── isdigit.gml │ │ │ ├── isfinite.gml │ │ │ ├── isgraph.gml │ │ │ ├── isgrkana.gml │ │ │ ├── isinf.gml │ │ │ ├── iskana.gml │ │ │ ├── iskanji.gml │ │ │ ├── iskanji2.gml │ │ │ ├── iskmoji.gml │ │ │ ├── iskpun.gml │ │ │ ├── isleadb.gml │ │ │ ├── islower.gml │ │ │ ├── ismbbaln.gml │ │ │ ├── ismbbalp.gml │ │ │ ├── ismbbgra.gml │ │ │ ├── ismbbkal.gml │ │ │ ├── ismbbkan.gml │ │ │ ├── ismbbkap.gml │ │ │ ├── ismbbkpr.gml │ │ │ ├── ismbbkpu.gml │ │ │ ├── ismbblea.gml │ │ │ ├── ismbbpri.gml │ │ │ ├── ismbbpun.gml │ │ │ ├── ismbbtra.gml │ │ │ ├── ismbcaln.gml │ │ │ ├── ismbcalp.gml │ │ │ ├── ismbccnt.gml │ │ │ ├── ismbcdig.gml │ │ │ ├── ismbcgra.gml │ │ │ ├── ismbchir.gml │ │ │ ├── ismbckat.gml │ │ │ ├── ismbcl0.gml │ │ │ ├── ismbcl1.gml │ │ │ ├── ismbcl2.gml │ │ │ ├── ismbcleg.gml │ │ │ ├── ismbclow.gml │ │ │ ├── ismbcpri.gml │ │ │ ├── ismbcpun.gml │ │ │ ├── ismbcspa.gml │ │ │ ├── ismbcsym.gml │ │ │ ├── ismbcupp.gml │ │ │ ├── ismbcxdi.gml │ │ │ ├── ismbdaln.gml │ │ │ ├── ismbdalp.gml │ │ │ ├── ismbdcnt.gml │ │ │ ├── ismbddig.gml │ │ │ ├── ismbdgra.gml │ │ │ ├── ismbdlow.gml │ │ │ ├── ismbdpri.gml │ │ │ ├── ismbdpun.gml │ │ │ ├── ismbdspa.gml │ │ │ ├── ismbdupp.gml │ │ │ ├── ismbdxdi.gml │ │ │ ├── isnan.gml │ │ │ ├── isnormal.gml │ │ │ ├── ispnkana.gml │ │ │ ├── isprint.gml │ │ │ ├── isprkana.gml │ │ │ ├── ispunct.gml │ │ │ ├── isspace.gml │ │ │ ├── isupper.gml │ │ │ ├── iswctype.gml │ │ │ ├── isxdigit.gml │ │ │ ├── itoa.gml │ │ │ ├── jasctime.gml │ │ │ ├── jctime.gml │ │ │ ├── jgetmoji.gml │ │ │ ├── jisalpha.gml │ │ │ ├── jisdigit.gml │ │ │ ├── jishira.gml │ │ │ ├── jiskana.gml │ │ │ ├── jiskigou.gml │ │ │ ├── jisl0.gml │ │ │ ├── jisl1.gml │ │ │ ├── jisl2.gml │ │ │ ├── jislower.gml │ │ │ ├── jisprint.gml │ │ │ ├── jisspace.gml │ │ │ ├── jistojms.gml │ │ │ ├── jisupper.gml │ │ │ ├── jiszen.gml │ │ │ ├── jmstojis.gml │ │ │ ├── jperror.gml │ │ │ ├── jputmoji.gml │ │ │ ├── jstradv.gml │ │ │ ├── jstrcat.gml │ │ │ ├── jstrchr.gml │ │ │ ├── jstrcmp.gml │ │ │ ├── jstrcspn.gml │ │ │ ├── jstrerro.gml │ │ │ ├── jstricmp.gml │ │ │ ├── jstrlen.gml │ │ │ ├── jstrlwr.gml │ │ │ ├── jstrmatc.gml │ │ │ ├── jstrncat.gml │ │ │ ├── jstrncmp.gml │ │ │ ├── jstrncpy.gml │ │ │ ├── jstrnicm.gml │ │ │ ├── jstrnset.gml │ │ │ ├── jstrrchr.gml │ │ │ ├── jstrrev.gml │ │ │ ├── jstrset.gml │ │ │ ├── jstrskip.gml │ │ │ ├── jstrspn.gml │ │ │ ├── jstrstr.gml │ │ │ ├── jstrtok.gml │ │ │ ├── jstrupr.gml │ │ │ ├── jtohira.gml │ │ │ ├── jtokata.gml │ │ │ ├── jtolower.gml │ │ │ ├── jtoupper.gml │ │ │ ├── kbhit.gml │ │ │ ├── keep.gml │ │ │ ├── labs.gml │ │ │ ├── lcltim_s.gml │ │ │ ├── ldexp.gml │ │ │ ├── ldiv.gml │ │ │ ├── lfind.gml │ │ │ ├── liblist.prg │ │ │ ├── libpref.gml │ │ │ ├── llabs.gml │ │ │ ├── lldiv.gml │ │ │ ├── lltoa.gml │ │ │ ├── localeco.gml │ │ │ ├── localtim.gml │ │ │ ├── lock.gml │ │ │ ├── locking.gml │ │ │ ├── log.gml │ │ │ ├── log10.gml │ │ │ ├── log2.gml │ │ │ ├── longjmp.gml │ │ │ ├── lsearch.gml │ │ │ ├── lseek.gml │ │ │ ├── ltoa.gml │ │ │ ├── macro.sav │ │ │ ├── main.gml │ │ │ ├── malloc.gml │ │ │ ├── matherr.gml │ │ │ ├── max.gml │ │ │ ├── mbbtombc.gml │ │ │ ├── mbbtype.gml │ │ │ ├── mbccmp.gml │ │ │ ├── mbccpy.gml │ │ │ ├── mbcicmp.gml │ │ │ ├── mbcjisto.gml │ │ │ ├── mbcjmsto.gml │ │ │ ├── mbclen.gml │ │ │ ├── mbcrstrt.gml │ │ │ ├── mbctohir.gml │ │ │ ├── mbctokat.gml │ │ │ ├── mbctolow.gml │ │ │ ├── mbctombb.gml │ │ │ ├── mbctoupp.gml │ │ │ ├── mbgetcod.gml │ │ │ ├── mbislead.gml │ │ │ ├── mblen.gml │ │ │ ├── mbptov.gml │ │ │ ├── mbputcha.gml │ │ │ ├── mbrlen.gml │ │ │ ├── mbrtowc.gml │ │ │ ├── mbsbtype.gml │ │ │ ├── mbsffunc.gml │ │ │ ├── mbsfunc.gml │ │ │ ├── mbsnbcat.gml │ │ │ ├── mbsnbcmp.gml │ │ │ ├── mbsnbcnt.gml │ │ │ ├── mbsnbcpy.gml │ │ │ ├── mbsnbicm.gml │ │ │ ├── mbsnbset.gml │ │ │ ├── mbsnccnt.gml │ │ │ ├── mbsnextc.gml │ │ │ ├── mbsrstrt.gml │ │ │ ├── mbsrto_s.gml │ │ │ ├── mbsrtowc.gml │ │ │ ├── mbstow_s.gml │ │ │ ├── mbstowcs.gml │ │ │ ├── mbterm.gml │ │ │ ├── mbtowc.gml │ │ │ ├── mbvtop.gml │ │ │ ├── memccpy.gml │ │ │ ├── memchr.gml │ │ │ ├── memcmp.gml │ │ │ ├── memcpy.gml │ │ │ ├── memcpy_s.gml │ │ │ ├── memicmp.gml │ │ │ ├── memmov_s.gml │ │ │ ├── memmove.gml │ │ │ ├── mempty.gml │ │ │ ├── memset.gml │ │ │ ├── mfromint.gml │ │ │ ├── min.gml │ │ │ ├── mk_fp.gml │ │ │ ├── mkdir.gml │ │ │ ├── mkit.c │ │ │ ├── mkstemp.gml │ │ │ ├── mktemp.gml │ │ │ ├── mktime.gml │ │ │ ├── modf.gml │ │ │ ├── movedata.gml │ │ │ ├── mpaddb.gml │ │ │ ├── mpaddd.gml │ │ │ ├── mpaddsb.gml │ │ │ ├── mpaddsw.gml │ │ │ ├── mpaddusb.gml │ │ │ ├── mpaddusw.gml │ │ │ ├── mpaddw.gml │ │ │ ├── mpand.gml │ │ │ ├── mpandn.gml │ │ │ ├── mpckssdw.gml │ │ │ ├── mpcksswb.gml │ │ │ ├── mpckuswb.gml │ │ │ ├── mpcmpeqb.gml │ │ │ ├── mpcmpeqd.gml │ │ │ ├── mpcmpeqw.gml │ │ │ ├── mpcmpgtb.gml │ │ │ ├── mpcmpgtd.gml │ │ │ ├── mpcmpgtw.gml │ │ │ ├── mpmaddwd.gml │ │ │ ├── mpmulhw.gml │ │ │ ├── mpmullw.gml │ │ │ ├── mpor.gml │ │ │ ├── mpslld.gml │ │ │ ├── mpslldi.gml │ │ │ ├── mpsllq.gml │ │ │ ├── mpsllqi.gml │ │ │ ├── mpsllw.gml │ │ │ ├── mpsllwi.gml │ │ │ ├── mpsrad.gml │ │ │ ├── mpsradi.gml │ │ │ ├── mpsraw.gml │ │ │ ├── mpsrawi.gml │ │ │ ├── mpsrld.gml │ │ │ ├── mpsrldi.gml │ │ │ ├── mpsrlq.gml │ │ │ ├── mpsrlqi.gml │ │ │ ├── mpsrlw.gml │ │ │ ├── mpsrlwi.gml │ │ │ ├── mpsubb.gml │ │ │ ├── mpsubd.gml │ │ │ ├── mpsubsb.gml │ │ │ ├── mpsubsw.gml │ │ │ ├── mpsubusb.gml │ │ │ ├── mpsubusw.gml │ │ │ ├── mpsubw.gml │ │ │ ├── mpxor.gml │ │ │ ├── mtob.gml │ │ │ ├── mtoint.gml │ │ │ ├── mupckhbw.gml │ │ │ ├── mupckhdq.gml │ │ │ ├── mupckhwd.gml │ │ │ ├── mupcklbw.gml │ │ │ ├── mupckldq.gml │ │ │ ├── mupcklwd.gml │ │ │ ├── necbios.doc │ │ │ ├── nosound.gml │ │ │ ├── nthctype.gml │ │ │ ├── offsetof.gml │ │ │ ├── onexit.gml │ │ │ ├── open.gml │ │ │ ├── openacc.gml │ │ │ ├── opendir.gml │ │ │ ├── openosfh.gml │ │ │ ├── openper.gml │ │ │ ├── openperv.gml │ │ │ ├── oshandle.gml │ │ │ ├── outp.gml │ │ │ ├── outpd.gml │ │ │ ├── outpw.gml │ │ │ ├── perror.gml │ │ │ ├── portdesc.gml │ │ │ ├── pow.gml │ │ │ ├── printf.gml │ │ │ ├── printf_s.gml │ │ │ ├── printfs.gml │ │ │ ├── privity.gml │ │ │ ├── putc.gml │ │ │ ├── putch.gml │ │ │ ├── putchar.gml │ │ │ ├── putenv.gml │ │ │ ├── puts.gml │ │ │ ├── putw.gml │ │ │ ├── qsort.gml │ │ │ ├── qsort_s.gml │ │ │ ├── raise.gml │ │ │ ├── rand.gml │ │ │ ├── read.gml │ │ │ ├── readdir.gml │ │ │ ├── realloc.gml │ │ │ ├── remove.gml │ │ │ ├── rename.gml │ │ │ ├── rewind.gml │ │ │ ├── rewinddi.gml │ │ │ ├── rmdir.gml │ │ │ ├── safefar.gml │ │ │ ├── safefarm.gml │ │ │ ├── safefarw.gml │ │ │ ├── sbrk.gml │ │ │ ├── scanf.gml │ │ │ ├── scanf_s.gml │ │ │ ├── scanfs.gml │ │ │ ├── seealloc.gml │ │ │ ├── seeenv.gml │ │ │ ├── seefpcls.gml │ │ │ ├── seeint.gml │ │ │ ├── seeiocon.gml │ │ │ ├── seeiodir.gml │ │ │ ├── seeioos.gml │ │ │ ├── seeis.gml │ │ │ ├── seeismbb.gml │ │ │ ├── seeismbc.gml │ │ │ ├── seeismbd.gml │ │ │ ├── seejis.gml │ │ │ ├── seejto.gml │ │ │ ├── seembc.gml │ │ │ ├── seemmadd.gml │ │ │ ├── seemmbit.gml │ │ │ ├── seemmcmp.gml │ │ │ ├── seemmfun.gml │ │ │ ├── seemmmul.gml │ │ │ ├── seemmpck.gml │ │ │ ├── seemmsll.gml │ │ │ ├── seemmsra.gml │ │ │ ├── seemmsrl.gml │ │ │ ├── seemmsub.gml │ │ │ ├── seemmupk.gml │ │ │ ├── seeproc.gml │ │ │ ├── seeprtf.gml │ │ │ ├── seeqnxsg.gml │ │ │ ├── seestoi.gml │ │ │ ├── seetime.gml │ │ │ ├── seevarg.gml │ │ │ ├── seevprtf.gml │ │ │ ├── seevscnf.gml │ │ │ ├── segread.gml │ │ │ ├── segregs.gml │ │ │ ├── set_chnd.gml │ │ │ ├── setblock.gml │ │ │ ├── setbuf.gml │ │ │ ├── setdate.gml │ │ │ ├── setdrive.gml │ │ │ ├── setenv.gml │ │ │ ├── setfattr.gml │ │ │ ├── setftime.gml │ │ │ ├── setjmp.gml │ │ │ ├── setlocal.gml │ │ │ ├── setmbcp.gml │ │ │ ├── setmode.gml │ │ │ ├── setnew.gml │ │ │ ├── settime.gml │ │ │ ├── setvbuf.gml │ │ │ ├── setvect.gml │ │ │ ├── signal.gml │ │ │ ├── signbit.gml │ │ │ ├── sin.gml │ │ │ ├── sinh.gml │ │ │ ├── sisinit.gml │ │ │ ├── sleep.gml │ │ │ ├── snprintf.gml │ │ │ ├── snprtf_s.gml │ │ │ ├── sopen.gml │ │ │ ├── sort.prg │ │ │ ├── sound.gml │ │ │ ├── spawn.gml │ │ │ ├── sprintf.gml │ │ │ ├── sprntf_s.gml │ │ │ ├── sqrt.gml │ │ │ ├── srand.gml │ │ │ ├── sscanf.gml │ │ │ ├── sscanf_s.gml │ │ │ ├── stackava.gml │ │ │ ├── stat.gml │ │ │ ├── statdesc.gml │ │ │ ├── statrtn.gml │ │ │ ├── stncat_s.gml │ │ │ ├── stncpy_s.gml │ │ │ ├── strcase.gml │ │ │ ├── strcat.gml │ │ │ ├── strcat_s.gml │ │ │ ├── strchr.gml │ │ │ ├── strcmp.gml │ │ │ ├── strcmpi.gml │ │ │ ├── strcoll.gml │ │ │ ├── strcpy.gml │ │ │ ├── strcpy_s.gml │ │ │ ├── strcspn.gml │ │ │ ├── strdate.gml │ │ │ ├── strdec.gml │ │ │ ├── strdup.gml │ │ │ ├── streln_s.gml │ │ │ ├── strerr_s.gml │ │ │ ├── strerror.gml │ │ │ ├── strerror.msg │ │ │ ├── strerror.qnx │ │ │ ├── strftime.gml │ │ │ ├── stricmp.gml │ │ │ ├── stricoll.gml │ │ │ ├── strinc.gml │ │ │ ├── strlcat.gml │ │ │ ├── strlcpy.gml │ │ │ ├── strlen.gml │ │ │ ├── strlwr.gml │ │ │ ├── strncase.gml │ │ │ ├── strncat.gml │ │ │ ├── strncmp.gml │ │ │ ├── strncnt.gml │ │ │ ├── strncoll.gml │ │ │ ├── strncpy.gml │ │ │ ├── strnicmp.gml │ │ │ ├── strnicol.gml │ │ │ ├── strninc.gml │ │ │ ├── strnln_s.gml │ │ │ ├── strnset.gml │ │ │ ├── strpbrk.gml │ │ │ ├── strrchr.gml │ │ │ ├── strrev.gml │ │ │ ├── strset.gml │ │ │ ├── strspn.gml │ │ │ ├── strspnp.gml │ │ │ ├── strstr.gml │ │ │ ├── strtime.gml │ │ │ ├── strtod.gml │ │ │ ├── strtoimx.gml │ │ │ ├── strtok.gml │ │ │ ├── strtok_s.gml │ │ │ ├── strtol.gml │ │ │ ├── strtoll.gml │ │ │ ├── strtoul.gml │ │ │ ├── strtoull.gml │ │ │ ├── strtoumx.gml │ │ │ ├── structtm.gml │ │ │ ├── strupr.gml │ │ │ ├── strxfrm.gml │ │ │ ├── swab.gml │ │ │ ├── system.gml │ │ │ ├── tan.gml │ │ │ ├── tanh.gml │ │ │ ├── tell.gml │ │ │ ├── tempnam.gml │ │ │ ├── time.gml │ │ │ ├── tmpfil_s.gml │ │ │ ├── tmpfile.gml │ │ │ ├── tmpnam.gml │ │ │ ├── tmpnam_s.gml │ │ │ ├── tolower.gml │ │ │ ├── toupper.gml │ │ │ ├── towctrns.gml │ │ │ ├── tzos2.gml │ │ │ ├── tzref.gml │ │ │ ├── tzset.gml │ │ │ ├── udirent.gml │ │ │ ├── ulltoa.gml │ │ │ ├── ultoa.gml │ │ │ ├── umask.gml │ │ │ ├── ungetc.gml │ │ │ ├── ungetch.gml │ │ │ ├── unifunc.gml │ │ │ ├── unlink.gml │ │ │ ├── unlock.gml │ │ │ ├── utime.gml │ │ │ ├── utoa.gml │ │ │ ├── va_arg.gml │ │ │ ├── va_end.gml │ │ │ ├── va_start.gml │ │ │ ├── vcprintf.gml │ │ │ ├── vcscanf.gml │ │ │ ├── vfprintf.gml │ │ │ ├── vfprtf_s.gml │ │ │ ├── vfscanf.gml │ │ │ ├── vfscnf_s.gml │ │ │ ├── vprintf.gml │ │ │ ├── vprntf_s.gml │ │ │ ├── vscanf.gml │ │ │ ├── vscanf_s.gml │ │ │ ├── vsnprint.gml │ │ │ ├── vsnprt_s.gml │ │ │ ├── vsprintf.gml │ │ │ ├── vsprtf_s.gml │ │ │ ├── vsscanf.gml │ │ │ ├── vsscnf_s.gml │ │ │ ├── wait.gml │ │ │ ├── waitstat.gml │ │ │ ├── wcrtom_s.gml │ │ │ ├── wcrtomb.gml │ │ │ ├── wcsrto_s.gml │ │ │ ├── wcsrtomb.gml │ │ │ ├── wcstom_s.gml │ │ │ ├── wcstombs.gml │ │ │ ├── wctob.gml │ │ │ ├── wctomb.gml │ │ │ ├── wctomb_s.gml │ │ │ ├── wctrans.gml │ │ │ ├── wctype.gml │ │ │ ├── widefunc.gml │ │ │ ├── write.gml │ │ │ └── zentohan.gml │ ├── owstl │ │ ├── algorith.gml │ │ ├── copy.gml │ │ ├── deque.gml │ │ ├── intro.gml │ │ ├── list.gml │ │ ├── owgml.gml │ │ ├── owstl.gml │ │ ├── rbtree.gml │ │ ├── stack.gml │ │ ├── string.gml │ │ ├── template.gml │ │ ├── type_tra.gml │ │ └── vector.gml │ ├── pg │ │ ├── dynlink.gml │ │ ├── fpguide.bmp │ │ ├── fpguide.gml │ │ ├── fstruct.bmp │ │ ├── fstruct.ps │ │ ├── mem1.bmp │ │ ├── mem1.ps │ │ ├── mem2.bmp │ │ ├── mem2.ps │ │ ├── mem3.bmp │ │ ├── mem3.ps │ │ ├── mem4.bmp │ │ ├── mem4.ps │ │ ├── mthread.gml │ │ ├── os2pdd.gml │ │ ├── os2pm.gml │ │ ├── pgbldbnd.gml │ │ ├── pgblddw.gml │ │ ├── pgbldwin.gml │ │ ├── pgbuild.gml │ │ ├── pgcmixf.gml │ │ ├── pgdos16.gml │ │ ├── pgdos32d.gml │ │ ├── pgdos32p.gml │ │ ├── pgdos32q.gml │ │ ├── pgdwlib.gml │ │ ├── pgintro.gml │ │ ├── pgnlm.gml │ │ ├── pgos216.gml │ │ ├── pgos232.gml │ │ ├── pgpref.gml │ │ ├── pgqa.gml │ │ ├── pgqnx.gml │ │ ├── pguide.bmp │ │ ├── pguide.gml │ │ ├── pgvbdll.gml │ │ ├── pgwdll32.gml │ │ ├── pgwin16.gml │ │ ├── pgwin16w.gml │ │ ├── pgwin32.gml │ │ ├── pgwin32q.gml │ │ ├── pgwin32w.gml │ │ ├── pgwinnt.gml │ │ ├── pgwinntc.gml │ │ ├── pgwinntw.gml │ │ ├── pgwinpsx.gml │ │ ├── rational.gml │ │ ├── struct.bmp │ │ ├── struct.ps │ │ ├── struct2.bmp │ │ ├── struct2.ps │ │ ├── wcl1.gml │ │ ├── wcl2.gml │ │ ├── wcl3861.gml │ │ ├── wcl3862.gml │ │ ├── wcl386w1.gml │ │ ├── wcl386w2.gml │ │ ├── wclw1.gml │ │ ├── wclw2.gml │ │ ├── wfl1.gml │ │ ├── wfl2.gml │ │ ├── wfl3861.gml │ │ ├── wfl3862.gml │ │ ├── wfl386w1.gml │ │ ├── wfl386w2.gml │ │ ├── wflw1.gml │ │ ├── wflw2.gml │ │ └── winnt.gml │ ├── rsi │ │ ├── config.gml │ │ ├── dos4gwqa.gml │ │ ├── errors.gml │ │ ├── int31.gml │ │ ├── linexe.gml │ │ ├── nt2cls.gml │ │ ├── utilts.gml │ │ └── vmm.gml │ ├── trap │ │ ├── extra.gml │ │ ├── trap.gml │ │ └── wtrap.gml │ ├── vi │ │ ├── a_cmdmod.gml │ │ ├── a_ctags.gml │ │ ├── a_errcod.gml │ │ ├── a_errmsg.gml │ │ ├── a_symkey.gml │ │ ├── advan.gml │ │ ├── basic.gml │ │ ├── basicdis.gml │ │ ├── basicmv.gml │ │ ├── cmdintro.gml │ │ ├── cmds.gml │ │ ├── env.gml │ │ ├── exerquit.gml │ │ ├── exitvi.gml │ │ ├── extra.gml │ │ ├── fsdesc.gml │ │ ├── gkey.gml │ │ ├── ids.gml │ │ ├── int_err.gml │ │ ├── inter.gml │ │ ├── intro.gml │ │ ├── markinfo.gml │ │ ├── modes.gml │ │ ├── oper.gml │ │ ├── operlist.gml │ │ ├── regexp.gml │ │ ├── rxexp.gml │ │ ├── scripts.gml │ │ ├── settings.gml │ │ ├── snaps │ │ │ ├── vi001.bmp │ │ │ ├── vi003.bmp │ │ │ ├── vi004.bmp │ │ │ ├── vi005.bmp │ │ │ ├── vi006.bmp │ │ │ ├── vi007.bmp │ │ │ ├── vi008.bmp │ │ │ ├── vi009.bmp │ │ │ ├── vi010.bmp │ │ │ ├── vi012.bmp │ │ │ ├── vi013.bmp │ │ │ ├── vi014.bmp │ │ │ ├── vi015.bmp │ │ │ ├── vi016.bmp │ │ │ ├── vi017.bmp │ │ │ ├── vi018.bmp │ │ │ ├── vi019.bmp │ │ │ ├── vi020.bmp │ │ │ ├── vi021.bmp │ │ │ ├── vi022.bmp │ │ │ ├── vi023.bmp │ │ │ ├── vi024.bmp │ │ │ ├── vi025.bmp │ │ │ ├── vi026.bmp │ │ │ ├── vi027.bmp │ │ │ ├── vi028.bmp │ │ │ ├── vi029.bmp │ │ │ ├── vi030.bmp │ │ │ └── vi031.bmp │ │ ├── speckeys.gml │ │ ├── spmapkey.gml │ │ ├── symkey.gml │ │ ├── textsel.gml │ │ ├── vi.gml │ │ ├── vipref.gml │ │ ├── win_menu.gml │ │ └── worddef.gml │ ├── wd │ │ ├── brian.ans │ │ ├── dbg87.bmp │ │ ├── dbgacc.bmp │ │ ├── dbgass.bmp │ │ ├── dbgbrk.bmp │ │ ├── dbgcall.bmp │ │ ├── dbgfpu.bmp │ │ ├── dbgfunc.bmp │ │ ├── dbgglob.bmp │ │ ├── dbgimg.bmp │ │ ├── dbgio.bmp │ │ ├── dbglog.bmp │ │ ├── dbgmem.bmp │ │ ├── dbgmmxb.bmp │ │ ├── dbgmod.bmp │ │ ├── dbgreg.bmp │ │ ├── dbgrep.bmp │ │ ├── dbgshot.bmp │ │ ├── dbgsrc.bmp │ │ ├── dbgthrd.bmp │ │ ├── dbgvar.bmp │ │ ├── dbgxmmb.bmp │ │ ├── dlgbrk.bmp │ │ ├── dlgopt.bmp │ │ ├── dlgsrch.bmp │ │ ├── dlgwopt.bmp │ │ ├── symbuttn.gml │ │ ├── wdbg.gml │ │ ├── wdbgasm.gml │ │ ├── wdbgbrkp.gml │ │ ├── wdbgcmd.gml │ │ ├── wdbgds32.gml │ │ ├── wdbgenvr.gml │ │ ├── wdbgexam.gml │ │ ├── wdbgexec.gml │ │ ├── wdbgexpr.gml │ │ ├── wdbgintp.gml │ │ ├── wdbgintr.gml │ │ ├── wdbgnav.gml │ │ ├── wdbgnlm.gml │ │ ├── wdbgopt.gml │ │ ├── wdbgos.gml │ │ ├── wdbgprep.gml │ │ ├── wdbgrem.gml │ │ ├── wdbgrfx.gml │ │ ├── wdbgstrt.gml │ │ ├── wdbgsymb.gml │ │ ├── wdbgtech.gml │ │ └── wdbgwire.gml │ ├── wfg │ │ ├── ed1.ps │ │ ├── fcpopts.gml │ │ ├── fdosedit.gml │ │ ├── fdosexe.gml │ │ ├── fdosguid.gml │ │ ├── fdosintr.gml │ │ ├── fdoslink.gml │ │ ├── ferror.gml │ │ ├── fpstyle.gml │ │ ├── fw4pref.gml │ │ ├── fw4story.gml │ │ ├── fw5diff.gml │ │ ├── pcguide.scr │ │ ├── root.for │ │ ├── syntax.for │ │ ├── ugprg0.ps │ │ ├── ugprg1.gml │ │ ├── ugprg1.ps │ │ ├── ugprg10.ps │ │ ├── ugprg11.ps │ │ ├── ugprg12.ps │ │ ├── ugprg13.ps │ │ ├── ugprg14.ps │ │ ├── ugprg15.ps │ │ ├── ugprg2.gml │ │ ├── ugprg2.ps │ │ ├── ugprg3.gml │ │ ├── ugprg3.ps │ │ ├── ugprg4.ps │ │ ├── ugprg5.gml │ │ ├── ugprg5.ps │ │ ├── ugprg6.gml │ │ ├── ugprg6.ps │ │ ├── ugprg7.gml │ │ ├── ugprg7.ps │ │ ├── ugprg8.gml │ │ ├── ugprg8.ps │ │ ├── ugprg9.ps │ │ ├── wfdebug.gml │ │ ├── wfmacs.gml │ │ └── wfmacs32.gml │ ├── wgmlref │ │ ├── msfont.opt │ │ ├── mspslay.gml │ │ ├── rfabst.gml │ │ ├── rfdaddr.gml │ │ ├── rfdaugd.gml │ │ ├── rfdcrdev.gml │ │ ├── rfddef.gml │ │ ├── rfddev.gml │ │ ├── rfddriv.gml │ │ ├── rfderra.gml │ │ ├── rfderrm.gml │ │ ├── rfdev.gml │ │ ├── rfdfont.gml │ │ ├── rfdgen.gml │ │ ├── rfdgtag.gml │ │ ├── rfdindd.gml │ │ ├── rfdindex.gml │ │ ├── rfdmem.gml │ │ ├── rfdmisin.gml │ │ ├── rfdrgen.gml │ │ ├── rfdropt.gml │ │ ├── rfdrun.gml │ │ ├── rfdspec.gml │ │ ├── rfdvalue.gml │ │ ├── rferrp.gml │ │ ├── rffgen.gml │ │ ├── rffhead.gml │ │ ├── rffile.gml │ │ ├── rffpcdos.gml │ │ ├── rffvms.gml │ │ ├── rffvmsp.gml │ │ ├── rfg2pd.gml │ │ ├── rfgbeg.gml │ │ ├── rfgcite.gml │ │ ├── rfgdl.gml │ │ ├── rfgerra.gml │ │ ├── rfgerrm.gml │ │ ├── rfgfhref.gml │ │ ├── rfgfig1.gml │ │ ├── rfgfig2.gml │ │ ├── rfgfig3.gml │ │ ├── rfghead.gml │ │ ├── rfghp.gml │ │ ├── rfgindx.gml │ │ ├── rfgindx2.gml │ │ ├── rfgindx3.gml │ │ ├── rfgint.gml │ │ ├── rfgisym.gml │ │ ├── rfglgen.gml │ │ ├── rfglgqut.gml │ │ ├── rfglp.gml │ │ ├── rfglpc.gml │ │ ├── rfglvax.gml │ │ ├── rfglvm.gml │ │ ├── rfgnest.gml │ │ ├── rfgnote.gml │ │ ├── rfgol.gml │ │ ├── rfgpc.gml │ │ ├── rfgshid.gml │ │ ├── rfgshqut.gml │ │ ├── rfgsl.gml │ │ ├── rfgsym.gml │ │ ├── rfgtitpg.gml │ │ ├── rfgul.gml │ │ ├── rfgxmp.gml │ │ ├── rfintro.gml │ │ ├── rfl2pd.gml │ │ ├── rflaaln.gml │ │ ├── rflacol.gml │ │ ├── rfladaf.gml │ │ ├── rflafil.gml │ │ ├── rflafon.gml │ │ ├── rflahdr.gml │ │ ├── rflahdr2.gml │ │ ├── rflaina.gml │ │ ├── rflalad.gml │ │ ├── rflalev.gml │ │ ├── rflalii.gml │ │ ├── rflalin.gml │ │ ├── rflanfo.gml │ │ ├── rflanfo2.gml │ │ ├── rflanfon.gml │ │ ├── rflanst.gml │ │ ├── rflanst2.gml │ │ ├── rflapes.gml │ │ ├── rflapge.gml │ │ ├── rflapgp.gml │ │ ├── rflapgp2.gml │ │ ├── rflapgr.gml │ │ ├── rflapli.gml │ │ ├── rflapos.gml │ │ ├── rflapts.gml │ │ ├── rflarad.gml │ │ ├── rflarin.gml │ │ ├── rflasiz.gml │ │ ├── rflaskp.gml │ │ ├── rflaspc.gml │ │ ├── rflathr.gml │ │ ├── rflay.gml │ │ ├── rflay1.gml │ │ ├── rflay2.gml │ │ ├── rflbeg.gml │ │ ├── rflcase.gml │ │ ├── rfldl.gml │ │ ├── rflfhref.gml │ │ ├── rflfig1.gml │ │ ├── rflfig2.gml │ │ ├── rflfig3.gml │ │ ├── rflgroup.gml │ │ ├── rflhead.gml │ │ ├── rflib.gml │ │ ├── rflint.gml │ │ ├── rflisym.gml │ │ ├── rfllgqut.gml │ │ ├── rfllp.gml │ │ ├── rflnest.gml │ │ ├── rflnote.gml │ │ ├── rflnumr.gml │ │ ├── rflol.gml │ │ ├── rflpc.gml │ │ ├── rflshqut.gml │ │ ├── rflsl.gml │ │ ├── rflsym.gml │ │ ├── rfltabs.gml │ │ ├── rfltadd.gml │ │ ├── rfltags.gml │ │ ├── rfltalin.gml │ │ ├── rfltapp.gml │ │ ├── rfltattn.gml │ │ ├── rfltauth.gml │ │ ├── rfltback.gml │ │ ├── rfltbann.gml │ │ ├── rfltbanr.gml │ │ ├── rfltbody.gml │ │ ├── rfltcit.gml │ │ ├── rfltclos.gml │ │ ├── rfltdate.gml │ │ ├── rfltdd.gml │ │ ├── rfltddhd.gml │ │ ├── rfltdef.gml │ │ ├── rfltdist.gml │ │ ├── rfltdl.gml │ │ ├── rfltdoc.gml │ │ ├── rfltdt.gml │ │ ├── rfltdthd.gml │ │ ├── rflteban.gml │ │ ├── rfltebre.gml │ │ ├── rflteclo.gml │ │ ├── rfltelay.gml │ │ ├── rfltfig.gml │ │ ├── rfltfigc.gml │ │ ├── rfltfigd.gml │ │ ├── rfltfigl.gml │ │ ├── rfltflp.gml │ │ ├── rfltfn.gml │ │ ├── rfltfnre.gml │ │ ├── rfltfrom.gml │ │ ├── rfltgd.gml │ │ ├── rfltgl.gml │ │ ├── rfltgt.gml │ │ ├── rflth0.gml │ │ ├── rflthead.gml │ │ ├── rflti1.gml │ │ ├── rfltindx.gml │ │ ├── rfltitpg.gml │ │ ├── rfltixh.gml │ │ ├── rfltixm.gml │ │ ├── rfltixp.gml │ │ ├── rfltlay.gml │ │ ├── rfltletd.gml │ │ ├── rfltlp.gml │ │ ├── rfltlq.gml │ │ ├── rfltnote.gml │ │ ├── rfltol.gml │ │ ├── rfltopen.gml │ │ ├── rfltp.gml │ │ ├── rfltpage.gml │ │ ├── rfltpc.gml │ │ ├── rfltpref.gml │ │ ├── rfltsl.gml │ │ ├── rfltsubj.gml │ │ ├── rflttitl.gml │ │ ├── rflttitp.gml │ │ ├── rfltto.gml │ │ ├── rflttoc.gml │ │ ├── rflttoc0.gml │ │ ├── rflttocp.gml │ │ ├── rfltul.gml │ │ ├── rfltwid.gml │ │ ├── rfltxmp.gml │ │ ├── rflul.gml │ │ ├── rflxmp.gml │ │ ├── rfman.gml │ │ ├── rfmlay.gml │ │ ├── rfpcincl.gml │ │ ├── rfpref.gml │ │ ├── rfrgen.gml │ │ ├── rfropt.gml │ │ ├── rfrun.gml │ │ ├── rfrvmpc.gml │ │ ├── rfrvms.gml │ │ ├── rfsapp.gml │ │ ├── rfsattr.gml │ │ ├── rfsbak.gml │ │ ├── rfsbde.gml │ │ ├── rfsbod.gml │ │ ├── rfscrgg.gml │ │ ├── rfscrip.gml │ │ ├── rfscripa.gml │ │ ├── rfsdbd.gml │ │ ├── rfsflnk.gml │ │ ├── rfsfrt.gml │ │ ├── rfsgel.gml │ │ ├── rfsgen.gml │ │ ├── rfshor.gml │ │ ├── rfsid.gml │ │ ├── rfsintr.gml │ │ ├── rfslet.gml │ │ ├── rfspec.gml │ │ ├── rfspos.gml │ │ ├── rfspre.gml │ │ ├── rfsproc.gml │ │ ├── rfssymb.gml │ │ ├── rfsum.gml │ │ ├── rfsvert.gml │ │ ├── rftags.gml │ │ ├── rftgabst.gml │ │ ├── rftgacon.gml │ │ ├── rftgaddr.gml │ │ ├── rftgadep.gml │ │ ├── rftgalin.gml │ │ ├── rftgapp.gml │ │ ├── rftgauth.gml │ │ ├── rftgback.gml │ │ ├── rftgbinc.gml │ │ ├── rftgbody.gml │ │ ├── rftgcit.gml │ │ ├── rftgcmt.gml │ │ ├── rftgdate.gml │ │ ├── rftgdd.gml │ │ ├── rftgddhd.gml │ │ ├── rftgdl.gml │ │ ├── rftgdnum.gml │ │ ├── rftgdt.gml │ │ ├── rftgdthd.gml │ │ ├── rftgeadd.gml │ │ ├── rftgecit.gml │ │ ├── rftgedl.gml │ │ ├── rftgefig.gml │ │ ├── rftgefn.gml │ │ ├── rftgegdo.gml │ │ ├── rftgegl.gml │ │ ├── rftgehp.gml │ │ ├── rftgelay.gml │ │ ├── rftgelq.gml │ │ ├── rftgeol.gml │ │ ├── rftgepsc.gml │ │ ├── rftgeq.gml │ │ ├── rftgesf.gml │ │ ├── rftgesl.gml │ │ ├── rftgetpg.gml │ │ ├── rftgeul.gml │ │ ├── rftgexmp.gml │ │ ├── rftgfig.gml │ │ ├── rftgfigc.gml │ │ ├── rftgfigd.gml │ │ ├── rftgfigl.gml │ │ ├── rftgfigr.gml │ │ ├── rftgfn.gml │ │ ├── rftgfnre.gml │ │ ├── rftgfrnt.gml │ │ ├── rftggd.gml │ │ ├── rftggdoc.gml │ │ ├── rftggl.gml │ │ ├── rftggraf.gml │ │ ├── rftggt.gml │ │ ├── rftghdre.gml │ │ ├── rftghead.gml │ │ ├── rftghp.gml │ │ ├── rftgi.gml │ │ ├── rftgih.gml │ │ ├── rftgii.gml │ │ ├── rftgimbe.gml │ │ ├── rftgincl.gml │ │ ├── rftgindx.gml │ │ ├── rftgint.gml │ │ ├── rftgipg.gml │ │ ├── rftgiref.gml │ │ ├── rftgisee.gml │ │ ├── rftgisid.gml │ │ ├── rftglay.gml │ │ ├── rftgli.gml │ │ ├── rftglire.gml │ │ ├── rftglp.gml │ │ ├── rftglq.gml │ │ ├── rftgnote.gml │ │ ├── rftgol.gml │ │ ├── rftgp.gml │ │ ├── rftgpc.gml │ │ ├── rftgpref.gml │ │ ├── rftgpsc.gml │ │ ├── rftgq.gml │ │ ├── rftgset.gml │ │ ├── rftgsf.gml │ │ ├── rftgsl.gml │ │ ├── rftgtitl.gml │ │ ├── rftgtoc.gml │ │ ├── rftgtpg.gml │ │ ├── rftgul.gml │ │ ├── rftgxmp.gml │ │ ├── rftitle.gml │ │ ├── rftlatt.gml │ │ ├── rftlclo.gml │ │ ├── rftldat.gml │ │ ├── rftldis.gml │ │ ├── rftldit.gml │ │ ├── rftldoc.gml │ │ ├── rftlecl.gml │ │ ├── rftledi.gml │ │ ├── rftlfro.gml │ │ ├── rftlope.gml │ │ ├── rftlsub.gml │ │ ├── rftlto.gml │ │ ├── rftrade.gml │ │ ├── rftuapp.gml │ │ ├── rftuback.gml │ │ ├── rftubegn.gml │ │ ├── rftubody.gml │ │ ├── rftucite.gml │ │ ├── rftuconc.gml │ │ ├── rftudstr.gml │ │ ├── rftufco.gml │ │ ├── rftufdp.gml │ │ ├── rftufds.gml │ │ ├── rftufdv.gml │ │ ├── rftufig.gml │ │ ├── rftufom.gml │ │ ├── rftufop.gml │ │ ├── rftufrd.gml │ │ ├── rftufrnt.gml │ │ ├── rftufsm.gml │ │ ├── rftuhead.gml │ │ ├── rftuhp.gml │ │ ├── rftuidx.gml │ │ ├── rftulay.gml │ │ ├── rftulban.gml │ │ ├── rftulcnv.gml │ │ ├── rftuldoc.gml │ │ ├── rftulgen.gml │ │ ├── rftulist.gml │ │ ├── rftulmdo.gml │ │ ├── rftulspc.gml │ │ ├── rftuprd.gml │ │ ├── rftuquot.gml │ │ ├── rfturef.gml │ │ ├── rftuscr.gml │ │ ├── rftustrt.gml │ │ ├── rftustru.gml │ │ ├── rftut.gml │ │ ├── rftuxmp.gml │ │ ├── screens │ │ │ ├── frconf.ps │ │ │ ├── frdev.ps │ │ │ ├── frdeval.ps │ │ │ ├── frdevav.ps │ │ │ ├── frdevfa.ps │ │ │ ├── frdevfn.ps │ │ │ ├── frdevld.ps │ │ │ ├── frdoc.ps │ │ │ ├── frdocct.ps │ │ │ ├── frdocpr.ps │ │ │ ├── frdocse.ps │ │ │ ├── frhelp.ps │ │ │ ├── froptsv.ps │ │ │ ├── frsymed.ps │ │ │ ├── frsymva.ps │ │ │ ├── rfopsel.ps │ │ │ ├── rfopt.ps │ │ │ ├── wgmlerr.ps │ │ │ └── wgmlmain.ps │ │ ├── wbrfman.opt │ │ └── wbsymbol.gml │ ├── whelp │ │ ├── readme.txt │ │ ├── wgmlst.cop │ │ ├── whelp.cop │ │ ├── whelp.gml │ │ ├── whelp.opt │ │ ├── whelp.pcd │ │ ├── whelpdrv.cop │ │ ├── whelpdrv.pcd │ │ ├── whelplay.gml │ │ └── wnohelp.gml │ ├── win386 │ │ ├── aalias.gml │ │ ├── ahalias.gml │ │ ├── call16.gml │ │ ├── cl.gml │ │ ├── ddllent.gml │ │ ├── defp16.gml │ │ ├── falias.gml │ │ ├── fhalias.gml │ │ ├── freeindr.gml │ │ ├── g-gen.gml │ │ ├── g-po.gml │ │ ├── getindr.gml │ │ ├── getp16.gml │ │ ├── invindr.gml │ │ ├── libpref.gml │ │ ├── mapa2f.gml │ │ ├── mkfp16.gml │ │ ├── mkfp32.gml │ │ ├── mklcl32.gml │ │ ├── pwap.gml │ │ ├── relp16.gml │ │ ├── restrict.gml │ │ ├── windefs.gml │ │ ├── windemos.gml │ │ ├── winfun16.gml │ │ ├── winfuns.gml │ │ └── winspvar.gml │ └── wipfc │ │ ├── acvwprt.gml │ │ ├── artlink.gml │ │ ├── artwork.gml │ │ ├── caution.gml │ │ ├── cgraphic.gml │ │ ├── color.gml │ │ ├── ctrl.gml │ │ ├── ctrldef.gml │ │ ├── ddf.gml │ │ ├── dl.gml │ │ ├── docprof.gml │ │ ├── fig.gml │ │ ├── figcap.gml │ │ ├── fn.gml │ │ ├── font.gml │ │ ├── hdref.gml │ │ ├── hide.gml │ │ ├── hn.gml │ │ ├── hpn.gml │ │ ├── i1.gml │ │ ├── i2.gml │ │ ├── icmd.gml │ │ ├── ipfcmds.gml │ │ ├── ipfdefs.gml │ │ ├── ipferr.gml │ │ ├── ipfintro.gml │ │ ├── ipfpref.gml │ │ ├── ipfsym.gml │ │ ├── ipftags.gml │ │ ├── ipftref.gml │ │ ├── ipfuse.gml │ │ ├── isyn.gml │ │ ├── li.gml │ │ ├── lines.gml │ │ ├── link.gml │ │ ├── lm.gml │ │ ├── lp.gml │ │ ├── note.gml │ │ ├── nt.gml │ │ ├── ol.gml │ │ ├── p.gml │ │ ├── parml.gml │ │ ├── pbutton.gml │ │ ├── rm.gml │ │ ├── sl.gml │ │ ├── table.gml │ │ ├── title.gml │ │ ├── ul.gml │ │ ├── userdoc.gml │ │ ├── warning.gml │ │ ├── wipfc.gml │ │ └── xmp.gml ├── dos │ └── makefile ├── freadme.txt ├── gml │ ├── booklay.gml │ ├── dos │ │ ├── gendev.exe │ │ └── wgml.exe │ ├── foxlay.gml │ ├── help │ │ ├── 85by11.gml │ │ ├── acmelay.gml │ │ ├── acmelay.new │ │ ├── cnvtban.gml │ │ ├── doc.opt │ │ ├── dpypaper.gml │ │ ├── endhelp.gml │ │ ├── help.gml │ │ ├── help.opt │ │ ├── help.pcd │ │ ├── helpdrv.pcd │ │ ├── helplay.gml │ │ ├── intran.tbl │ │ ├── makefile │ │ ├── msdblay.gml │ │ ├── msfont.opt │ │ ├── msps.opt │ │ ├── mspslay.gml │ │ ├── nohelp.gml │ │ ├── process.gml │ │ ├── process.new │ │ ├── psfiles.gml │ │ ├── psslid12.opt │ │ ├── psslid14.opt │ │ ├── psslide.opt │ │ ├── report.opt │ │ ├── rule.eps │ │ ├── slidelay.gml │ │ ├── slidesym.gml │ │ ├── symbol.gml │ │ ├── ttyfiles.gml │ │ ├── wbdblay.gml │ │ ├── wbfont.opt │ │ ├── wbps.opt │ │ ├── wbpslay.gml │ │ ├── wbsymbol.gml │ │ ├── wbtty.opt │ │ └── wbttylay.gml │ ├── manuals │ │ ├── script-gmlref-tso.txt │ │ ├── script-gmlsum-tso.txt │ │ ├── script-postscript-tso.txt │ │ ├── script-tso.txt │ │ └── wgmlopts.txt │ ├── nbsymbol.gml │ ├── ncps.opt │ ├── nobanbig.gml │ ├── nobanner.gml │ ├── os2 │ │ ├── gendev.exe │ │ └── wgml.exe │ ├── ps279.ps │ ├── ps2prol.ps │ ├── sf.ps │ ├── shade.eps │ ├── shademac.gml │ ├── symbols.gml │ ├── syslib │ │ ├── help.cop │ │ ├── help.pcd │ │ ├── helpdrv.cop │ │ ├── helpdrv.pcd │ │ ├── intran.tbl │ │ ├── mono01.cop │ │ ├── ps.cop │ │ ├── ps.pcd │ │ ├── psab.cop │ │ ├── psabo.cop │ │ ├── psad.cop │ │ ├── psado.cop │ │ ├── psbd.cop │ │ ├── psbdi.cop │ │ ├── psbl.cop │ │ ├── psbli.cop │ │ ├── pscb.cop │ │ ├── psco.cop │ │ ├── pscob.cop │ │ ├── pscobo.cop │ │ ├── psdrv.cop │ │ ├── psdrv.pcd │ │ ├── pshn.cop │ │ ├── pshnb.cop │ │ ├── pshnbo.cop │ │ ├── pshno.cop │ │ ├── pshv.cop │ │ ├── pshvb.cop │ │ ├── pshvbo.cop │ │ ├── pshvo.cop │ │ ├── psnb.cop │ │ ├── psnbi.cop │ │ ├── psni.cop │ │ ├── psnr.cop │ │ ├── pspb.cop │ │ ├── pspbi.cop │ │ ├── pspi.cop │ │ ├── pspr.cop │ │ ├── psshade.cop │ │ ├── psshade.fon │ │ ├── pssym.cop │ │ ├── pstr.cop │ │ ├── pstrb.cop │ │ ├── pstrbi.cop │ │ ├── pstri.cop │ │ ├── pszap.cop │ │ ├── tasa.cop │ │ ├── tasaapaj.opt │ │ ├── tasadrv.cop │ │ ├── tasaieee.opt │ │ ├── tasapap.opt │ │ ├── term.cop │ │ ├── termdrv.cop │ │ └── wgmlst.cop │ ├── uline.ps │ ├── wbhelp.opt │ └── wbpsbig.opt ├── howto.txt ├── html │ └── makefile ├── htmlhelp │ └── makefile ├── instlic.txt ├── lang.ctl ├── makecnt1.awk ├── makecnt2.awk ├── makehha.awk ├── makehhc.awk ├── makehhk.awk ├── makehhp.awk ├── mif │ ├── books.mif │ ├── clean.mif │ ├── depends.mif │ ├── master.mif │ └── onebook.mif ├── nt │ └── makefile ├── os2 │ └── makefile ├── pdf │ └── makefile ├── ps │ └── makefile ├── readme.txt ├── splithtm.awk └── win │ └── makefile ├── license.txt ├── owconfig.bat ├── owconfig.vbs ├── projects.txt ├── readme.txt ├── setvars.bat ├── setvars.cmd ├── setvars.dos ├── setvars.sh ├── zipup-rel.cmd ├── zipup-rel.sh ├── zipup.bat └── zipup.sh /bat/doeb.bat: -------------------------------------------------------------------------------- 1 | sed -f %OWROOT%\bat\xb.sed <%1 >%2 2 | -------------------------------------------------------------------------------- /bat/eb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bat/eb.bat -------------------------------------------------------------------------------- /bat/filesize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bat/filesize.c -------------------------------------------------------------------------------- /bat/makecomm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bat/makecomm -------------------------------------------------------------------------------- /bat/makeinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bat/makeinit -------------------------------------------------------------------------------- /bat/master.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bat/master.ctl -------------------------------------------------------------------------------- /bat/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bat/stub.c -------------------------------------------------------------------------------- /bat/unset.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bat/unset.bat -------------------------------------------------------------------------------- /bat/xb.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bat/xb.sed -------------------------------------------------------------------------------- /bld/afxapi/test/error.chk: -------------------------------------------------------------------------------- 1 | OK 2 | PASS 3 | -------------------------------------------------------------------------------- /bld/as/c/asexpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/c/asexpr.c -------------------------------------------------------------------------------- /bld/as/c/ashash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/c/ashash.c -------------------------------------------------------------------------------- /bld/as/c/asiobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/c/asiobj.c -------------------------------------------------------------------------------- /bld/as/c/asmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/c/asmem.c -------------------------------------------------------------------------------- /bld/as/c/asmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/c/asmsg.c -------------------------------------------------------------------------------- /bld/as/c/asmsgj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/c/asmsgj.c -------------------------------------------------------------------------------- /bld/as/c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/c/main.c -------------------------------------------------------------------------------- /bld/as/c/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/c/obj.c -------------------------------------------------------------------------------- /bld/as/exever.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/exever.rc -------------------------------------------------------------------------------- /bld/as/files.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/files.dat -------------------------------------------------------------------------------- /bld/as/h/as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/h/as.h -------------------------------------------------------------------------------- /bld/as/h/as.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/h/as.msg -------------------------------------------------------------------------------- /bld/as/h/as.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/h/as.rc -------------------------------------------------------------------------------- /bld/as/h/ashash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/h/ashash.h -------------------------------------------------------------------------------- /bld/as/h/asmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/h/asmem.h -------------------------------------------------------------------------------- /bld/as/h/asmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/h/asmsg.h -------------------------------------------------------------------------------- /bld/as/h/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/h/obj.h -------------------------------------------------------------------------------- /bld/as/h/symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/h/symbol.h -------------------------------------------------------------------------------- /bld/as/h/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/h/tokens.h -------------------------------------------------------------------------------- /bld/as/h/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/h/utils.h -------------------------------------------------------------------------------- /bld/as/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/lang.ctl -------------------------------------------------------------------------------- /bld/as/y/as.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/y/as.y -------------------------------------------------------------------------------- /bld/as/y/scan.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/as/y/scan.re -------------------------------------------------------------------------------- /bld/aui/boot.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/aui/boot.ctl -------------------------------------------------------------------------------- /bld/aui/bootmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/aui/bootmake -------------------------------------------------------------------------------- /bld/aui/c/mkstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/aui/c/mkstr.c -------------------------------------------------------------------------------- /bld/aui/c/wndid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/aui/c/wndid.c -------------------------------------------------------------------------------- /bld/aui/compile.gbl: -------------------------------------------------------------------------------- 1 | Edit this file to force a recompile. 2 | -------------------------------------------------------------------------------- /bld/aui/h/aui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/aui/h/aui.h -------------------------------------------------------------------------------- /bld/aui/h/aui.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/aui/h/aui.msg -------------------------------------------------------------------------------- /bld/aui/h/aui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/aui/h/aui.rc -------------------------------------------------------------------------------- /bld/aui/h/aui.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/aui/h/aui.str -------------------------------------------------------------------------------- /bld/aui/h/dlgrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/aui/h/dlgrx.h -------------------------------------------------------------------------------- /bld/aui/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/aui/lang.ctl -------------------------------------------------------------------------------- /bld/bdiff/c/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/bdiff/c/msg.c -------------------------------------------------------------------------------- /bld/bench/c4/c4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/bench/c4/c4.c -------------------------------------------------------------------------------- /bld/bench/c4/c4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/bench/c4/c4.h -------------------------------------------------------------------------------- /bld/bench/c4/input: -------------------------------------------------------------------------------- 1 | 444333377755= 2 | -------------------------------------------------------------------------------- /bld/bench/mm/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/bench/mm/mm.c -------------------------------------------------------------------------------- /bld/boot.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/boot.ctl -------------------------------------------------------------------------------- /bld/browser/dlgprs/gen/readme.txt: -------------------------------------------------------------------------------- 1 | Ensure this directory gets created. 2 | -------------------------------------------------------------------------------- /bld/build/axpnt/readme: -------------------------------------------------------------------------------- 1 | Ensure this directory gets created. 2 | -------------------------------------------------------------------------------- /bld/build/bin/readme: -------------------------------------------------------------------------------- 1 | Ensure this directory gets created. 2 | -------------------------------------------------------------------------------- /bld/build/binl/readme: -------------------------------------------------------------------------------- 1 | Ensure this directory gets created. 2 | -------------------------------------------------------------------------------- /bld/build/mif/local.mif: -------------------------------------------------------------------------------- 1 | #foo -------------------------------------------------------------------------------- /bld/build/mif/preclude.mif: -------------------------------------------------------------------------------- 1 | # just a stub 2 | -------------------------------------------------------------------------------- /bld/cc/a/mkcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/a/mkcode.c -------------------------------------------------------------------------------- /bld/cc/c/ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/ascii.c -------------------------------------------------------------------------------- /bld/cc/c/asmmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/asmmsg.c -------------------------------------------------------------------------------- /bld/cc/c/casian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/casian.c -------------------------------------------------------------------------------- /bld/cc/c/caux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/caux.c -------------------------------------------------------------------------------- /bld/cc/c/ccheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/ccheck.c -------------------------------------------------------------------------------- /bld/cc/c/ccmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/ccmain.c -------------------------------------------------------------------------------- /bld/cc/c/cdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cdata.c -------------------------------------------------------------------------------- /bld/cc/c/cdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cdebug.c -------------------------------------------------------------------------------- /bld/cc/c/cdecl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cdecl1.c -------------------------------------------------------------------------------- /bld/cc/c/cdecl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cdecl2.c -------------------------------------------------------------------------------- /bld/cc/c/cdinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cdinit.c -------------------------------------------------------------------------------- /bld/cc/c/cdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cdump.c -------------------------------------------------------------------------------- /bld/cc/c/cems.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cems.c -------------------------------------------------------------------------------- /bld/cc/c/cenum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cenum.c -------------------------------------------------------------------------------- /bld/cc/c/cerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cerror.c -------------------------------------------------------------------------------- /bld/cc/c/cexpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cexpr.c -------------------------------------------------------------------------------- /bld/cc/c/cfold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cfold.c -------------------------------------------------------------------------------- /bld/cc/c/cgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cgen.c -------------------------------------------------------------------------------- /bld/cc/c/cgetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cgetch.c -------------------------------------------------------------------------------- /bld/cc/c/cgstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cgstub.c -------------------------------------------------------------------------------- /bld/cc/c/cinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cinfo.c -------------------------------------------------------------------------------- /bld/cc/c/cmac1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cmac1.c -------------------------------------------------------------------------------- /bld/cc/c/cmac2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cmac2.c -------------------------------------------------------------------------------- /bld/cc/c/cmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cmath.c -------------------------------------------------------------------------------- /bld/cc/c/cmodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cmodel.c -------------------------------------------------------------------------------- /bld/cc/c/cmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cmsg.c -------------------------------------------------------------------------------- /bld/cc/c/cname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cname.c -------------------------------------------------------------------------------- /bld/cc/c/cpurge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cpurge.c -------------------------------------------------------------------------------- /bld/cc/c/cscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cscan.c -------------------------------------------------------------------------------- /bld/cc/c/cstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cstats.c -------------------------------------------------------------------------------- /bld/cc/c/cstmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cstmt.c -------------------------------------------------------------------------------- /bld/cc/c/cstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cstub.c -------------------------------------------------------------------------------- /bld/cc/c/csym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/csym.c -------------------------------------------------------------------------------- /bld/cc/c/ctoken.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/ctoken.c -------------------------------------------------------------------------------- /bld/cc/c/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/ctype.c -------------------------------------------------------------------------------- /bld/cc/c/cusage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cusage.c -------------------------------------------------------------------------------- /bld/cc/c/cutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/cutil.c -------------------------------------------------------------------------------- /bld/cc/c/dwarf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/dwarf.c -------------------------------------------------------------------------------- /bld/cc/c/ebcdic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/ebcdic.c -------------------------------------------------------------------------------- /bld/cc/c/ftoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/ftoa.c -------------------------------------------------------------------------------- /bld/cc/c/pchdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/pchdr.c -------------------------------------------------------------------------------- /bld/cc/c/watcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/c/watcom.c -------------------------------------------------------------------------------- /bld/cc/ccobjs.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/ccobjs.mif -------------------------------------------------------------------------------- /bld/cc/cfe.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/cfe.doc -------------------------------------------------------------------------------- /bld/cc/exever.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/exever.rc -------------------------------------------------------------------------------- /bld/cc/files.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/files.dat -------------------------------------------------------------------------------- /bld/cc/h/c.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/c.key -------------------------------------------------------------------------------- /bld/cc/h/cerrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/cerrs.h -------------------------------------------------------------------------------- /bld/cc/h/cfcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/cfcb.h -------------------------------------------------------------------------------- /bld/cc/h/cgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/cgen.h -------------------------------------------------------------------------------- /bld/cc/h/cmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/cmsg.h -------------------------------------------------------------------------------- /bld/cc/h/cops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/cops.h -------------------------------------------------------------------------------- /bld/cc/h/csegid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/csegid.h -------------------------------------------------------------------------------- /bld/cc/h/ctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/ctypes.h -------------------------------------------------------------------------------- /bld/cc/h/cvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/cvars.h -------------------------------------------------------------------------------- /bld/cc/h/cwngs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/cwngs.h -------------------------------------------------------------------------------- /bld/cc/h/fesupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/fesupp.h -------------------------------------------------------------------------------- /bld/cc/h/iopath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/iopath.h -------------------------------------------------------------------------------- /bld/cc/h/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/macro.h -------------------------------------------------------------------------------- /bld/cc/h/pc.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/pc.key -------------------------------------------------------------------------------- /bld/cc/h/pdefn2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/pdefn2.h -------------------------------------------------------------------------------- /bld/cc/h/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/scan.h -------------------------------------------------------------------------------- /bld/cc/h/seh.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/seh.key -------------------------------------------------------------------------------- /bld/cc/h/togdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/togdef.h -------------------------------------------------------------------------------- /bld/cc/h/toggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/h/toggle.h -------------------------------------------------------------------------------- /bld/cc/jusage.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/jusage.sp -------------------------------------------------------------------------------- /bld/cc/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/lang.ctl -------------------------------------------------------------------------------- /bld/cc/make386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/make386 -------------------------------------------------------------------------------- /bld/cc/makei86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/makei86 -------------------------------------------------------------------------------- /bld/cc/makeppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/makeppc -------------------------------------------------------------------------------- /bld/cc/master.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/master.mif -------------------------------------------------------------------------------- /bld/cc/prereq.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/prereq.ctl -------------------------------------------------------------------------------- /bld/cc/r1/usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/r1/usage.h -------------------------------------------------------------------------------- /bld/cc/r2/usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/r2/usage.h -------------------------------------------------------------------------------- /bld/cc/targ_386.mif: -------------------------------------------------------------------------------- 1 | target_cpu = 386 2 | 3 | !include ../master.mif 4 | -------------------------------------------------------------------------------- /bld/cc/targ_axp.mif: -------------------------------------------------------------------------------- 1 | target_cpu = axp 2 | 3 | !include ../master.mif 4 | -------------------------------------------------------------------------------- /bld/cc/targ_i86.mif: -------------------------------------------------------------------------------- 1 | target_cpu = i86 2 | 3 | !include ../master.mif 4 | -------------------------------------------------------------------------------- /bld/cc/targ_mps.mif: -------------------------------------------------------------------------------- 1 | target_cpu = mps 2 | 3 | !include ../master.mif 4 | -------------------------------------------------------------------------------- /bld/cc/targ_ppc.mif: -------------------------------------------------------------------------------- 1 | target_cpu = ppc 2 | 3 | !include ../master.mif 4 | -------------------------------------------------------------------------------- /bld/cc/usage.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/usage.sp -------------------------------------------------------------------------------- /bld/cc/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cc/version.rc -------------------------------------------------------------------------------- /bld/cg/a/blip.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/a/blip.asm -------------------------------------------------------------------------------- /bld/cg/c/be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/be.c -------------------------------------------------------------------------------- /bld/cg/c/bestub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/bestub.c -------------------------------------------------------------------------------- /bld/cg/c/bldins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/bldins.c -------------------------------------------------------------------------------- /bld/cg/c/bldsel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/bldsel.c -------------------------------------------------------------------------------- /bld/cg/c/cfutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/cfutil.c -------------------------------------------------------------------------------- /bld/cg/c/cg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/cg.c -------------------------------------------------------------------------------- /bld/cg/c/cgaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/cgaux.c -------------------------------------------------------------------------------- /bld/cg/c/cgmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/cgmem.c -------------------------------------------------------------------------------- /bld/cg/c/cgosi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/cgosi.c -------------------------------------------------------------------------------- /bld/cg/c/cse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/cse.c -------------------------------------------------------------------------------- /bld/cg/c/cvsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/cvsyms.c -------------------------------------------------------------------------------- /bld/cg/c/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/data.c -------------------------------------------------------------------------------- /bld/cg/c/dbsupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/dbsupp.c -------------------------------------------------------------------------------- /bld/cg/c/dbsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/dbsyms.c -------------------------------------------------------------------------------- /bld/cg/c/dfsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/dfsyms.c -------------------------------------------------------------------------------- /bld/cg/c/dg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/dg.c -------------------------------------------------------------------------------- /bld/cg/c/dmpinc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/dmpinc.c -------------------------------------------------------------------------------- /bld/cg/c/dump87.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/dump87.c -------------------------------------------------------------------------------- /bld/cg/c/dumpan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/dumpan.c -------------------------------------------------------------------------------- /bld/cg/c/dumpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/dumpio.c -------------------------------------------------------------------------------- /bld/cg/c/dumpsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/dumpsc.c -------------------------------------------------------------------------------- /bld/cg/c/edge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/edge.c -------------------------------------------------------------------------------- /bld/cg/c/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/encode.c -------------------------------------------------------------------------------- /bld/cg/c/envvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/envvar.c -------------------------------------------------------------------------------- /bld/cg/c/expand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/expand.c -------------------------------------------------------------------------------- /bld/cg/c/flood.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/flood.c -------------------------------------------------------------------------------- /bld/cg/c/inline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/inline.c -------------------------------------------------------------------------------- /bld/cg/c/intdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/intdef.c -------------------------------------------------------------------------------- /bld/cg/c/memmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/memmgr.c -------------------------------------------------------------------------------- /bld/cg/c/memmgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/memmgt.c -------------------------------------------------------------------------------- /bld/cg/c/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/object.c -------------------------------------------------------------------------------- /bld/cg/c/onexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/onexit.c -------------------------------------------------------------------------------- /bld/cg/c/optab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/optab.c -------------------------------------------------------------------------------- /bld/cg/c/optask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/optask.c -------------------------------------------------------------------------------- /bld/cg/c/optcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/optcom.c -------------------------------------------------------------------------------- /bld/cg/c/optins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/optins.c -------------------------------------------------------------------------------- /bld/cg/c/optlbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/optlbl.c -------------------------------------------------------------------------------- /bld/cg/c/optq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/optq.c -------------------------------------------------------------------------------- /bld/cg/c/optrel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/optrel.c -------------------------------------------------------------------------------- /bld/cg/c/parm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/parm.c -------------------------------------------------------------------------------- /bld/cg/c/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/patch.c -------------------------------------------------------------------------------- /bld/cg/c/qblip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/qblip.c -------------------------------------------------------------------------------- /bld/cg/c/qtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/qtimer.c -------------------------------------------------------------------------------- /bld/cg/c/rtcall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/rtcall.c -------------------------------------------------------------------------------- /bld/cg/c/rtrtn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/rtrtn.c -------------------------------------------------------------------------------- /bld/cg/c/scdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/scdata.c -------------------------------------------------------------------------------- /bld/cg/c/scinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/scinfo.c -------------------------------------------------------------------------------- /bld/cg/c/scins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/scins.c -------------------------------------------------------------------------------- /bld/cg/c/scmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/scmain.c -------------------------------------------------------------------------------- /bld/cg/c/scregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/scregs.c -------------------------------------------------------------------------------- /bld/cg/c/scutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/scutil.c -------------------------------------------------------------------------------- /bld/cg/c/sczero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/sczero.c -------------------------------------------------------------------------------- /bld/cg/c/spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/spawn.c -------------------------------------------------------------------------------- /bld/cg/c/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/split.c -------------------------------------------------------------------------------- /bld/cg/c/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/stack.c -------------------------------------------------------------------------------- /bld/cg/c/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/stubs.c -------------------------------------------------------------------------------- /bld/cg/c/temps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/temps.c -------------------------------------------------------------------------------- /bld/cg/c/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/tree.c -------------------------------------------------------------------------------- /bld/cg/c/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/types.c -------------------------------------------------------------------------------- /bld/cg/c/unroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/unroll.c -------------------------------------------------------------------------------- /bld/cg/c/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/utils.c -------------------------------------------------------------------------------- /bld/cg/c/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/verify.c -------------------------------------------------------------------------------- /bld/cg/c/zoiks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/c/zoiks.c -------------------------------------------------------------------------------- /bld/cg/doc/c.dct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/doc/c.dct -------------------------------------------------------------------------------- /bld/cg/doc/vc.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/doc/vc.dbg -------------------------------------------------------------------------------- /bld/cg/h/bckdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/bckdef.h -------------------------------------------------------------------------------- /bld/cg/h/bgcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/bgcall.h -------------------------------------------------------------------------------- /bld/cg/h/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/bitset.h -------------------------------------------------------------------------------- /bld/cg/h/bldins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/bldins.h -------------------------------------------------------------------------------- /bld/cg/h/blips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/blips.h -------------------------------------------------------------------------------- /bld/cg/h/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/block.h -------------------------------------------------------------------------------- /bld/cg/h/cg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/cg.h -------------------------------------------------------------------------------- /bld/cg/h/cgapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/cgapi.h -------------------------------------------------------------------------------- /bld/cg/h/cgaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/cgaux.h -------------------------------------------------------------------------------- /bld/cg/h/cgdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/cgdefs.h -------------------------------------------------------------------------------- /bld/cg/h/cgdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/cgdll.h -------------------------------------------------------------------------------- /bld/cg/h/cgmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/cgmem.h -------------------------------------------------------------------------------- /bld/cg/h/cgmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/cgmisc.h -------------------------------------------------------------------------------- /bld/cg/h/cgstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/cgstd.h -------------------------------------------------------------------------------- /bld/cg/h/cgstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/cgstub.h -------------------------------------------------------------------------------- /bld/cg/h/cvdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/cvdbg.h -------------------------------------------------------------------------------- /bld/cg/h/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/data.h -------------------------------------------------------------------------------- /bld/cg/h/dbbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/dbbit.h -------------------------------------------------------------------------------- /bld/cg/h/dbcue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/dbcue.h -------------------------------------------------------------------------------- /bld/cg/h/dfdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/dfdbg.h -------------------------------------------------------------------------------- /bld/cg/h/dosio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/dosio.h -------------------------------------------------------------------------------- /bld/cg/h/dosmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/dosmem.h -------------------------------------------------------------------------------- /bld/cg/h/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/dump.h -------------------------------------------------------------------------------- /bld/cg/h/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/encode.h -------------------------------------------------------------------------------- /bld/cg/h/escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/escape.h -------------------------------------------------------------------------------- /bld/cg/h/far.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/far.h -------------------------------------------------------------------------------- /bld/cg/h/fecvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/fecvr.h -------------------------------------------------------------------------------- /bld/cg/h/feidef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/feidef.h -------------------------------------------------------------------------------- /bld/cg/h/fejump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/fejump.h -------------------------------------------------------------------------------- /bld/cg/h/funits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/funits.h -------------------------------------------------------------------------------- /bld/cg/h/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/import.h -------------------------------------------------------------------------------- /bld/cg/h/inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/inline.h -------------------------------------------------------------------------------- /bld/cg/h/intout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/intout.h -------------------------------------------------------------------------------- /bld/cg/h/jumps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/jumps.h -------------------------------------------------------------------------------- /bld/cg/h/memout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/memout.h -------------------------------------------------------------------------------- /bld/cg/h/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/model.h -------------------------------------------------------------------------------- /bld/cg/h/name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/name.h -------------------------------------------------------------------------------- /bld/cg/h/objrep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/objrep.h -------------------------------------------------------------------------------- /bld/cg/h/optask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/optask.h -------------------------------------------------------------------------------- /bld/cg/h/optcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/optcom.h -------------------------------------------------------------------------------- /bld/cg/h/optlbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/optlbl.h -------------------------------------------------------------------------------- /bld/cg/h/optmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/optmac.h -------------------------------------------------------------------------------- /bld/cg/h/optq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/optq.h -------------------------------------------------------------------------------- /bld/cg/h/optseg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/optseg.h -------------------------------------------------------------------------------- /bld/cg/h/optwif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/optwif.h -------------------------------------------------------------------------------- /bld/cg/h/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/patch.h -------------------------------------------------------------------------------- /bld/cg/h/pccode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/pccode.h -------------------------------------------------------------------------------- /bld/cg/h/ptrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/ptrint.h -------------------------------------------------------------------------------- /bld/cg/h/regset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/regset.h -------------------------------------------------------------------------------- /bld/cg/h/rgtbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/rgtbl.h -------------------------------------------------------------------------------- /bld/cg/h/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/sched.h -------------------------------------------------------------------------------- /bld/cg/h/score.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/score.h -------------------------------------------------------------------------------- /bld/cg/h/seldef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/seldef.h -------------------------------------------------------------------------------- /bld/cg/h/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/spawn.h -------------------------------------------------------------------------------- /bld/cg/h/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/split.h -------------------------------------------------------------------------------- /bld/cg/h/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/stack.h -------------------------------------------------------------------------------- /bld/cg/h/symdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/symdbg.h -------------------------------------------------------------------------------- /bld/cg/h/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/system.h -------------------------------------------------------------------------------- /bld/cg/h/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/tree.h -------------------------------------------------------------------------------- /bld/cg/h/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/types.h -------------------------------------------------------------------------------- /bld/cg/h/uldiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/uldiv.h -------------------------------------------------------------------------------- /bld/cg/h/vergen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/vergen.h -------------------------------------------------------------------------------- /bld/cg/h/x87.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/x87.h -------------------------------------------------------------------------------- /bld/cg/h/zoiks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/h/zoiks.h -------------------------------------------------------------------------------- /bld/cg/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/lang.ctl -------------------------------------------------------------------------------- /bld/cg/mif/cg.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/mif/cg.mif -------------------------------------------------------------------------------- /bld/cg/mif/fe.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/mif/fe.mif -------------------------------------------------------------------------------- /bld/cg/mktags.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/mktags.cmd -------------------------------------------------------------------------------- /bld/cg/prereq.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/prereq.ctl -------------------------------------------------------------------------------- /bld/cg/risc/h/v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cg/risc/h/v.h -------------------------------------------------------------------------------- /bld/clib/alias/a/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/clib/alias/deps.mif: -------------------------------------------------------------------------------- 1 | # Empty file 2 | -------------------------------------------------------------------------------- /bld/clib/bt.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/clib/bt.mif -------------------------------------------------------------------------------- /bld/clib/clib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/clib/clib.txt -------------------------------------------------------------------------------- /bld/clib/h/crwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/clib/h/crwd.h -------------------------------------------------------------------------------- /bld/clib/h/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/clib/h/dll.h -------------------------------------------------------------------------------- /bld/clib/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/clib/lang.ctl -------------------------------------------------------------------------------- /bld/clib/lib.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/clib/lib.mif -------------------------------------------------------------------------------- /bld/cpp/dumpmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cpp/dumpmac.c -------------------------------------------------------------------------------- /bld/cpp/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cpp/lang.ctl -------------------------------------------------------------------------------- /bld/cpp/mkmk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cpp/mkmk.c -------------------------------------------------------------------------------- /bld/cpp/ppexpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cpp/ppexpr.c -------------------------------------------------------------------------------- /bld/cpp/ppmacro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cpp/ppmacro.c -------------------------------------------------------------------------------- /bld/cpp/ppmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cpp/ppmem.c -------------------------------------------------------------------------------- /bld/cpp/preproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cpp/preproc.c -------------------------------------------------------------------------------- /bld/cpp/preproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cpp/preproc.h -------------------------------------------------------------------------------- /bld/cpp/testpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cpp/testpp.c -------------------------------------------------------------------------------- /bld/cpp/wcpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/cpp/wcpp.c -------------------------------------------------------------------------------- /bld/ctest/regress/callconv/error.chk: -------------------------------------------------------------------------------- 1 | OK 2 | PASS 3 | -------------------------------------------------------------------------------- /bld/ctest/regress/codegen/error.chk: -------------------------------------------------------------------------------- 1 | OK 2 | PASS 3 | -------------------------------------------------------------------------------- /bld/ctest/regress/codegen/source/op_add2.c: -------------------------------------------------------------------------------- 1 | #define SECOND_PART 2 | #include "op_add.c" 3 | -------------------------------------------------------------------------------- /bld/ctest/regress/codegen/source/op_add3.c: -------------------------------------------------------------------------------- 1 | #define THIRD_PART 2 | #include "op_add.c" 3 | -------------------------------------------------------------------------------- /bld/ctest/regress/codegen/source/op_div2.c: -------------------------------------------------------------------------------- 1 | #define SECOND_PART 2 | #include "op_div.c" 3 | -------------------------------------------------------------------------------- /bld/ctest/regress/codegen/source/op_div3.c: -------------------------------------------------------------------------------- 1 | #define THIRD_PART 2 | #include "op_div.c" 3 | -------------------------------------------------------------------------------- /bld/ctest/regress/codegen/source/op_mul2.c: -------------------------------------------------------------------------------- 1 | #define SECOND_PART 2 | #include "op_mul.c" 3 | -------------------------------------------------------------------------------- /bld/ctest/regress/codegen/source/op_mul3.c: -------------------------------------------------------------------------------- 1 | #define THIRD_PART 2 | #include "op_mul.c" 3 | -------------------------------------------------------------------------------- /bld/ctest/regress/codegen/source/op_sub2.c: -------------------------------------------------------------------------------- 1 | #define SECOND_PART 2 | #include "op_mul.c" 3 | -------------------------------------------------------------------------------- /bld/ctest/regress/codegen/source/op_sub3.c: -------------------------------------------------------------------------------- 1 | #define THIRD_PART 2 | #include "op_mul.c" 3 | -------------------------------------------------------------------------------- /bld/ctest/regress/diagnose/diff0000.chk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/ctest/regress/diagnose/source/inc1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/ctest/regress/inline/error.chk: -------------------------------------------------------------------------------- 1 | OK 2 | PASS 3 | -------------------------------------------------------------------------------- /bld/ctest/regress/positive/error.chk: -------------------------------------------------------------------------------- 1 | OK 2 | PASS 3 | -------------------------------------------------------------------------------- /bld/ctest/regress/positive/source/hdr1.h: -------------------------------------------------------------------------------- 1 | int dummy; 2 | -------------------------------------------------------------------------------- /bld/ctest/regress/positive/source/hdr2.h: -------------------------------------------------------------------------------- 1 | #error This file must not be included 2 | -------------------------------------------------------------------------------- /bld/ctest/regress/positive/source/hdr3.h: -------------------------------------------------------------------------------- 1 | int dummy2; 2 | -------------------------------------------------------------------------------- /bld/dig/c/dumb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/dig/c/dumb.c -------------------------------------------------------------------------------- /bld/dig/h/dip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/dig/h/dip.h -------------------------------------------------------------------------------- /bld/dig/h/mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/dig/h/mad.h -------------------------------------------------------------------------------- /bld/dig/h/mad.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/dig/h/mad.str -------------------------------------------------------------------------------- /bld/dig/h/mados.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/dig/h/mados.h -------------------------------------------------------------------------------- /bld/dig/h/pcreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/dig/h/pcreq.h -------------------------------------------------------------------------------- /bld/dig/h/pcres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/dig/h/pcres.h -------------------------------------------------------------------------------- /bld/dig/h/tcerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/dig/h/tcerr.h -------------------------------------------------------------------------------- /bld/dig/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/dig/lang.ctl -------------------------------------------------------------------------------- /bld/dip/boot.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/dip/boot.ctl -------------------------------------------------------------------------------- /bld/dip/cvpos2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/dip/cvpos2.c -------------------------------------------------------------------------------- /bld/dip/files.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/dip/files.dat -------------------------------------------------------------------------------- /bld/dip/imp.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/dip/imp.mif -------------------------------------------------------------------------------- /bld/dip/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/dip/lang.ctl -------------------------------------------------------------------------------- /bld/dwarf/dw/doc/tail.ps: -------------------------------------------------------------------------------- 1 | showfinish 2 | showobj restore 3 | -------------------------------------------------------------------------------- /bld/emu/files.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/emu/files.dat -------------------------------------------------------------------------------- /bld/emu/h/emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/emu/h/emu.h -------------------------------------------------------------------------------- /bld/emu/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/emu/lang.ctl -------------------------------------------------------------------------------- /bld/emu86/emu87.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/emu86/emu87.u -------------------------------------------------------------------------------- /bld/emu86/h/emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/emu86/h/emu.h -------------------------------------------------------------------------------- /bld/f77/c/poscc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/f77/c/poscc.c -------------------------------------------------------------------------------- /bld/f77/c/spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/f77/c/spawn.c -------------------------------------------------------------------------------- /bld/f77/files.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/f77/files.dat -------------------------------------------------------------------------------- /bld/f77/h/ems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/f77/h/ems.h -------------------------------------------------------------------------------- /bld/f77/h/fio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/f77/h/fio.h -------------------------------------------------------------------------------- /bld/f77/h/ftnio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/f77/h/ftnio.h -------------------------------------------------------------------------------- /bld/f77/h/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/f77/h/macro.h -------------------------------------------------------------------------------- /bld/f77/h/posio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/f77/h/posio.h -------------------------------------------------------------------------------- /bld/f77/h/rtenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/f77/h/rtenv.h -------------------------------------------------------------------------------- /bld/f77/h/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/f77/h/scan.h -------------------------------------------------------------------------------- /bld/f77/h/scb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/f77/h/scb.h -------------------------------------------------------------------------------- /bld/f77/h/undef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/f77/h/undef.h -------------------------------------------------------------------------------- /bld/f77/h/units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/f77/h/units.h -------------------------------------------------------------------------------- /bld/f77/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/f77/lang.ctl -------------------------------------------------------------------------------- /bld/f77/regress/nist/error.chk: -------------------------------------------------------------------------------- 1 | OK 2 | PASS 3 | -------------------------------------------------------------------------------- /bld/f77/samples/life/blink6.lif: -------------------------------------------------------------------------------- 1 | XXX_ 2 | _XXX 3 | -------------------------------------------------------------------------------- /bld/f77/samples/life/double.lif: -------------------------------------------------------------------------------- 1 | XX 2 | XX 3 | -------------------------------------------------------------------------------- /bld/f77/samples/life/glider.lif: -------------------------------------------------------------------------------- 1 | _X_ 2 | __X 3 | XXX 4 | -------------------------------------------------------------------------------- /bld/f77/samples/life/seed1.lif: -------------------------------------------------------------------------------- 1 | _X__ 2 | XXX_ 3 | X_XX 4 | -------------------------------------------------------------------------------- /bld/f77/samples/life/seed2.lif: -------------------------------------------------------------------------------- 1 | __X 2 | XXX 3 | _X_ 4 | -------------------------------------------------------------------------------- /bld/f77/src/wc.fi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/f77/src/wc.fi -------------------------------------------------------------------------------- /bld/f77/wfc/axpfiles.mif: -------------------------------------------------------------------------------- 1 | axpfiles = intovfrt.obj 2 | -------------------------------------------------------------------------------- /bld/fmedit/src/align.def: -------------------------------------------------------------------------------- 1 | extern void Align( WPARAM ); 2 | -------------------------------------------------------------------------------- /bld/fmedit/src/space.def: -------------------------------------------------------------------------------- 1 | extern void Space( WPARAM ); 2 | -------------------------------------------------------------------------------- /bld/graphlib/fix/fd.ok: -------------------------------------------------------------------------------- 1 | __FDFS 2 | -------------------------------------------------------------------------------- /bld/gui/boot.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/gui/boot.ctl -------------------------------------------------------------------------------- /bld/gui/c/guiev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/gui/c/guiev.c -------------------------------------------------------------------------------- /bld/gui/c/mkstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/gui/c/mkstr.c -------------------------------------------------------------------------------- /bld/gui/h/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/gui/h/gui.h -------------------------------------------------------------------------------- /bld/gui/h/gui.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/gui/h/gui.msg -------------------------------------------------------------------------------- /bld/gui/h/gui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/gui/h/gui.rc -------------------------------------------------------------------------------- /bld/gui/h/gui.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/gui/h/gui.str -------------------------------------------------------------------------------- /bld/gui/h/guix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/gui/h/guix.h -------------------------------------------------------------------------------- /bld/gui/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/gui/lang.ctl -------------------------------------------------------------------------------- /bld/gui/unixbld: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | setup_proj no_objdir 3 | make $1 4 | 5 | -------------------------------------------------------------------------------- /bld/gui/win/compile.gbl: -------------------------------------------------------------------------------- 1 | Edit this file to force a compile. 2 | -------------------------------------------------------------------------------- /bld/gui/win/win.rc: -------------------------------------------------------------------------------- 1 | CLOSEBMP BITMAP "closebmp.bmp" 2 | -------------------------------------------------------------------------------- /bld/gui/win/winpm.rc: -------------------------------------------------------------------------------- 1 | BITMAP CLOSEBMP "closebmp.bmp" 2 | -------------------------------------------------------------------------------- /bld/hcdos/c/dmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hcdos/c/dmp.c -------------------------------------------------------------------------------- /bld/hdr/alloca.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/alloca.sp -------------------------------------------------------------------------------- /bld/hdr/clockt.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/clockt.sp -------------------------------------------------------------------------------- /bld/hdr/common.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/common.sp -------------------------------------------------------------------------------- /bld/hdr/cpppfv.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/cpppfv.sp -------------------------------------------------------------------------------- /bld/hdr/crqnx.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/crqnx.sp -------------------------------------------------------------------------------- /bld/hdr/crwat.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/crwat.sp -------------------------------------------------------------------------------- /bld/hdr/deps.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/deps.mif -------------------------------------------------------------------------------- /bld/hdr/dos/sys/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/hdr/errno.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/errno.sp -------------------------------------------------------------------------------- /bld/hdr/errnot.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/errnot.sp -------------------------------------------------------------------------------- /bld/hdr/ext.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/ext.sp -------------------------------------------------------------------------------- /bld/hdr/extc99.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/extc99.sp -------------------------------------------------------------------------------- /bld/hdr/extepi.sp: -------------------------------------------------------------------------------- 1 | #endif /* extensions enabled */ 2 | -------------------------------------------------------------------------------- /bld/hdr/files.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/files.dat -------------------------------------------------------------------------------- /bld/hdr/incdir.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/incdir.sp -------------------------------------------------------------------------------- /bld/hdr/intptr.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/intptr.sp -------------------------------------------------------------------------------- /bld/hdr/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/lang.ctl -------------------------------------------------------------------------------- /bld/hdr/lfndos.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/lfndos.sp -------------------------------------------------------------------------------- /bld/hdr/linux/arch/i386/sys/resource.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bld/hdr/linux/arpa/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/hdr/linux/netinet/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/hdr/linux/sys/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/hdr/mbmax.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/mbmax.sp -------------------------------------------------------------------------------- /bld/hdr/mscrt.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/mscrt.sp -------------------------------------------------------------------------------- /bld/hdr/namwat.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/namwat.sp -------------------------------------------------------------------------------- /bld/hdr/null.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/null.sp -------------------------------------------------------------------------------- /bld/hdr/owrtlink.sp: -------------------------------------------------------------------------------- 1 | #ifndef __COMDEF_H_INCLUDED 2 | #include <_comdef.h> 3 | #endif 4 | -------------------------------------------------------------------------------- /bld/hdr/poppack.sp: -------------------------------------------------------------------------------- 1 | #pragma pack( __pop ) 2 | -------------------------------------------------------------------------------- /bld/hdr/qnx/sys/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/hdr/rsizet.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/rsizet.sp -------------------------------------------------------------------------------- /bld/hdr/sizet.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/sizet.sp -------------------------------------------------------------------------------- /bld/hdr/ssizet.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/ssizet.sp -------------------------------------------------------------------------------- /bld/hdr/systypes.sp: -------------------------------------------------------------------------------- 1 | #ifndef _SYS_TYPES_H_INCLUDED 2 | #include 3 | #endif 4 | -------------------------------------------------------------------------------- /bld/hdr/throws.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/throws.sp -------------------------------------------------------------------------------- /bld/hdr/timet.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/timet.sp -------------------------------------------------------------------------------- /bld/hdr/valist.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/valist.sp -------------------------------------------------------------------------------- /bld/hdr/watcom/cassert.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/assert.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/cctype.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/ctype.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/cerrno.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/errno.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/cfloat.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/float.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/ciso646.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/iso646.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/climits.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/limits.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/clocale.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/locale.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/cmath.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/math.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/csetjmp.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/setjmp.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/csignal.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/signal.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/cstdarg.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/stdarg.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/cstddef.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/stddef.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/cstdint.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/stdint.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/cstdio.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/stdio.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/cstdlib.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/stdlib.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/cstring.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/string.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/ctime.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/time.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/cwchar.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/wchar.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watcom/cwctype.mh: -------------------------------------------------------------------------------- 1 | :keep CNAME 2 | :include watcom/wctype.mh 3 | -------------------------------------------------------------------------------- /bld/hdr/watexc.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/hdr/watexc.sp -------------------------------------------------------------------------------- /bld/help/boot.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/help/boot.ctl -------------------------------------------------------------------------------- /bld/help/bootmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/help/bootmake -------------------------------------------------------------------------------- /bld/help/c/dlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/help/c/dlg.c -------------------------------------------------------------------------------- /bld/help/c/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/help/c/help.c -------------------------------------------------------------------------------- /bld/help/c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/help/c/main.c -------------------------------------------------------------------------------- /bld/help/h/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/help/h/help.h -------------------------------------------------------------------------------- /bld/help/help.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/help/help.mif -------------------------------------------------------------------------------- /bld/help/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/help/help.txt -------------------------------------------------------------------------------- /bld/help/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/help/lang.ctl -------------------------------------------------------------------------------- /bld/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/lang.ctl -------------------------------------------------------------------------------- /bld/langlnx.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/langlnx.ctl -------------------------------------------------------------------------------- /bld/lib_misc/sed/export.sed: -------------------------------------------------------------------------------- 1 | # Put each line in quotes 2 | s/^\(.*\)/'\1'/ 3 | -------------------------------------------------------------------------------- /bld/mad/boot.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/mad/boot.ctl -------------------------------------------------------------------------------- /bld/mad/bootmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/mad/bootmake -------------------------------------------------------------------------------- /bld/mad/files.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/mad/files.dat -------------------------------------------------------------------------------- /bld/mad/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/mad/lang.ctl -------------------------------------------------------------------------------- /bld/mathlib/alias/a/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/mathlib/alias/deps.mif: -------------------------------------------------------------------------------- 1 | # Empty file 2 | -------------------------------------------------------------------------------- /bld/misc/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/misc/lang.ctl -------------------------------------------------------------------------------- /bld/ndisasm/test/o/makefile: -------------------------------------------------------------------------------- 1 | 2 | target_cpu = test 3 | 4 | !include ../mif/master.mif 5 | -------------------------------------------------------------------------------- /bld/nwlib/h/ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/nwlib/h/ext.h -------------------------------------------------------------------------------- /bld/nwlib/h/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/nwlib/h/ops.h -------------------------------------------------------------------------------- /bld/nwlib/wlib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/nwlib/wlib.rc -------------------------------------------------------------------------------- /bld/orl/boot.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/orl/boot.ctl -------------------------------------------------------------------------------- /bld/orl/bootmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/orl/bootmake -------------------------------------------------------------------------------- /bld/orl/h/orl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/orl/h/orl.h -------------------------------------------------------------------------------- /bld/orl/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/orl/lang.ctl -------------------------------------------------------------------------------- /bld/os2api/incl32/driver.mh: -------------------------------------------------------------------------------- 1 | /* Dummy file for IBM TCP/IP sample code */ 2 | -------------------------------------------------------------------------------- /bld/os2api/incl32/genio.mh: -------------------------------------------------------------------------------- 1 | /* Dummy file for IBM TCP/IP sample code */ 2 | -------------------------------------------------------------------------------- /bld/os2api/os2386/GL/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/os2api/os2386/arpa/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/os2api/os2386/machine/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/os2api/os2386/net/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/os2api/os2386/netinet/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/os2api/os2386/protocol/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/os2api/os2386/sys/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/owl/boot.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/owl/boot.ctl -------------------------------------------------------------------------------- /bld/owl/bootmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/owl/bootmake -------------------------------------------------------------------------------- /bld/owl/c/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/owl/c/log.c -------------------------------------------------------------------------------- /bld/owl/c/owelf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/owl/c/owelf.c -------------------------------------------------------------------------------- /bld/owl/c/owl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/owl/c/owl.c -------------------------------------------------------------------------------- /bld/owl/h/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/owl/h/elf.h -------------------------------------------------------------------------------- /bld/owl/h/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/owl/h/log.h -------------------------------------------------------------------------------- /bld/owl/h/owelf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/owl/h/owelf.h -------------------------------------------------------------------------------- /bld/owl/h/owl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/owl/h/owl.h -------------------------------------------------------------------------------- /bld/owl/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/owl/lang.ctl -------------------------------------------------------------------------------- /bld/pbide/dlldbg/dlldbg.rc: -------------------------------------------------------------------------------- 1 | APPLICON Icon "../debugger.ico" 2 | -------------------------------------------------------------------------------- /bld/pbide/dlldbg/pbend.dbg: -------------------------------------------------------------------------------- 1 | modify PB_DEBUGGER_STUB_OK_TO_END 1 2 | g 3 | -------------------------------------------------------------------------------- /bld/pbide/pbdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/pbide/pbdll.h -------------------------------------------------------------------------------- /bld/plusplus/bin/readme.txt: -------------------------------------------------------------------------------- 1 | Ensure this directory is created. 2 | -------------------------------------------------------------------------------- /bld/plusplus/bugs/grb67.c: -------------------------------------------------------------------------------- 1 | // over04.c 2 | -------------------------------------------------------------------------------- /bld/plusplus/bugs/msc11.c: -------------------------------------------------------------------------------- 1 | /* ignored by most compilers */ 2 | typedef enum X { A, B, C }; 3 | -------------------------------------------------------------------------------- /bld/plusplus/targ_386.mif: -------------------------------------------------------------------------------- 1 | target_cpu = 386 2 | 3 | !include ../master.mif 4 | -------------------------------------------------------------------------------- /bld/plusplus/targ_axp.mif: -------------------------------------------------------------------------------- 1 | target_cpu = axp 2 | 3 | !include ../master.mif 4 | -------------------------------------------------------------------------------- /bld/plusplus/targ_i86.mif: -------------------------------------------------------------------------------- 1 | target_cpu = i86 2 | 3 | !include ../master.mif 4 | -------------------------------------------------------------------------------- /bld/plusplus/wvideo/cppdbg.dbg: -------------------------------------------------------------------------------- 1 | view ..\wvideo\cppdbg.txt 2 | -------------------------------------------------------------------------------- /bld/plusplus/wvideo/dtm.dbg: -------------------------------------------------------------------------------- 1 | vc __wcpp_4_DbgRtDumpModuleDtor_() 2 | -------------------------------------------------------------------------------- /bld/plusplus/wvideo/modelog.dbg: -------------------------------------------------------------------------------- 1 | call DbgLogBeg 2 | -------------------------------------------------------------------------------- /bld/plusplus/wvideo/modenorm.dbg: -------------------------------------------------------------------------------- 1 | call DbgLogEnd 2 | -------------------------------------------------------------------------------- /bld/plusplus/wvideo/osi.cmd: -------------------------------------------------------------------------------- 1 | wdw :ntrunner.sym wcpp386.exe /nogo=1 2 | -------------------------------------------------------------------------------- /bld/plusplus/wvideo/pt.dbg: -------------------------------------------------------------------------------- 1 | call DbgRedirectBeg 2 | call dumpptree( <1> ) 3 | viewcapt.dbg 4 | -------------------------------------------------------------------------------- /bld/plusplus/wvideo/viewlog.dbg: -------------------------------------------------------------------------------- 1 | viewcapt.dbg 2 | call DbgRedirectBeg 3 | -------------------------------------------------------------------------------- /bld/plustest/regress/contain/source/noinline.h: -------------------------------------------------------------------------------- 1 | #pragma inline_depth(0); 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/diagnose/diff0000.chk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/plustest/regress/diagnose/diff0100.chk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/plustest/regress/diagnose/diff0200.chk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/plustest/regress/diagnose/diff0300.chk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/plustest/regress/diagnose/diff386.chk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/plustest/regress/diagnose/diffaxp.chk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/plustest/regress/diagnose/diffspec.chk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/plustest/regress/diagnose/source/diag0130.c: -------------------------------------------------------------------------------- 1 | static void foo() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /bld/plustest/regress/diagnose/source/diag0131.c: -------------------------------------------------------------------------------- 1 | inline void foo() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /bld/plustest/regress/diagnose/source/diag0192.c: -------------------------------------------------------------------------------- 1 | #include "diag0192.h" 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/diagnose/source/diag0205.c: -------------------------------------------------------------------------------- 1 | #include "diag0205.h" 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/diagnose/source/diag0285.h: -------------------------------------------------------------------------------- 1 | void bar() {} 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/diagnose/source/diag0285.hh: -------------------------------------------------------------------------------- 1 | #pragma warning 389 5 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/diagnose/source/diag0291.c: -------------------------------------------------------------------------------- 1 | #include "diag0291.h2" 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/diagnose/source/diag0307.c: -------------------------------------------------------------------------------- 1 | void f() { 2 | return (); 3 | } 4 | -------------------------------------------------------------------------------- /bld/plustest/regress/inline/error.chk: -------------------------------------------------------------------------------- 1 | OK 2 | PASS 3 | -------------------------------------------------------------------------------- /bld/plustest/regress/nih/libc.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/nih/osfcn.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/nullptr/nullptr.chk: -------------------------------------------------------------------------------- 1 | PASS nullptr.cpp 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/perl/t.in: -------------------------------------------------------------------------------- 1 | WATCOM C++ 2 | test input 3 | for 4 | TSTIO 5 | program 6 | -------------------------------------------------------------------------------- /bld/plustest/regress/perl/tstio.in: -------------------------------------------------------------------------------- 1 | interactive 2 | entry 3 | test 4 | -------------------------------------------------------------------------------- /bld/plustest/regress/positive/error.chk: -------------------------------------------------------------------------------- 1 | OK 2 | PASS 3 | -------------------------------------------------------------------------------- /bld/plustest/regress/positive/source/cmdln01.c: -------------------------------------------------------------------------------- 1 | #include "cmdln_a.h" 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/positive/source/cmdln02.c: -------------------------------------------------------------------------------- 1 | #include "cmdln_a.h" 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/positive/source/hdr1.h: -------------------------------------------------------------------------------- 1 | int dummy; 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/positive/source/hdr2.h: -------------------------------------------------------------------------------- 1 | #error This file must not be included 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/preproc/pp01.c: -------------------------------------------------------------------------------- 1 | 1 2 | #if 0 3 | 3 4 | #endif 5 | 5 6 | -------------------------------------------------------------------------------- /bld/plustest/regress/preproc/pp02.c: -------------------------------------------------------------------------------- 1 | 1 2 | /* 3 | */ 4 | 4 5 | -------------------------------------------------------------------------------- /bld/plustest/regress/preproc/pp03.c: -------------------------------------------------------------------------------- 1 | 1 2 | \ 3 | 3 4 | -------------------------------------------------------------------------------- /bld/plustest/regress/preproc/pp06.c: -------------------------------------------------------------------------------- 1 | #define a > 2 | int i = a>1; 3 | -------------------------------------------------------------------------------- /bld/plustest/regress/preproc/pp09.c: -------------------------------------------------------------------------------- 1 | #pragma on(\ 2 | check_stack); 3 | -------------------------------------------------------------------------------- /bld/plustest/regress/preproc/pp14.c: -------------------------------------------------------------------------------- 1 | #define DBG /##/ 2 | DBG int x; 3 | -------------------------------------------------------------------------------- /bld/plustest/regress/preproc/pp16.h: -------------------------------------------------------------------------------- 1 | int x; 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/re2c/word.chk: -------------------------------------------------------------------------------- 1 | SP#3. -------------------------------------------------------------------------------- /bld/plustest/regress/re2c05/line.chk: -------------------------------------------------------------------------------- 1 | 126 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/stl.94/demo/demo.in: -------------------------------------------------------------------------------- 1 | This is test input for the demo STL program 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/stl.94/examples/istmit1.in: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/stl.95/examples/fixpath.sed: -------------------------------------------------------------------------------- 1 | s/\//\\/g 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/stl.95/examples/istmit1.in: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/stl.95/ftp.txt: -------------------------------------------------------------------------------- 1 | butler.hpl.hp.com 2 | -------------------------------------------------------------------------------- /bld/plustest/regress/torture/noinline.h: -------------------------------------------------------------------------------- 1 | #pragma inline_depth(0) 2 | -------------------------------------------------------------------------------- /bld/pmake/pmake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/pmake/pmake.c -------------------------------------------------------------------------------- /bld/pmake/pmake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/pmake/pmake.h -------------------------------------------------------------------------------- /bld/posix/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/posix/readme -------------------------------------------------------------------------------- /bld/posix/src/sed/sedtest.bat: -------------------------------------------------------------------------------- 1 | sed -f ctrans pascal 2 | -------------------------------------------------------------------------------- /bld/re2c/boot.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/re2c/boot.ctl -------------------------------------------------------------------------------- /bld/re2c/bootmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/re2c/bootmake -------------------------------------------------------------------------------- /bld/re2c/h/dfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/re2c/h/dfa.h -------------------------------------------------------------------------------- /bld/re2c/h/ins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/re2c/h/ins.h -------------------------------------------------------------------------------- /bld/re2c/h/re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/re2c/h/re.h -------------------------------------------------------------------------------- /bld/re2c/h/ytab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/re2c/h/ytab.h -------------------------------------------------------------------------------- /bld/re2c/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/re2c/lang.ctl -------------------------------------------------------------------------------- /bld/sdk/files.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/sdk/files.dat -------------------------------------------------------------------------------- /bld/sdk/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/sdk/lang.ctl -------------------------------------------------------------------------------- /bld/sdk/rc/rc/unixbld: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | setup_proj 3 | make $1 4 | -------------------------------------------------------------------------------- /bld/sdk/spy/spy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/sdk/spy/spy.c -------------------------------------------------------------------------------- /bld/sdk/spy/spy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/sdk/spy/spy.h -------------------------------------------------------------------------------- /bld/setupgui/res/setupui.rc: -------------------------------------------------------------------------------- 1 | #include "gui.rc" 2 | -------------------------------------------------------------------------------- /bld/src/afxexamp/hello/resource.h: -------------------------------------------------------------------------------- 1 | #define IDR_MAINFRAME 1 2 | -------------------------------------------------------------------------------- /bld/src/afxexamp/hello/stdafx.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /bld/src/clibexam/exec.c: -------------------------------------------------------------------------------- 1 | /* no example for exec... */ 2 | -------------------------------------------------------------------------------- /bld/src/files.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/src/files.dat -------------------------------------------------------------------------------- /bld/src/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/src/lang.ctl -------------------------------------------------------------------------------- /bld/src/old_win/build.mif: -------------------------------------------------------------------------------- 1 | WIN386=1 2 | -------------------------------------------------------------------------------- /bld/src/old_win/life/blink6.lif: -------------------------------------------------------------------------------- 1 | XXX_ 2 | _XXX 3 | -------------------------------------------------------------------------------- /bld/src/old_win/life/double.lif: -------------------------------------------------------------------------------- 1 | XX 2 | XX 3 | -------------------------------------------------------------------------------- /bld/src/old_win/life/glider.lif: -------------------------------------------------------------------------------- 1 | _X_ 2 | __X 3 | XXX 4 | -------------------------------------------------------------------------------- /bld/src/old_win/life/palette.h: -------------------------------------------------------------------------------- 1 | extern HPALETTE CreateDIBPalette( BITMAPINFO * ); 2 | -------------------------------------------------------------------------------- /bld/src/old_win/life/seed1.lif: -------------------------------------------------------------------------------- 1 | _X__ 2 | XXX_ 3 | X_XX 4 | -------------------------------------------------------------------------------- /bld/src/old_win/life/seed2.lif: -------------------------------------------------------------------------------- 1 | __X 2 | XXX 3 | _X_ 4 | -------------------------------------------------------------------------------- /bld/src/win/life/blink6.lif: -------------------------------------------------------------------------------- 1 | XXX_ 2 | _XXX 3 | -------------------------------------------------------------------------------- /bld/src/win/life/double.lif: -------------------------------------------------------------------------------- 1 | XX 2 | XX 3 | -------------------------------------------------------------------------------- /bld/src/win/life/glider.lif: -------------------------------------------------------------------------------- 1 | _X_ 2 | __X 3 | XXX 4 | -------------------------------------------------------------------------------- /bld/src/win/life/palette.h: -------------------------------------------------------------------------------- 1 | extern HPALETTE CreateDIBPalette( BITMAPINFO * ); 2 | -------------------------------------------------------------------------------- /bld/src/win/life/seed1.lif: -------------------------------------------------------------------------------- 1 | _X__ 2 | XXX_ 3 | X_XX 4 | -------------------------------------------------------------------------------- /bld/src/win/life/seed2.lif: -------------------------------------------------------------------------------- 1 | __X 2 | XXX 3 | _X_ 4 | -------------------------------------------------------------------------------- /bld/src/win32/videomp/disk1: -------------------------------------------------------------------------------- 1 | fdsjk -------------------------------------------------------------------------------- /bld/ssl/boot.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ssl/boot.ctl -------------------------------------------------------------------------------- /bld/ssl/bootmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ssl/bootmake -------------------------------------------------------------------------------- /bld/ssl/c/ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ssl/c/ssl.c -------------------------------------------------------------------------------- /bld/ssl/h/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ssl/h/ssl.h -------------------------------------------------------------------------------- /bld/ssl/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ssl/lang.ctl -------------------------------------------------------------------------------- /bld/ssl/test/y.ssl: -------------------------------------------------------------------------------- 1 | include 'two' 2 | 3 | rules 4 | x: 5 | ; 6 | -------------------------------------------------------------------------------- /bld/trap/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/trap/lang.ctl -------------------------------------------------------------------------------- /bld/trap/serv.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/trap/serv.mif -------------------------------------------------------------------------------- /bld/trap/trap.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/trap/trap.mif -------------------------------------------------------------------------------- /bld/trmem/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/trmem/read.me -------------------------------------------------------------------------------- /bld/trmem/trmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/trmem/trmem.c -------------------------------------------------------------------------------- /bld/trmem/trmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/trmem/trmem.h -------------------------------------------------------------------------------- /bld/ui/boot.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/boot.ctl -------------------------------------------------------------------------------- /bld/ui/c/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/sample.c -------------------------------------------------------------------------------- /bld/ui/c/uiarea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uiarea.c -------------------------------------------------------------------------------- /bld/ui/c/uiattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uiattr.c -------------------------------------------------------------------------------- /bld/ui/c/uiback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uiback.c -------------------------------------------------------------------------------- /bld/ui/c/uiband.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uiband.c -------------------------------------------------------------------------------- /bld/ui/c/uibarf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uibarf.c -------------------------------------------------------------------------------- /bld/ui/c/uibgnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uibgnd.c -------------------------------------------------------------------------------- /bld/ui/c/uibox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uibox.c -------------------------------------------------------------------------------- /bld/ui/c/uibpix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uibpix.c -------------------------------------------------------------------------------- /bld/ui/c/uibstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uibstr.c -------------------------------------------------------------------------------- /bld/ui/c/uidata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uidata.c -------------------------------------------------------------------------------- /bld/ui/c/uiev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uiev.c -------------------------------------------------------------------------------- /bld/ui/c/uifar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uifar.c -------------------------------------------------------------------------------- /bld/ui/c/uifmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uifmem.c -------------------------------------------------------------------------------- /bld/ui/c/uiinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uiinit.c -------------------------------------------------------------------------------- /bld/ui/c/uilist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uilist.c -------------------------------------------------------------------------------- /bld/ui/c/uimem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uimem.c -------------------------------------------------------------------------------- /bld/ui/c/uimenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uimenu.c -------------------------------------------------------------------------------- /bld/ui/c/uimget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uimget.c -------------------------------------------------------------------------------- /bld/ui/c/uimisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uimisc.c -------------------------------------------------------------------------------- /bld/ui/c/uipad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uipad.c -------------------------------------------------------------------------------- /bld/ui/c/uipget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uipget.c -------------------------------------------------------------------------------- /bld/ui/c/uiprot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uiprot.c -------------------------------------------------------------------------------- /bld/ui/c/uitab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uitab.c -------------------------------------------------------------------------------- /bld/ui/c/uivfld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uivfld.c -------------------------------------------------------------------------------- /bld/ui/c/uivstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uivstr.c -------------------------------------------------------------------------------- /bld/ui/c/uiwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/c/uiwin.c -------------------------------------------------------------------------------- /bld/ui/cgui.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/cgui.doc -------------------------------------------------------------------------------- /bld/ui/cguipp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/cguipp.c -------------------------------------------------------------------------------- /bld/ui/dos/dos.mif: -------------------------------------------------------------------------------- 1 | 2 | extra_c_flags += -dCHARMAP 3 | 4 | !include ../../ui.mif 5 | -------------------------------------------------------------------------------- /bld/ui/h/stdui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/h/stdui.h -------------------------------------------------------------------------------- /bld/ui/h/uibox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/h/uibox.h -------------------------------------------------------------------------------- /bld/ui/h/uidef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/h/uidef.h -------------------------------------------------------------------------------- /bld/ui/h/uidos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/h/uidos.h -------------------------------------------------------------------------------- /bld/ui/h/uiedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/h/uiedit.h -------------------------------------------------------------------------------- /bld/ui/h/uimenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/h/uimenu.h -------------------------------------------------------------------------------- /bld/ui/h/uitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/h/uitab.h -------------------------------------------------------------------------------- /bld/ui/h/uivfld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/h/uivfld.h -------------------------------------------------------------------------------- /bld/ui/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/lang.ctl -------------------------------------------------------------------------------- /bld/ui/nt/nt.mif: -------------------------------------------------------------------------------- 1 | 2 | !include ../../ui.mif 3 | -------------------------------------------------------------------------------- /bld/ui/os2/os2.mif: -------------------------------------------------------------------------------- 1 | 2 | !include ../../ui.mif 3 | -------------------------------------------------------------------------------- /bld/ui/rdos/rdos.mif: -------------------------------------------------------------------------------- 1 | 2 | !include ../../ui.mif 3 | -------------------------------------------------------------------------------- /bld/ui/ui.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/ui/ui.mif -------------------------------------------------------------------------------- /bld/ui/unixbld: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | setup_proj no_objdir 3 | make $1 4 | 5 | -------------------------------------------------------------------------------- /bld/ui/win/win.mif: -------------------------------------------------------------------------------- 1 | 2 | extra_c_flags += -zu 3 | 4 | !include ../../ui.mif 5 | -------------------------------------------------------------------------------- /bld/vi/c/addstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/addstr.c -------------------------------------------------------------------------------- /bld/vi/c/alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/alias.c -------------------------------------------------------------------------------- /bld/vi/c/change.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/change.c -------------------------------------------------------------------------------- /bld/vi/c/cledit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/cledit.c -------------------------------------------------------------------------------- /bld/vi/c/clglob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/clglob.c -------------------------------------------------------------------------------- /bld/vi/c/clread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/clread.c -------------------------------------------------------------------------------- /bld/vi/c/clset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/clset.c -------------------------------------------------------------------------------- /bld/vi/c/clsubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/clsubs.c -------------------------------------------------------------------------------- /bld/vi/c/cut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/cut.c -------------------------------------------------------------------------------- /bld/vi/c/dat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/dat.c -------------------------------------------------------------------------------- /bld/vi/c/dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/dc.c -------------------------------------------------------------------------------- /bld/vi/c/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/delete.c -------------------------------------------------------------------------------- /bld/vi/c/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/dir.c -------------------------------------------------------------------------------- /bld/vi/c/dosdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/dosdir.c -------------------------------------------------------------------------------- /bld/vi/c/editdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/editdc.c -------------------------------------------------------------------------------- /bld/vi/c/editmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/editmv.c -------------------------------------------------------------------------------- /bld/vi/c/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/error.c -------------------------------------------------------------------------------- /bld/vi/c/ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/ex.c -------------------------------------------------------------------------------- /bld/vi/c/exdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/exdata.c -------------------------------------------------------------------------------- /bld/vi/c/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/expr.c -------------------------------------------------------------------------------- /bld/vi/c/fcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/fcb.c -------------------------------------------------------------------------------- /bld/vi/c/fcbdmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/fcbdmp.c -------------------------------------------------------------------------------- /bld/vi/c/fcbdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/fcbdup.c -------------------------------------------------------------------------------- /bld/vi/c/fcbems.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/fcbems.c -------------------------------------------------------------------------------- /bld/vi/c/fcbmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/fcbmem.c -------------------------------------------------------------------------------- /bld/vi/c/fcbxms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/fcbxms.c -------------------------------------------------------------------------------- /bld/vi/c/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/file.c -------------------------------------------------------------------------------- /bld/vi/c/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/filter.c -------------------------------------------------------------------------------- /bld/vi/c/findrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/findrx.c -------------------------------------------------------------------------------- /bld/vi/c/fini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/fini.c -------------------------------------------------------------------------------- /bld/vi/c/fmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/fmatch.c -------------------------------------------------------------------------------- /bld/vi/c/fts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/fts.c -------------------------------------------------------------------------------- /bld/vi/c/gencfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/gencfg.c -------------------------------------------------------------------------------- /bld/vi/c/getdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/getdir.c -------------------------------------------------------------------------------- /bld/vi/c/grep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/grep.c -------------------------------------------------------------------------------- /bld/vi/c/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/help.c -------------------------------------------------------------------------------- /bld/vi/c/hide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/hide.c -------------------------------------------------------------------------------- /bld/vi/c/hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/hist.c -------------------------------------------------------------------------------- /bld/vi/c/ide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/ide.c -------------------------------------------------------------------------------- /bld/vi/c/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/init.c -------------------------------------------------------------------------------- /bld/vi/c/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/io.c -------------------------------------------------------------------------------- /bld/vi/c/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/key.c -------------------------------------------------------------------------------- /bld/vi/c/lang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/lang.c -------------------------------------------------------------------------------- /bld/vi/c/llrtns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/llrtns.c -------------------------------------------------------------------------------- /bld/vi/c/mapkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/mapkey.c -------------------------------------------------------------------------------- /bld/vi/c/mark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/mark.c -------------------------------------------------------------------------------- /bld/vi/c/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/match.c -------------------------------------------------------------------------------- /bld/vi/c/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/mem.c -------------------------------------------------------------------------------- /bld/vi/c/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/misc.c -------------------------------------------------------------------------------- /bld/vi/c/move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/move.c -------------------------------------------------------------------------------- /bld/vi/c/name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/name.c -------------------------------------------------------------------------------- /bld/vi/c/op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/op.c -------------------------------------------------------------------------------- /bld/vi/c/opmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/opmove.c -------------------------------------------------------------------------------- /bld/vi/c/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/parse.c -------------------------------------------------------------------------------- /bld/vi/c/pdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/pdata.c -------------------------------------------------------------------------------- /bld/vi/c/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/printf.c -------------------------------------------------------------------------------- /bld/vi/c/rcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/rcs.c -------------------------------------------------------------------------------- /bld/vi/c/regsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/regsub.c -------------------------------------------------------------------------------- /bld/vi/c/rxsupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/rxsupp.c -------------------------------------------------------------------------------- /bld/vi/c/rxwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/rxwrap.c -------------------------------------------------------------------------------- /bld/vi/c/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/select.c -------------------------------------------------------------------------------- /bld/vi/c/selrgn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/selrgn.c -------------------------------------------------------------------------------- /bld/vi/c/shove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/shove.c -------------------------------------------------------------------------------- /bld/vi/c/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/source.c -------------------------------------------------------------------------------- /bld/vi/c/srccs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/srccs.c -------------------------------------------------------------------------------- /bld/vi/c/srcgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/srcgen.c -------------------------------------------------------------------------------- /bld/vi/c/srcif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/srcif.c -------------------------------------------------------------------------------- /bld/vi/c/srcinp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/srcinp.c -------------------------------------------------------------------------------- /bld/vi/c/srcvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/srcvar.c -------------------------------------------------------------------------------- /bld/vi/c/sstyle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/sstyle.c -------------------------------------------------------------------------------- /bld/vi/c/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/status.c -------------------------------------------------------------------------------- /bld/vi/c/tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/tags.c -------------------------------------------------------------------------------- /bld/vi/c/temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/temp.c -------------------------------------------------------------------------------- /bld/vi/c/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/time.c -------------------------------------------------------------------------------- /bld/vi/c/undo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/undo.c -------------------------------------------------------------------------------- /bld/vi/c/wingen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/wingen.c -------------------------------------------------------------------------------- /bld/vi/c/word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/word.c -------------------------------------------------------------------------------- /bld/vi/c/xmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/c/xmem.c -------------------------------------------------------------------------------- /bld/vi/ctl/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/ctl/util.c -------------------------------------------------------------------------------- /bld/vi/ctl/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/ctl/util.h -------------------------------------------------------------------------------- /bld/vi/dat/c.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/dat/c.dat -------------------------------------------------------------------------------- /bld/vi/dat/dde.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/dat/dde.vi -------------------------------------------------------------------------------- /bld/vi/dat/ed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/dat/ed.cfg -------------------------------------------------------------------------------- /bld/vi/dat/err.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/dat/err.vi -------------------------------------------------------------------------------- /bld/vi/dat/fin.vi: -------------------------------------------------------------------------------- 1 | files 2 | keyadd g 3 | -------------------------------------------------------------------------------- /bld/vi/dat/forceout.vi: -------------------------------------------------------------------------------- 1 | !vforcout %F 2 | -------------------------------------------------------------------------------- /bld/vi/dat/qh.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/dat/qh.vi -------------------------------------------------------------------------------- /bld/vi/dat/qh2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/dat/qh2.vi -------------------------------------------------------------------------------- /bld/vi/dat/rc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/dat/rc.dat -------------------------------------------------------------------------------- /bld/vi/dat/rcs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/dat/rcs.vi -------------------------------------------------------------------------------- /bld/vi/dat/rdmewin.vi: -------------------------------------------------------------------------------- 1 | # 2 | # Rdhook script - does nothing 3 | # 4 | return 5 | -------------------------------------------------------------------------------- /bld/vi/dat/wqh.vi: -------------------------------------------------------------------------------- 1 | winhelp HELP_KEY win31wh.hlp %1 2 | -------------------------------------------------------------------------------- /bld/vi/dos/int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/dos/int.c -------------------------------------------------------------------------------- /bld/vi/files.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/files.dat -------------------------------------------------------------------------------- /bld/vi/h/cmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/cmds.h -------------------------------------------------------------------------------- /bld/vi/h/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/colors.h -------------------------------------------------------------------------------- /bld/vi/h/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/const.h -------------------------------------------------------------------------------- /bld/vi/h/dc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/dc.h -------------------------------------------------------------------------------- /bld/vi/h/dosext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/dosext.h -------------------------------------------------------------------------------- /bld/vi/h/dosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/dosx.h -------------------------------------------------------------------------------- /bld/vi/h/errs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/errs.h -------------------------------------------------------------------------------- /bld/vi/h/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/events.h -------------------------------------------------------------------------------- /bld/vi/h/ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/ex.h -------------------------------------------------------------------------------- /bld/vi/h/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/expr.h -------------------------------------------------------------------------------- /bld/vi/h/fcbmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/fcbmem.h -------------------------------------------------------------------------------- /bld/vi/h/fts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/fts.h -------------------------------------------------------------------------------- /bld/vi/h/intr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/intr.h -------------------------------------------------------------------------------- /bld/vi/h/lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/lang.h -------------------------------------------------------------------------------- /bld/vi/h/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/mem.h -------------------------------------------------------------------------------- /bld/vi/h/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/menu.h -------------------------------------------------------------------------------- /bld/vi/h/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/mouse.h -------------------------------------------------------------------------------- /bld/vi/h/myprtf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/myprtf.h -------------------------------------------------------------------------------- /bld/vi/h/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/posix.h -------------------------------------------------------------------------------- /bld/vi/h/rcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/rcs.h -------------------------------------------------------------------------------- /bld/vi/h/rtns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/rtns.h -------------------------------------------------------------------------------- /bld/vi/h/rtns2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/rtns2.h -------------------------------------------------------------------------------- /bld/vi/h/rxsupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/rxsupp.h -------------------------------------------------------------------------------- /bld/vi/h/setb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/setb.h -------------------------------------------------------------------------------- /bld/vi/h/setnb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/setnb.h -------------------------------------------------------------------------------- /bld/vi/h/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/source.h -------------------------------------------------------------------------------- /bld/vi/h/sstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/sstyle.h -------------------------------------------------------------------------------- /bld/vi/h/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/stack.h -------------------------------------------------------------------------------- /bld/vi/h/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/struct.h -------------------------------------------------------------------------------- /bld/vi/h/vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/vi.h -------------------------------------------------------------------------------- /bld/vi/h/vibios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/vibios.h -------------------------------------------------------------------------------- /bld/vi/h/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/win.h -------------------------------------------------------------------------------- /bld/vi/h/winaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/winaux.h -------------------------------------------------------------------------------- /bld/vi/h/xmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/h/xmem.h -------------------------------------------------------------------------------- /bld/vi/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/lang.ctl -------------------------------------------------------------------------------- /bld/vi/man/default.opt: -------------------------------------------------------------------------------- 1 | ( line script index 2 | ( dev tasa 3 | -------------------------------------------------------------------------------- /bld/vi/man/duh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/man/duh -------------------------------------------------------------------------------- /bld/vi/man/helphead.gml: -------------------------------------------------------------------------------- 1 | :set symbol='helphead' value='Index zTopics Contents' 2 | -------------------------------------------------------------------------------- /bld/vi/man/toc.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/man/toc.vi -------------------------------------------------------------------------------- /bld/vi/man/vi.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/man/vi.gml -------------------------------------------------------------------------------- /bld/vi/noui/int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/noui/int.c -------------------------------------------------------------------------------- /bld/vi/nt/int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/nt/int.c -------------------------------------------------------------------------------- /bld/vi/nt/nt.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/nt/nt.mif -------------------------------------------------------------------------------- /bld/vi/nt/ntsys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/nt/ntsys.c -------------------------------------------------------------------------------- /bld/vi/nt/spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/nt/spawn.c -------------------------------------------------------------------------------- /bld/vi/os2/int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/os2/int.c -------------------------------------------------------------------------------- /bld/vi/prereq.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/prereq.ctl -------------------------------------------------------------------------------- /bld/vi/qnx/int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/qnx/int.c -------------------------------------------------------------------------------- /bld/vi/tagme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/tagme -------------------------------------------------------------------------------- /bld/vi/ui/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/ui/menu.c -------------------------------------------------------------------------------- /bld/vi/ui/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/ui/mouse.c -------------------------------------------------------------------------------- /bld/vi/ui/ui.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/ui/ui.mif -------------------------------------------------------------------------------- /bld/vi/unix/int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/unix/int.c -------------------------------------------------------------------------------- /bld/vi/vi.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/vi.msg -------------------------------------------------------------------------------- /bld/vi/win/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/win/cmd.h -------------------------------------------------------------------------------- /bld/vi/win/dde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/win/dde.c -------------------------------------------------------------------------------- /bld/vi/win/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/win/exec.c -------------------------------------------------------------------------------- /bld/vi/win/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/win/font.c -------------------------------------------------------------------------------- /bld/vi/win/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/win/font.h -------------------------------------------------------------------------------- /bld/vi/win/grep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/win/grep.h -------------------------------------------------------------------------------- /bld/vi/win/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/win/main.c -------------------------------------------------------------------------------- /bld/vi/win/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/win/menu.c -------------------------------------------------------------------------------- /bld/vi/win/ole2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/win/ole2.c -------------------------------------------------------------------------------- /bld/vi/win/tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/win/tool.c -------------------------------------------------------------------------------- /bld/vi/win/viw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/vi/win/viw.rc -------------------------------------------------------------------------------- /bld/w32api.old/include/poppack.h: -------------------------------------------------------------------------------- 1 | #ifndef RC_INVOKED 2 | #pragma pack(pop) 3 | #endif 4 | -------------------------------------------------------------------------------- /bld/w32api.old/include/pshpack1.h: -------------------------------------------------------------------------------- 1 | #ifndef RC_INVOKED 2 | #pragma pack(push,1) 3 | #endif 4 | -------------------------------------------------------------------------------- /bld/w32api.old/include/pshpack2.h: -------------------------------------------------------------------------------- 1 | #ifndef RC_INVOKED 2 | #pragma pack(push,2) 3 | #endif 4 | -------------------------------------------------------------------------------- /bld/w32api.old/include/pshpack4.h: -------------------------------------------------------------------------------- 1 | #ifndef RC_INVOKED 2 | #pragma pack(push,4) 3 | #endif 4 | -------------------------------------------------------------------------------- /bld/w32api.old/include/pshpack8.h: -------------------------------------------------------------------------------- 1 | #ifndef RC_INVOKED 2 | #pragma pack(push,8) 3 | #endif 4 | -------------------------------------------------------------------------------- /bld/w32api.old/lib/wst.def: -------------------------------------------------------------------------------- 1 | LIBRARY WST.DLL 2 | EXPORTS 3 | _penter 4 | -------------------------------------------------------------------------------- /bld/w32api.old/nt/include/GL/readme: -------------------------------------------------------------------------------- 1 | Ensure this directory gets created. 2 | -------------------------------------------------------------------------------- /bld/w32api.old/nt/include/ddk/readme: -------------------------------------------------------------------------------- 1 | Ensure this directory gets created. 2 | -------------------------------------------------------------------------------- /bld/w32api.old/nt/include/directx/readme: -------------------------------------------------------------------------------- 1 | Ensure this directory gets created. 2 | -------------------------------------------------------------------------------- /bld/w32api/lib/ddk/dxapi.def: -------------------------------------------------------------------------------- 1 | LIBRARY DXAPI.SYS 2 | EXPORTS 3 | DxApi@20 4 | -------------------------------------------------------------------------------- /bld/w32api/lib/dflayout.def: -------------------------------------------------------------------------------- 1 | LIBRARY DFLAYOUT.DLL 2 | EXPORTS 3 | StgOpenLayoutDocfile@16 4 | -------------------------------------------------------------------------------- /bld/w32api/nt/ddk/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/w32api/nt/directx/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/w32api/nt386/ddk/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/w32api/nt386/directx/afile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/wasm/boot.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wasm/boot.ctl -------------------------------------------------------------------------------- /bld/wasm/bootmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wasm/bootmake -------------------------------------------------------------------------------- /bld/wasm/c/for.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wasm/c/for.c -------------------------------------------------------------------------------- /bld/wasm/c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wasm/c/main.c -------------------------------------------------------------------------------- /bld/wasm/h/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wasm/h/hash.h -------------------------------------------------------------------------------- /bld/wasm/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wasm/lang.ctl -------------------------------------------------------------------------------- /bld/wasm/test/diag/diag01.chk: -------------------------------------------------------------------------------- 1 | diag01.asm(9): Error! E551: Symbol hwndMain is not defined 2 | -------------------------------------------------------------------------------- /bld/wasm/test/diag/diag02.chk: -------------------------------------------------------------------------------- 1 | diag02.asm(9): Error! E551: Symbol hwndMain is not defined 2 | -------------------------------------------------------------------------------- /bld/wasm/test/diag/diag08.chk: -------------------------------------------------------------------------------- 1 | diag08.asm(7): Error! E032: Syntax error 2 | -------------------------------------------------------------------------------- /bld/wasm/test/diag/extern1.chk: -------------------------------------------------------------------------------- 1 | extern1.asm(11): Error! E610: Symbol 'var1' type conflict. 2 | -------------------------------------------------------------------------------- /bld/wasm/test/error.chk: -------------------------------------------------------------------------------- 1 | OK 2 | PASS 3 | -------------------------------------------------------------------------------- /bld/wasm/test/inline/asmbug10.asm: -------------------------------------------------------------------------------- 1 | out dx,eax 2 | -------------------------------------------------------------------------------- /bld/wasm/test/inline/asmbug11.asm: -------------------------------------------------------------------------------- 1 | push 7fH 2 | -------------------------------------------------------------------------------- /bld/wasm/test/inline/asmbug5.asm: -------------------------------------------------------------------------------- 1 | mov eax,dword ptr [di] 2 | -------------------------------------------------------------------------------- /bld/wasm/test/inline/asmbug6.asm: -------------------------------------------------------------------------------- 1 | mov ax,word ptr [di] 2 | -------------------------------------------------------------------------------- /bld/wasm/test/inline/fp.asm: -------------------------------------------------------------------------------- 1 | f2xm1 2 | fabs 3 | -------------------------------------------------------------------------------- /bld/wasm/test/inline/try.asm: -------------------------------------------------------------------------------- 1 | and eax,0ffffH 2 | -------------------------------------------------------------------------------- /bld/wasm/test/test1/alias.asm: -------------------------------------------------------------------------------- 1 | foo alias bar 2 | end 3 | -------------------------------------------------------------------------------- /bld/wasm/test/test1/empty.asm: -------------------------------------------------------------------------------- 1 | end 2 | -------------------------------------------------------------------------------- /bld/wasm/test/test1/empty.esm: -------------------------------------------------------------------------------- 1 | .387 2 | END 3 | -------------------------------------------------------------------------------- /bld/wasm/test/test1/hello.asm: -------------------------------------------------------------------------------- 1 | .model small 2 | .data 3 | db "hello" 4 | end 5 | -------------------------------------------------------------------------------- /bld/wasm/test/test2/read.me: -------------------------------------------------------------------------------- 1 | all of these files should assemble ok 2 | -------------------------------------------------------------------------------- /bld/wasm/test/test3/expr01.emp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/wasm/test/test3/jmpshrt.emp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/watcom/h/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/watcom/h/ar.h -------------------------------------------------------------------------------- /bld/watcom/lib/readme.txt: -------------------------------------------------------------------------------- 1 | Ensure this directory gets created. 2 | -------------------------------------------------------------------------------- /bld/wdisasm/compile.gbl: -------------------------------------------------------------------------------- 1 | Edit this file to force a recompile. 2 | -------------------------------------------------------------------------------- /bld/wgml/c/gcmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gcmt.c -------------------------------------------------------------------------------- /bld/wgml/c/ghx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/ghx.c -------------------------------------------------------------------------------- /bld/wgml/c/gixx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gixx.c -------------------------------------------------------------------------------- /bld/wgml/c/gldd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gldd.c -------------------------------------------------------------------------------- /bld/wgml/c/glfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/glfn.c -------------------------------------------------------------------------------- /bld/wgml/c/glhx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/glhx.c -------------------------------------------------------------------------------- /bld/wgml/c/glix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/glix.c -------------------------------------------------------------------------------- /bld/wgml/c/gllp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gllp.c -------------------------------------------------------------------------------- /bld/wgml/c/gllq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gllq.c -------------------------------------------------------------------------------- /bld/wgml/c/glpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/glpc.c -------------------------------------------------------------------------------- /bld/wgml/c/glq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/glq.c -------------------------------------------------------------------------------- /bld/wgml/c/glxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/glxl.c -------------------------------------------------------------------------------- /bld/wgml/c/gpb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gpb.c -------------------------------------------------------------------------------- /bld/wgml/c/gsbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gsbr.c -------------------------------------------------------------------------------- /bld/wgml/c/gsbx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gsbx.c -------------------------------------------------------------------------------- /bld/wgml/c/gscd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gscd.c -------------------------------------------------------------------------------- /bld/wgml/c/gscs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gscs.c -------------------------------------------------------------------------------- /bld/wgml/c/gsct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gsct.c -------------------------------------------------------------------------------- /bld/wgml/c/gset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gset.c -------------------------------------------------------------------------------- /bld/wgml/c/gsga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gsga.c -------------------------------------------------------------------------------- /bld/wgml/c/gsgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gsgt.c -------------------------------------------------------------------------------- /bld/wgml/c/gshy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gshy.c -------------------------------------------------------------------------------- /bld/wgml/c/gsin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gsin.c -------------------------------------------------------------------------------- /bld/wgml/c/gsix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gsix.c -------------------------------------------------------------------------------- /bld/wgml/c/gsli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gsli.c -------------------------------------------------------------------------------- /bld/wgml/c/gsnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gsnl.c -------------------------------------------------------------------------------- /bld/wgml/c/gsoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gsoc.c -------------------------------------------------------------------------------- /bld/wgml/c/gspe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gspe.c -------------------------------------------------------------------------------- /bld/wgml/c/gspp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gspp.c -------------------------------------------------------------------------------- /bld/wgml/c/gspu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gspu.c -------------------------------------------------------------------------------- /bld/wgml/c/gstb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gstb.c -------------------------------------------------------------------------------- /bld/wgml/c/gsty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gsty.c -------------------------------------------------------------------------------- /bld/wgml/c/gxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gxl.c -------------------------------------------------------------------------------- /bld/wgml/c/gxmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/gxmp.c -------------------------------------------------------------------------------- /bld/wgml/c/wgml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/c/wgml.c -------------------------------------------------------------------------------- /bld/wgml/h/wgml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wgml/h/wgml.h -------------------------------------------------------------------------------- /bld/wic/c/yaccpre.cmd: -------------------------------------------------------------------------------- 1 | ..\c\yaccpre.bat %1 %2 2 | -------------------------------------------------------------------------------- /bld/wic/h/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wic/h/lex.h -------------------------------------------------------------------------------- /bld/wic/h/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wic/h/msg.h -------------------------------------------------------------------------------- /bld/wic/h/wic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wic/h/wic.h -------------------------------------------------------------------------------- /bld/wic/test/all.inc: -------------------------------------------------------------------------------- 1 | ; Test all files 2 | 3 | -------------------------------------------------------------------------------- /bld/wic/test/incl1a.h: -------------------------------------------------------------------------------- 1 | // Inside incl1a.h 2 | -------------------------------------------------------------------------------- /bld/wic/test/incl1b1.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bld/win386/conv/def/emit.def: -------------------------------------------------------------------------------- 1 | #void _FloatingPoint(void); 2 | -------------------------------------------------------------------------------- /bld/win386/conv/def/print.def: -------------------------------------------------------------------------------- 1 | int ResetDC(int,void *); 2 | -------------------------------------------------------------------------------- /bld/wipfc/NEWS: -------------------------------------------------------------------------------- 1 | Move along, folks. Nothing to see here... 2 | 3 | -------------------------------------------------------------------------------- /bld/wl/boot.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/boot.ctl -------------------------------------------------------------------------------- /bld/wl/bootmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/bootmake -------------------------------------------------------------------------------- /bld/wl/c/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/c/hash.c -------------------------------------------------------------------------------- /bld/wl/c/libr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/c/libr.c -------------------------------------------------------------------------------- /bld/wl/c/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/c/mem.c -------------------------------------------------------------------------------- /bld/wl/c/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/c/msg.c -------------------------------------------------------------------------------- /bld/wl/c/ntio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/c/ntio.c -------------------------------------------------------------------------------- /bld/wl/c/ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/c/ring.c -------------------------------------------------------------------------------- /bld/wl/c/toc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/c/toc.c -------------------------------------------------------------------------------- /bld/wl/h/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/h/hash.h -------------------------------------------------------------------------------- /bld/wl/h/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/h/link.h -------------------------------------------------------------------------------- /bld/wl/h/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/h/msg.h -------------------------------------------------------------------------------- /bld/wl/h/ntio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/h/ntio.h -------------------------------------------------------------------------------- /bld/wl/h/ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/h/ring.h -------------------------------------------------------------------------------- /bld/wl/h/syms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/h/syms.h -------------------------------------------------------------------------------- /bld/wl/h/toc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/h/toc.h -------------------------------------------------------------------------------- /bld/wl/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/lang.ctl -------------------------------------------------------------------------------- /bld/wl/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/makefile -------------------------------------------------------------------------------- /bld/wl/ms2wlink/regress/rsp1.lnk: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -------------------------------------------------------------------------------- /bld/wl/ms2wlink/regress/rsp2.lnk: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | -------------------------------------------------------------------------------- /bld/wl/ms2wlink/regress/rsp3.lnk: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | 2 4 | -------------------------------------------------------------------------------- /bld/wl/ms2wlink/regress/rsp4.lnk: -------------------------------------------------------------------------------- 1 | obj -------------------------------------------------------------------------------- /bld/wl/specs.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/specs.sp -------------------------------------------------------------------------------- /bld/wl/wlink.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wl/wlink.u -------------------------------------------------------------------------------- /bld/wmake/regress/errtest/all.43: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/wmake/regress/errtest/err03a.cmp: -------------------------------------------------------------------------------- 1 | Error(E03): Option -. invalid 2 | -------------------------------------------------------------------------------- /bld/wmake/regress/errtest/err03b.cmp: -------------------------------------------------------------------------------- 1 | Error(E03): Option - invalid 2 | -------------------------------------------------------------------------------- /bld/wmake/regress/errtest/err04.cmp: -------------------------------------------------------------------------------- 1 | Error(E04): -f must be followed by a filename 2 | -------------------------------------------------------------------------------- /bld/wmake/regress/errtest/z43.43: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/wmake/regress/fortest/for04a.cmp: -------------------------------------------------------------------------------- 1 | for %i in (*) do @echo %i 2 | . 3 | .. 4 | -------------------------------------------------------------------------------- /bld/wmake/regress/fortest/for04b.cmp: -------------------------------------------------------------------------------- 1 | for %i in (for??) do @echo %i 2 | -------------------------------------------------------------------------------- /bld/wmake/regress/fortest/for07.cmp: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | -------------------------------------------------------------------------------- /bld/wmake/regress/fortest/for08.cmp: -------------------------------------------------------------------------------- 1 | for %i in (a b c) do echo %i 2 | -------------------------------------------------------------------------------- /bld/wmake/regress/preproc/prep04.cmp: -------------------------------------------------------------------------------- 1 | "str 2 | ing" 3 | evaluate this 4 | done 5 | -------------------------------------------------------------------------------- /bld/wmake/regress/test1/err1.chk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bld/wmake/regress/updtest/upd11.out: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /bld/wpi/h/wpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wpi/h/wpi.h -------------------------------------------------------------------------------- /bld/wpi/wpi.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wpi/wpi.mif -------------------------------------------------------------------------------- /bld/wprof/h/wprof.rc: -------------------------------------------------------------------------------- 1 | #include "aui.rc" 2 | -------------------------------------------------------------------------------- /bld/wprof/h/wprof.u: -------------------------------------------------------------------------------- 1 | Usage: wprof [sample_file] 2 | -------------------------------------------------------------------------------- /bld/wprof/test/threaded.lnk: -------------------------------------------------------------------------------- 1 | OPTION map, verbose 2 | SYS os2 3 | FILE threaded 4 | -------------------------------------------------------------------------------- /bld/wv/boot.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wv/boot.ctl -------------------------------------------------------------------------------- /bld/wv/c/dui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wv/c/dui.c -------------------------------------------------------------------------------- /bld/wv/c/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wv/c/stub.c -------------------------------------------------------------------------------- /bld/wv/h/dui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wv/h/dui.h -------------------------------------------------------------------------------- /bld/wv/h/wd.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wv/h/wd.str -------------------------------------------------------------------------------- /bld/wv/h/wv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wv/h/wv.rc -------------------------------------------------------------------------------- /bld/wv/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bld/wv/lang.ctl -------------------------------------------------------------------------------- /bld/wv/ssl/c.ssl: -------------------------------------------------------------------------------- 1 | !define CC 2 | !include "pp_c.ssl" 3 | -------------------------------------------------------------------------------- /bld/wv/ssl/cpp.ssl: -------------------------------------------------------------------------------- 1 | !define CPP 2 | !include "pp_c.ssl" 3 | -------------------------------------------------------------------------------- /bld/wv/ssl/java.ssl: -------------------------------------------------------------------------------- 1 | !define JAVA 2 | !include "pp_c.ssl" 3 | -------------------------------------------------------------------------------- /bootclean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/bootclean.sh -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/clean.sh -------------------------------------------------------------------------------- /cmnvars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/cmnvars.bat -------------------------------------------------------------------------------- /cmnvars.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/cmnvars.cmd -------------------------------------------------------------------------------- /cmnvars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/cmnvars.sh -------------------------------------------------------------------------------- /contrib/awk/b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/contrib/awk/b.c -------------------------------------------------------------------------------- /contrib/extender/causeway/source/all/a.bat: -------------------------------------------------------------------------------- 1 | 2 | nmake all 3 | 4 | -------------------------------------------------------------------------------- /contrib/extender/causeway/source/all/cw/a.bat: -------------------------------------------------------------------------------- 1 | nmake /r all 2 | -------------------------------------------------------------------------------- /contrib/extender/causeway/source/all/cwc/a.bat: -------------------------------------------------------------------------------- 1 | nmake /r all >temp 2 | -------------------------------------------------------------------------------- /contrib/extender/causeway/source/all/cwd/a.bat: -------------------------------------------------------------------------------- 1 | nmake /r all 2 | -------------------------------------------------------------------------------- /contrib/extender/causeway/source/all/cwd/w.bat: -------------------------------------------------------------------------------- 1 | nmake /f wl /r all 2 | -------------------------------------------------------------------------------- /contrib/extender/causeway/source/all/cwlib/cw.asm/a.bat: -------------------------------------------------------------------------------- 1 | nmake all 2 | -------------------------------------------------------------------------------- /contrib/extender/causeway/source/all/watcom/a.bat: -------------------------------------------------------------------------------- 1 | wmake all 2 | -------------------------------------------------------------------------------- /contrib/extender/causeway/source/all/watcom/kbhit/a.bat: -------------------------------------------------------------------------------- 1 | wmake all 2 | -------------------------------------------------------------------------------- /contrib/extender/dos32a/src/stub32a/oemtitle.inf: -------------------------------------------------------------------------------- 1 | db 'R8-07.0101.0076',0 2 | -------------------------------------------------------------------------------- /contrib/wattcp/inc/net/if_ether.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /contrib/wattcp/inc/net/if_fddi.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /contrib/wattcp/inc/sys/msoft32.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /distrib/include/next.dlg: -------------------------------------------------------------------------------- 1 | push_button=.+"&Next >>" 2 | -------------------------------------------------------------------------------- /distrib/include/ok.dlg: -------------------------------------------------------------------------------- 1 | push_button=.+"&OK" 2 | -------------------------------------------------------------------------------- /distrib/ow/disksize.dlg: -------------------------------------------------------------------------------- 1 | name=GetDiskSizesHere 2 | -------------------------------------------------------------------------------- /distrib/ow/hopt.dlg: -------------------------------------------------------------------------------- 1 | name=Help_Options 2 | include=hopt1.dlg 3 | -------------------------------------------------------------------------------- /distrib/wc11/demacro.vi: -------------------------------------------------------------------------------- 1 | %s/%([a-z]*)%/\1/g 2 | %s/&/\n/g 3 | wq 4 | -------------------------------------------------------------------------------- /distrib/wc11/disksize.dlg: -------------------------------------------------------------------------------- 1 | name=GetDiskSizesHere 2 | condition=MakeDisks ! 3 | -------------------------------------------------------------------------------- /distrib/wc11/hopt.dlg: -------------------------------------------------------------------------------- 1 | name=Help_Options 2 | include=hopt1.dlg 3 | -------------------------------------------------------------------------------- /distrib/wc11/hoptmd.dlg: -------------------------------------------------------------------------------- 1 | name=Help_OptionsMakeDisks 2 | include=hopt1.dlg 3 | -------------------------------------------------------------------------------- /distrib/wc11/ok.dlg: -------------------------------------------------------------------------------- 1 | push_button=.+"&OK" 2 | -------------------------------------------------------------------------------- /distrib/wc11/packdec.bat: -------------------------------------------------------------------------------- 1 | call startit 2 | ..\packfile ac 3 | -------------------------------------------------------------------------------- /distrib/wc11/packit.bat: -------------------------------------------------------------------------------- 1 | call startit 2 | ..\packfile.bat * 3 | -------------------------------------------------------------------------------- /distrib/wcrtl/disksize.dlg: -------------------------------------------------------------------------------- 1 | name=GetDiskSizesHere 2 | condition=MakeDisks ! 3 | -------------------------------------------------------------------------------- /distrib/wcrtl/ok.dlg: -------------------------------------------------------------------------------- 1 | push_button=.+"&OK" 2 | -------------------------------------------------------------------------------- /docs/LJ/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/docs/LJ/check.c -------------------------------------------------------------------------------- /docs/LJ/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/docs/LJ/hello.c -------------------------------------------------------------------------------- /docs/doc/fl/finote7.gml: -------------------------------------------------------------------------------- 1 | All angles are assumed to be in radians. 2 | -------------------------------------------------------------------------------- /docs/doc/fl/finote8.gml: -------------------------------------------------------------------------------- 1 | The result of a complex function is the principal value. 2 | -------------------------------------------------------------------------------- /docs/doc/gml/eoj.ps: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /docs/doc/gml/ps2epi.ps: -------------------------------------------------------------------------------- 1 | showfinish 2 | showobj restore 3 | -------------------------------------------------------------------------------- /docs/doc/gml/wtrdmrk.gml: -------------------------------------------------------------------------------- 1 | WATCOM is a trademark of Sybase, Inc. and its subsidiaries. 2 | -------------------------------------------------------------------------------- /docs/doc/hlp/bantop.gml: -------------------------------------------------------------------------------- 1 | :INCLUDE file='BANNER'. 2 | -------------------------------------------------------------------------------- /docs/doc/lr/gfunrems.gml: -------------------------------------------------------------------------------- 1 | .im cfunrems 2 | -------------------------------------------------------------------------------- /docs/doc/wfg/ugprg6.gml: -------------------------------------------------------------------------------- 1 | PRINT *, 'to illustrate the editor' 2 | -------------------------------------------------------------------------------- /docs/doc/wgmlref/rflanst2.gml: -------------------------------------------------------------------------------- 1 | (See :HDREF refid='numstyl'.). 2 | -------------------------------------------------------------------------------- /docs/doc/win386/libpref.gml: -------------------------------------------------------------------------------- 1 | .* 2 | -------------------------------------------------------------------------------- /docs/gml/sf.ps: -------------------------------------------------------------------------------- 1 | /showflag 1 def 2 | -------------------------------------------------------------------------------- /docs/howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/docs/howto.txt -------------------------------------------------------------------------------- /docs/lang.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/docs/lang.ctl -------------------------------------------------------------------------------- /docs/makecnt1.awk: -------------------------------------------------------------------------------- 1 | /^1 / { next } 2 | { print $0 } 3 | -------------------------------------------------------------------------------- /docs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/docs/readme.txt -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/license.txt -------------------------------------------------------------------------------- /owconfig.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/owconfig.bat -------------------------------------------------------------------------------- /owconfig.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/owconfig.vbs -------------------------------------------------------------------------------- /projects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/projects.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/readme.txt -------------------------------------------------------------------------------- /setvars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/setvars.bat -------------------------------------------------------------------------------- /setvars.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/setvars.cmd -------------------------------------------------------------------------------- /setvars.dos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/setvars.dos -------------------------------------------------------------------------------- /setvars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/setvars.sh -------------------------------------------------------------------------------- /zipup-rel.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/zipup-rel.cmd -------------------------------------------------------------------------------- /zipup-rel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/zipup-rel.sh -------------------------------------------------------------------------------- /zipup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/zipup.bat -------------------------------------------------------------------------------- /zipup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/owp4v1copy/HEAD/zipup.sh --------------------------------------------------------------------------------