fpc/.gitattributes
svenbarth 88af293155 Fix for Mantis #22160
The cause of the internal error was the following:
We have a generic in an unit ("A") which uses another unit ("B") in the implementation section and this other unit uses unit A in the interface section. Now the generic is specialized in the interface section of B. This leads to the problem that in unit A when it tries to load the globalsymtable of unit B that globalsymtable will be Nil, because parsing of the interface section is not yet finished. Thus the change in pgenutil.pas, specialization_init: if the unit is still "in_interface" the localsymtable needs to be used instead of the globalsymtable.

This doesn't necessarily lead to a compiling test though, as there is the following possibility:
Unit A contains a generic class/record (with methods) and uses unit B in the implementation section. This unit B also contains a generic class/record (with methods) and uses unit A in the implementation section. Both units contain a specialization of the other unit's generic outside of it's own generics (such that generate_specialization is fully triggered). Let's assume compilation starts with unit A and we reach the uses of unit B. Now compilation switches to unit B and completes as unit A is already registered and in compilation. The problem now is that the generic in unit A still contains unresolved forward declarations as the implementation section of A was not yet parsed which will lead to "forward declaration not solved" errors (Note: Delphi compiles this).

The solution to this is the following: if a generic is specialized from another unit which is not in state ms_compiled then the unit of the specialization needs to wait for the unit of the generic. So the specialization's unit adds itself into a list of waiting units of the generic's unit. Now inside "proc_unit" we need to check whether this module is waiting for other modules and if so avoid "finishing" the unit (which means generating the methods of the specialization, generating assembler code and ultimately freeing the scanner and PPU). Now when the generic's unit finishes we need to check whether other modules are waiting for it and finish them (of course it's a bit more complicated in reality, but that pretty much sums it up).

+ globstat.pas: Added an unit which handles the saving and restoring of the global state which was originally inside "parser.pas, compile" so that Don't Repeat Yourself (DRY) is respected.
* fmodule.pas, tmodule: 
  + add fields to keep track of the units the module is waiting for and which modules are waiting for the module
  + add field for the saved global state (raw pointer to avoid circles)
  + add field for the state which is needed to finish the unit (raw pointer to avoid circles)
  + move the code which was used in "parser.pas, compile" after a module was successfully compiled to the new virtual method "end_of_parsing"
+ fppu.pas, tppumodule.end_of_parsing:
  free the ppufile here
* pgenutil.pas:
  + add new procedure "maybe_add_waiting_unit" which adds the specialization's unit to the waiting list of the generic if that unit is not yet compiled
  * generate_specialization: call the new function when we add a new (true) specialization
  * specialization_init: instead of not adding implementation units at all check whether the unit is still parsing the interface section and add the localsymtable in that case
* pmodules.pas:
  * change "proc_unit" to a function which returns "true" if the unit was already finished (no need to wait for other units)
  + move the code from "proc_unit" from "generate_specialization_procs" on to a new procedure "finish_unit" which
  * this procedure is either called immediately in "proc_unit" if the unit does not need to wait for other units or from "finish_unit" itself if a unit that is waiting for the given unit does no longer wait for another module (special care is taken in proc_unit to avoid circles)
* parser.pas, compile:
  * correctly handle the case if an unit is not finished
  * use the new global state functionality from globstat.pas
  * pay special attention when calling "set_current_module" (see comment at that call)

+ add tests from 22160
+ add test for above mentioned "diamond" case

git-svn-id: trunk@22452 -
2012-09-25 09:45:25 +00:00

14152 lines
782 KiB
Plaintext

* text=auto !eol
/Makefile svneol=native#text/plain
/Makefile.fpc svneol=native#text/plain
compiler/COPYING.txt svneol=native#text/plain
compiler/MPWMake -text
compiler/Makefile svneol=native#text/plain
compiler/Makefile.fpc svneol=native#text/plain
compiler/README.txt svneol=native#text/plain
compiler/aasmbase.pas svneol=native#text/plain
compiler/aasmdata.pas svneol=native#text/plain
compiler/aasmsym.pas svneol=native#text/plain
compiler/aasmtai.pas svneol=native#text/plain
compiler/aggas.pas svneol=native#text/plain
compiler/agjasmin.pas svneol=native#text/plain
compiler/alpha/aasmcpu.pas svneol=native#text/plain
compiler/alpha/agaxpgas.pas svneol=native#text/plain
compiler/alpha/aoptcpu.pas svneol=native#text/plain
compiler/alpha/aoptcpub.pas svneol=native#text/plain
compiler/alpha/aoptcpuc.pas svneol=native#text/plain
compiler/alpha/aoptcpud.pas svneol=native#text/plain
compiler/alpha/cgcpu.pas svneol=native#text/plain
compiler/alpha/cpubase.pas svneol=native#text/plain
compiler/alpha/cpuinfo.pas svneol=native#text/plain
compiler/alpha/cpunode.pas svneol=native#text/plain
compiler/alpha/cpupara.pas svneol=native#text/plain
compiler/alpha/cpupi.pas svneol=native#text/plain
compiler/alpha/cputarg.pas svneol=native#text/plain
compiler/alpha/radirect.pas svneol=native#text/plain
compiler/alpha/rasm.pas svneol=native#text/plain
compiler/alpha/rgcpu.pas svneol=native#text/plain
compiler/alpha/tgcpu.pas svneol=native#text/plain
compiler/aopt.pas svneol=native#text/plain
compiler/aoptbase.pas svneol=native#text/plain
compiler/aoptcs.pas svneol=native#text/plain
compiler/aoptda.pas svneol=native#text/plain
compiler/aoptobj.pas svneol=native#text/plain
compiler/arm/aasmcpu.pas svneol=native#text/plain
compiler/arm/agarmgas.pas svneol=native#text/plain
compiler/arm/aoptcpu.pas svneol=native#text/plain
compiler/arm/aoptcpub.pas svneol=native#text/plain
compiler/arm/aoptcpuc.pas svneol=native#text/plain
compiler/arm/aoptcpud.pas svneol=native#text/plain
compiler/arm/armatt.inc svneol=native#text/plain
compiler/arm/armatts.inc svneol=native#text/plain
compiler/arm/armins.dat svneol=native#text/plain
compiler/arm/armnop.inc svneol=native#text/plain
compiler/arm/armop.inc svneol=native#text/plain
compiler/arm/armreg.dat svneol=native#text/plain
compiler/arm/armtab.inc svneol=native#text/plain
compiler/arm/cgcpu.pas svneol=native#text/plain
compiler/arm/cpubase.pas svneol=native#text/plain
compiler/arm/cpuinfo.pas svneol=native#text/plain
compiler/arm/cpunode.pas svneol=native#text/plain
compiler/arm/cpupara.pas svneol=native#text/plain
compiler/arm/cpupi.pas svneol=native#text/plain
compiler/arm/cputarg.pas svneol=native#text/plain
compiler/arm/hlcgcpu.pas svneol=native#text/plain
compiler/arm/itcpugas.pas svneol=native#text/plain
compiler/arm/narmadd.pas svneol=native#text/plain
compiler/arm/narmcal.pas svneol=native#text/plain
compiler/arm/narmcnv.pas svneol=native#text/plain
compiler/arm/narmcon.pas svneol=native#text/plain
compiler/arm/narminl.pas svneol=native#text/plain
compiler/arm/narmmat.pas svneol=native#text/plain
compiler/arm/narmmem.pas svneol=native#text/plain
compiler/arm/narmset.pas svneol=native#text/plain
compiler/arm/pp.lpi.template svneol=native#text/plain
compiler/arm/raarm.pas svneol=native#text/plain
compiler/arm/raarmgas.pas svneol=native#text/plain
compiler/arm/rarmcon.inc svneol=native#text/plain
compiler/arm/rarmdwa.inc svneol=native#text/plain
compiler/arm/rarmnor.inc svneol=native#text/plain
compiler/arm/rarmnum.inc svneol=native#text/plain
compiler/arm/rarmrni.inc svneol=native#text/plain
compiler/arm/rarmsri.inc svneol=native#text/plain
compiler/arm/rarmsta.inc svneol=native#text/plain
compiler/arm/rarmstd.inc svneol=native#text/plain
compiler/arm/rarmsup.inc svneol=native#text/plain
compiler/arm/rgcpu.pas svneol=native#text/plain
compiler/asmutils.pas svneol=native#text/plain
compiler/assemble.pas svneol=native#text/plain
compiler/avr/aasmcpu.pas svneol=native#text/plain
compiler/avr/agavrgas.pas svneol=native#text/plain
compiler/avr/aoptcpu.pas svneol=native#text/plain
compiler/avr/aoptcpub.pas svneol=native#text/plain
compiler/avr/aoptcpud.pas svneol=native#text/plain
compiler/avr/avrreg.dat svneol=native#text/plain
compiler/avr/cgcpu.pas svneol=native#text/plain
compiler/avr/cpubase.pas svneol=native#text/plain
compiler/avr/cpuinfo.pas svneol=native#text/plain
compiler/avr/cpunode.pas svneol=native#text/plain
compiler/avr/cpupara.pas svneol=native#text/plain
compiler/avr/cpupi.pas svneol=native#text/plain
compiler/avr/cputarg.pas svneol=native#text/plain
compiler/avr/hlcgcpu.pas svneol=native#text/plain
compiler/avr/itcpugas.pas svneol=native#text/plain
compiler/avr/navradd.pas svneol=native#text/plain
compiler/avr/navrcnv.pas svneol=native#text/plain
compiler/avr/navrmat.pas svneol=native#text/plain
compiler/avr/raavr.pas svneol=native#text/plain
compiler/avr/raavrgas.pas svneol=native#text/plain
compiler/avr/ravrcon.inc svneol=native#text/plain
compiler/avr/ravrdwa.inc svneol=native#text/plain
compiler/avr/ravrnor.inc svneol=native#text/plain
compiler/avr/ravrnum.inc svneol=native#text/plain
compiler/avr/ravrrni.inc svneol=native#text/plain
compiler/avr/ravrsri.inc svneol=native#text/plain
compiler/avr/ravrsta.inc svneol=native#text/plain
compiler/avr/ravrstd.inc svneol=native#text/plain
compiler/avr/ravrsup.inc svneol=native#text/plain
compiler/avr/rgcpu.pas svneol=native#text/plain
compiler/browcol.pas svneol=native#text/plain
compiler/bsdcompile -text
compiler/catch.pas svneol=native#text/plain
compiler/ccharset.pas svneol=native#text/plain
compiler/cclasses.pas svneol=native#text/plain
compiler/cfidwarf.pas svneol=native#text/plain
compiler/cfileutl.pas svneol=native#text/plain
compiler/cg64f32.pas svneol=native#text/plain
compiler/cgbase.pas svneol=native#text/plain
compiler/cghlcpu.pas svneol=native#text/plain
compiler/cgobj.pas svneol=native#text/plain
compiler/cgutils.pas svneol=native#text/plain
compiler/cmsgs.pas svneol=native#text/plain
compiler/comphook.pas svneol=native#text/plain
compiler/compiler.pas svneol=native#text/plain
compiler/compinnr.inc svneol=native#text/plain
compiler/comprsrc.pas svneol=native#text/plain
compiler/constexp.pas svneol=native#text/x-pascal
compiler/cp1251.pas svneol=native#text/plain
compiler/cp1252.pp svneol=native#text/plain
compiler/cp437.pas svneol=native#text/plain
compiler/cp646.pas svneol=native#text/pascal
compiler/cp850.pas svneol=native#text/plain
compiler/cp866.pas svneol=native#text/plain
compiler/cp8859_1.pas svneol=native#text/plain
compiler/cp8859_5.pas svneol=native#text/plain
compiler/cpid.pas svneol=native#text/plain
compiler/crefs.pas svneol=native#text/plain
compiler/cresstr.pas svneol=native#text/plain
compiler/cstreams.pas svneol=native#text/plain
compiler/cutils.pas svneol=native#text/plain
compiler/cwindirs.pp svneol=native#text/plain
compiler/dbgbase.pas svneol=native#text/plain
compiler/dbgdwarf.pas svneol=native#text/plain
compiler/dbgstabs.pas svneol=native#text/plain
compiler/dbgstabx.pas svneol=native#text/plain
compiler/defcmp.pas svneol=native#text/plain
compiler/defutil.pas svneol=native#text/plain
compiler/export.pas svneol=native#text/plain
compiler/expunix.pas svneol=native#text/plain
compiler/finput.pas svneol=native#text/plain
compiler/fmodule.pas svneol=native#text/plain
compiler/fpccrc.pas svneol=native#text/plain
compiler/fpcdefs.inc svneol=native#text/plain
compiler/fppu.pas svneol=native#text/plain
compiler/gendef.pas svneol=native#text/plain
compiler/generic/cpuinfo.pas svneol=native#text/plain
compiler/globals.pas svneol=native#text/plain
compiler/globstat.pas svneol=native#text/pascal
compiler/globtype.pas svneol=native#text/plain
compiler/hlcg2ll.pas svneol=native#text/plain
compiler/hlcgobj.pas svneol=native#text/plain
compiler/html/i386/readme.txt svneol=native#text/plain
compiler/html/powerpc/readme.txt svneol=native#text/plain
compiler/htypechk.pas svneol=native#text/plain
compiler/i386/aopt386.pas svneol=native#text/plain
compiler/i386/cgcpu.pas svneol=native#text/plain
compiler/i386/cpubase.inc svneol=native#text/plain
compiler/i386/cpuelf.pas svneol=native#text/plain
compiler/i386/cpuinfo.pas svneol=native#text/plain
compiler/i386/cpunode.pas svneol=native#text/plain
compiler/i386/cpupara.pas svneol=native#text/plain
compiler/i386/cpupi.pas svneol=native#text/plain
compiler/i386/cputarg.pas svneol=native#text/plain
compiler/i386/csopt386.pas svneol=native#text/plain
compiler/i386/daopt386.pas svneol=native#text/plain
compiler/i386/hlcgcpu.pas svneol=native#text/plain
compiler/i386/i386att.inc svneol=native#text/plain
compiler/i386/i386atts.inc svneol=native#text/plain
compiler/i386/i386int.inc svneol=native#text/plain
compiler/i386/i386nop.inc svneol=native#text/plain
compiler/i386/i386op.inc svneol=native#text/plain
compiler/i386/i386prop.inc svneol=native#text/plain
compiler/i386/i386tab.inc svneol=native#text/plain
compiler/i386/n386add.pas svneol=native#text/plain
compiler/i386/n386cal.pas svneol=native#text/plain
compiler/i386/n386inl.pas svneol=native#text/plain
compiler/i386/n386mat.pas svneol=native#text/plain
compiler/i386/n386mem.pas svneol=native#text/plain
compiler/i386/n386set.pas svneol=native#text/plain
compiler/i386/popt386.pas svneol=native#text/plain
compiler/i386/r386ari.inc svneol=native#text/plain
compiler/i386/r386att.inc svneol=native#text/plain
compiler/i386/r386con.inc svneol=native#text/plain
compiler/i386/r386dwrf.inc svneol=native#text/plain
compiler/i386/r386int.inc svneol=native#text/plain
compiler/i386/r386iri.inc svneol=native#text/plain
compiler/i386/r386nasm.inc svneol=native#text/plain
compiler/i386/r386nor.inc svneol=native#text/plain
compiler/i386/r386nri.inc svneol=native#text/plain
compiler/i386/r386num.inc svneol=native#text/plain
compiler/i386/r386op.inc svneol=native#text/plain
compiler/i386/r386ot.inc svneol=native#text/plain
compiler/i386/r386rni.inc svneol=native#text/plain
compiler/i386/r386sri.inc svneol=native#text/plain
compiler/i386/r386stab.inc svneol=native#text/plain
compiler/i386/r386std.inc svneol=native#text/plain
compiler/i386/ra386att.pas svneol=native#text/plain
compiler/i386/ra386int.pas svneol=native#text/plain
compiler/i386/rgcpu.pas svneol=native#text/plain
compiler/i386/rropt386.pas svneol=native#text/plain
compiler/ia64/aasmcpu.pas svneol=native#text/plain
compiler/ia64/cpubase.pas svneol=native#text/plain
compiler/ia64/cpuinfo.pas svneol=native#text/plain
compiler/ia64/ia64reg.dat svneol=native#text/plain
compiler/impdef.pas svneol=native#text/plain
compiler/import.pas svneol=native#text/plain
compiler/jvm/aasmcpu.pas svneol=native#text/plain
compiler/jvm/cgcpu.pas svneol=native#text/plain
compiler/jvm/cpubase.pas svneol=native#text/plain
compiler/jvm/cpuinfo.pas svneol=native#text/plain
compiler/jvm/cpunode.pas svneol=native#text/plain
compiler/jvm/cpupara.pas svneol=native#text/plain
compiler/jvm/cpupi.pas svneol=native#text/plain
compiler/jvm/cputarg.pas svneol=native#text/plain
compiler/jvm/dbgjasm.pas svneol=native#text/plain
compiler/jvm/hlcgcpu.pas svneol=native#text/plain
compiler/jvm/itcpujas.pas svneol=native#text/plain
compiler/jvm/jvmdef.pas svneol=native#text/plain
compiler/jvm/jvmreg.dat svneol=native#text/plain
compiler/jvm/njvmadd.pas svneol=native#text/plain
compiler/jvm/njvmcal.pas svneol=native#text/plain
compiler/jvm/njvmcnv.pas svneol=native#text/plain
compiler/jvm/njvmcon.pas svneol=native#text/plain
compiler/jvm/njvmflw.pas svneol=native#text/plain
compiler/jvm/njvminl.pas svneol=native#text/plain
compiler/jvm/njvmld.pas svneol=native#text/plain
compiler/jvm/njvmmat.pas svneol=native#text/plain
compiler/jvm/njvmmem.pas svneol=native#text/plain
compiler/jvm/njvmset.pas svneol=native#text/plain
compiler/jvm/njvmtcon.pas svneol=native#text/plain
compiler/jvm/njvmutil.pas svneol=native#text/plain
compiler/jvm/pjvm.pas svneol=native#text/plain
compiler/jvm/rgcpu.pas svneol=native#text/plain
compiler/jvm/rjvmcon.inc svneol=native#text/plain
compiler/jvm/rjvmnor.inc svneol=native#text/plain
compiler/jvm/rjvmnum.inc svneol=native#text/plain
compiler/jvm/rjvmrni.inc svneol=native#text/plain
compiler/jvm/rjvmsri.inc svneol=native#text/plain
compiler/jvm/rjvmstd.inc svneol=native#text/plain
compiler/jvm/rjvmsup.inc svneol=native#text/plain
compiler/jvm/tgcpu.pas svneol=native#text/plain
compiler/ldscript.pas svneol=native#text/plain
compiler/link.pas svneol=native#text/plain
compiler/m68k/aasmcpu.pas svneol=native#text/plain
compiler/m68k/ag68kgas.pas svneol=native#text/plain
compiler/m68k/aoptcpu.pas svneol=native#text/plain
compiler/m68k/aoptcpub.pas svneol=native#text/plain
compiler/m68k/aoptcpud.pas svneol=native#text/plain
compiler/m68k/cgcpu.pas svneol=native#text/plain
compiler/m68k/cpuasm.pas svneol=native#text/plain
compiler/m68k/cpubase.pas svneol=native#text/plain
compiler/m68k/cpuinfo.pas svneol=native#text/plain
compiler/m68k/cpunode.pas svneol=native#text/plain
compiler/m68k/cpupara.pas svneol=native#text/plain
compiler/m68k/cpupi.pas svneol=native#text/plain
compiler/m68k/cputarg.pas svneol=native#text/plain
compiler/m68k/hlcgcpu.pas svneol=native#text/plain
compiler/m68k/itcpugas.pas svneol=native#text/plain
compiler/m68k/m68kreg.dat svneol=native#text/plain
compiler/m68k/n68kadd.pas svneol=native#text/plain
compiler/m68k/n68kcal.pas svneol=native#text/plain
compiler/m68k/n68kcnv.pas svneol=native#text/plain
compiler/m68k/n68kmat.pas svneol=native#text/plain
compiler/m68k/r68kcon.inc svneol=native#text/plain
compiler/m68k/r68kgas.inc svneol=native#text/plain
compiler/m68k/r68kgri.inc svneol=native#text/plain
compiler/m68k/r68knor.inc svneol=native#text/plain
compiler/m68k/r68knum.inc svneol=native#text/plain
compiler/m68k/r68krni.inc svneol=native#text/plain
compiler/m68k/r68ksri.inc svneol=native#text/plain
compiler/m68k/r68ksta.inc svneol=native#text/plain
compiler/m68k/r68kstd.inc svneol=native#text/plain
compiler/m68k/r68ksup.inc svneol=native#text/plain
compiler/m68k/ra68k.pas svneol=native#text/plain
compiler/m68k/ra68kmot.pas svneol=native#text/plain
compiler/m68k/rgcpu.pas svneol=native#text/plain
compiler/macho.pas svneol=native#text/plain
compiler/machoutils.pas svneol=native#text/plain
compiler/mips/aasmcpu.pas svneol=native#text/plain
compiler/mips/aoptcpu.pas svneol=native#text/plain
compiler/mips/aoptcpub.pas svneol=native#text/plain
compiler/mips/aoptcpud.pas svneol=native#text/plain
compiler/mips/cgcpu.pas svneol=native#text/plain
compiler/mips/cpubase.pas svneol=native#text/plain
compiler/mips/cpugas.pas svneol=native#text/plain
compiler/mips/cpuinfo.pas svneol=native#text/plain
compiler/mips/cpunode.pas svneol=native#text/plain
compiler/mips/cpupara.pas svneol=native#text/plain
compiler/mips/cpupi.pas svneol=native#text/plain
compiler/mips/cputarg.pas svneol=native#text/pascal
compiler/mips/hlcgcpu.pas svneol=native#text/plain
compiler/mips/itcpugas.pas svneol=native#text/plain
compiler/mips/mipsreg.dat svneol=native#text/plain
compiler/mips/ncpuadd.pas svneol=native#text/plain
compiler/mips/ncpucall.pas svneol=native#text/pascal
compiler/mips/ncpucnv.pas svneol=native#text/pascal
compiler/mips/ncpuinln.pas svneol=native#text/pascal
compiler/mips/ncpuld.pas svneol=native#text/plain
compiler/mips/ncpumat.pas svneol=native#text/pascal
compiler/mips/ncpuset.pas svneol=native#text/pascal
compiler/mips/opcode.inc svneol=native#text/plain
compiler/mips/racpugas.pas svneol=native#text/plain
compiler/mips/rgcpu.pas svneol=native#text/plain
compiler/mips/rmipscon.inc svneol=native#text/plain
compiler/mips/rmipsdwf.inc svneol=native#text/plain
compiler/mips/rmipsgas.inc svneol=native#text/plain
compiler/mips/rmipsgri.inc svneol=native#text/plain
compiler/mips/rmipsgss.inc svneol=native#text/plain
compiler/mips/rmipsnor.inc svneol=native#text/plain
compiler/mips/rmipsnum.inc svneol=native#text/plain
compiler/mips/rmipsrni.inc svneol=native#text/plain
compiler/mips/rmipssri.inc svneol=native#text/plain
compiler/mips/rmipssta.inc svneol=native#text/plain
compiler/mips/rmipsstd.inc svneol=native#text/plain
compiler/mips/rmipssup.inc svneol=native#text/plain
compiler/mips/strinst.inc svneol=native#text/plain
compiler/msg/errorct.msg svneol=native#text/plain
compiler/msg/errord.msg svneol=native#text/plain
compiler/msg/errorda.msg svneol=native#text/plain
compiler/msg/errordu.msg svneol=native#text/plain
compiler/msg/errore.msg svneol=native#text/plain
compiler/msg/errores.msg svneol=native#text/plain
compiler/msg/errorf.msg svneol=native#text/plain
compiler/msg/errorfi.msg svneol=native#text/plain
compiler/msg/errorhe.msg svneol=native#text/plain
compiler/msg/errorheu.msg svneol=native#text/plain
compiler/msg/errorid.msg svneol=native#text/plain
compiler/msg/erroriu.msg svneol=native#text/plain
compiler/msg/errorn.msg svneol=native#text/plain
compiler/msg/errorpl.msg svneol=native#text/plain
compiler/msg/errorpli.msg svneol=native#text/plain
compiler/msg/errorpt.msg svneol=native#text/plain
compiler/msg/errorptu.msg svneol=native#text/plain
compiler/msg/errorr.msg svneol=native#text/plain
compiler/msg/errorru.msg svneol=native#text/plain
compiler/msg/errorues.msg svneol=native#text/plain
compiler/msgidx.inc svneol=native#text/plain
compiler/msgtxt.inc svneol=native#text/plain
compiler/nadd.pas svneol=native#text/plain
compiler/nbas.pas svneol=native#text/plain
compiler/ncal.pas svneol=native#text/plain
compiler/ncgadd.pas svneol=native#text/plain
compiler/ncgbas.pas svneol=native#text/plain
compiler/ncgcal.pas svneol=native#text/plain
compiler/ncgcnv.pas svneol=native#text/plain
compiler/ncgcon.pas svneol=native#text/plain
compiler/ncgflw.pas svneol=native#text/plain
compiler/ncginl.pas svneol=native#text/plain
compiler/ncgld.pas svneol=native#text/plain
compiler/ncgmat.pas svneol=native#text/plain
compiler/ncgmem.pas svneol=native#text/plain
compiler/ncgnstld.pas svneol=native#text/plain
compiler/ncgnstmm.pas svneol=native#text/plain
compiler/ncgobjc.pas svneol=native#text/plain
compiler/ncgopt.pas svneol=native#text/plain
compiler/ncgrtti.pas svneol=native#text/plain
compiler/ncgset.pas svneol=native#text/plain
compiler/ncgutil.pas svneol=native#text/plain
compiler/ncnv.pas svneol=native#text/plain
compiler/ncon.pas svneol=native#text/plain
compiler/nflw.pas svneol=native#text/plain
compiler/ngenutil.pas svneol=native#text/plain
compiler/ngtcon.pas svneol=native#text/plain
compiler/ninl.pas svneol=native#text/plain
compiler/nld.pas svneol=native#text/plain
compiler/nmat.pas svneol=native#text/plain
compiler/nmem.pas svneol=native#text/plain
compiler/nobj.pas svneol=native#text/plain
compiler/nobjc.pas svneol=native#text/plain
compiler/node.pas svneol=native#text/plain
compiler/nopt.pas svneol=native#text/plain
compiler/nset.pas svneol=native#text/plain
compiler/nstate.pas svneol=native#text/plain
compiler/nutils.pas svneol=native#text/plain
compiler/objcdef.pas svneol=native#text/plain
compiler/objcgutl.pas svneol=native#text/plain
compiler/objcutil.pas svneol=native#text/plain
compiler/ogbase.pas svneol=native#text/plain
compiler/ogcoff.pas svneol=native#text/plain
compiler/ogelf.pas svneol=native#text/plain
compiler/oglx.pas svneol=native#text/plain
compiler/ogmacho.pas svneol=native#text/plain
compiler/ogmap.pas svneol=native#text/plain
compiler/ognlm.pas svneol=native#text/plain
compiler/optbase.pas svneol=native#text/plain
compiler/optcse.pas svneol=native#text/plain
compiler/optdead.pas svneol=native#text/plain
compiler/optdfa.pas svneol=native#text/plain
compiler/options.pas svneol=native#text/plain
compiler/optloop.pas svneol=native#text/plain
compiler/opttail.pas svneol=native#text/plain
compiler/optutils.pas svneol=native#text/plain
compiler/optvirt.pas svneol=native#text/plain
compiler/owar.pas svneol=native#text/plain
compiler/owbase.pas svneol=native#text/plain
compiler/parabase.pas svneol=native#text/plain
compiler/paramgr.pas svneol=native#text/plain
compiler/parser.pas svneol=native#text/plain
compiler/pass_1.pas svneol=native#text/plain
compiler/pass_2.pas svneol=native#text/plain
compiler/pbase.pas svneol=native#text/plain
compiler/pdecl.pas svneol=native#text/plain
compiler/pdecobj.pas svneol=native#text/plain
compiler/pdecsub.pas svneol=native#text/plain
compiler/pdecvar.pas svneol=native#text/plain
compiler/pexports.pas svneol=native#text/plain
compiler/pexpr.pas svneol=native#text/plain
compiler/pgenutil.pas svneol=native#text/pascal
compiler/pinline.pas svneol=native#text/plain
compiler/pmodules.pas svneol=native#text/plain
compiler/powerpc/agppcmpw.pas svneol=native#text/plain
compiler/powerpc/agppcvasm.pas svneol=native#text/plain
compiler/powerpc/aoptcpu.pas svneol=native#text/plain
compiler/powerpc/aoptcpub.pas svneol=native#text/plain
compiler/powerpc/aoptcpuc.pas svneol=native#text/plain
compiler/powerpc/aoptcpud.pas svneol=native#text/plain
compiler/powerpc/cgcpu.pas svneol=native#text/plain
compiler/powerpc/cpubase.pas svneol=native#text/plain
compiler/powerpc/cpuinfo.pas svneol=native#text/plain
compiler/powerpc/cpunode.pas svneol=native#text/plain
compiler/powerpc/cpupara.pas svneol=native#text/plain
compiler/powerpc/cpupi.pas svneol=native#text/plain
compiler/powerpc/cputarg.pas svneol=native#text/plain
compiler/powerpc/hlcgcpu.pas svneol=native#text/plain
compiler/powerpc/itcpugas.pas svneol=native#text/plain
compiler/powerpc/nppcadd.pas svneol=native#text/plain
compiler/powerpc/nppccal.pas svneol=native#text/plain
compiler/powerpc/nppccnv.pas svneol=native#text/plain
compiler/powerpc/nppcmat.pas svneol=native#text/plain
compiler/powerpc/ppcins.dat svneol=native#text/plain
compiler/powerpc/ppcreg.dat svneol=native#text/plain
compiler/powerpc/rappc.pas svneol=native#text/plain
compiler/powerpc/rappcgas.pas svneol=native#text/plain
compiler/powerpc/rppccon.inc svneol=native#text/plain
compiler/powerpc/rppcdwrf.inc svneol=native#text/plain
compiler/powerpc/rppcgas.inc svneol=native#text/plain
compiler/powerpc/rppcgri.inc svneol=native#text/plain
compiler/powerpc/rppcgss.inc svneol=native#text/plain
compiler/powerpc/rppcmot.inc svneol=native#text/plain
compiler/powerpc/rppcmri.inc svneol=native#text/plain
compiler/powerpc/rppcnor.inc svneol=native#text/plain
compiler/powerpc/rppcnum.inc svneol=native#text/plain
compiler/powerpc/rppcrni.inc svneol=native#text/plain
compiler/powerpc/rppcsri.inc svneol=native#text/plain
compiler/powerpc/rppcstab.inc svneol=native#text/plain
compiler/powerpc/rppcstd.inc svneol=native#text/plain
compiler/powerpc/rppcsup.inc svneol=native#text/plain
compiler/powerpc64/aoptcpu.pas svneol=native#text/plain
compiler/powerpc64/aoptcpub.pas svneol=native#text/plain
compiler/powerpc64/aoptcpuc.pas svneol=native#text/plain
compiler/powerpc64/aoptcpud.pas svneol=native#text/plain
compiler/powerpc64/cgcpu.pas svneol=native#text/plain
compiler/powerpc64/cpubase.pas svneol=native#text/plain
compiler/powerpc64/cpuinfo.pas svneol=native#text/plain
compiler/powerpc64/cpunode.pas svneol=native#text/plain
compiler/powerpc64/cpupara.pas svneol=native#text/plain
compiler/powerpc64/cpupi.pas svneol=native#text/plain
compiler/powerpc64/cputarg.pas svneol=native#text/plain
compiler/powerpc64/hlcgcpu.pas svneol=native#text/plain
compiler/powerpc64/itcpugas.pas svneol=native#text/plain
compiler/powerpc64/nppcadd.pas svneol=native#text/plain
compiler/powerpc64/nppccal.pas svneol=native#text/plain
compiler/powerpc64/nppccnv.pas svneol=native#text/plain
compiler/powerpc64/nppcld.pas svneol=native#text/plain
compiler/powerpc64/nppcmat.pas svneol=native#text/plain
compiler/powerpc64/ppcins.dat svneol=native#text/plain
compiler/powerpc64/ppcreg.dat svneol=native#text/plain
compiler/powerpc64/rappc.pas svneol=native#text/plain
compiler/powerpc64/rappcgas.pas svneol=native#text/plain
compiler/powerpc64/rppccon.inc svneol=native#text/plain
compiler/powerpc64/rppcdwrf.inc svneol=native#text/plain
compiler/powerpc64/rppcgas.inc svneol=native#text/plain
compiler/powerpc64/rppcgri.inc svneol=native#text/plain
compiler/powerpc64/rppcgss.inc svneol=native#text/plain
compiler/powerpc64/rppcmot.inc svneol=native#text/plain
compiler/powerpc64/rppcmri.inc svneol=native#text/plain
compiler/powerpc64/rppcnor.inc svneol=native#text/plain
compiler/powerpc64/rppcnum.inc svneol=native#text/plain
compiler/powerpc64/rppcrni.inc svneol=native#text/plain
compiler/powerpc64/rppcsri.inc svneol=native#text/plain
compiler/powerpc64/rppcstab.inc svneol=native#text/plain
compiler/powerpc64/rppcstd.inc svneol=native#text/plain
compiler/powerpc64/rppcsup.inc svneol=native#text/plain
compiler/pp.lpi svneol=native#text/plain
compiler/pp.pas svneol=native#text/plain
compiler/pparautl.pas svneol=native#text/plain
compiler/ppc68k.lpi svneol=native#text/plain
compiler/ppcarm.lpi svneol=native#text/plain
compiler/ppcavr.lpi svneol=native#text/plain
compiler/ppcgen/aasmcpu.pas svneol=native#text/plain
compiler/ppcgen/agppcgas.pas svneol=native#text/plain
compiler/ppcgen/cgppc.pas svneol=native#text/plain
compiler/ppcgen/hlcgppc.pas svneol=native#text/plain
compiler/ppcgen/ngppcadd.pas svneol=native#text/plain
compiler/ppcgen/ngppccnv.pas svneol=native#text/plain
compiler/ppcgen/ngppcinl.pas svneol=native#text/plain
compiler/ppcgen/ngppcset.pas svneol=native#text/plain
compiler/ppcgen/rgcpu.pas svneol=native#text/plain
compiler/ppcmips.lpi svneol=native#text/plain
compiler/ppcmipsel.lpi svneol=native#text/plain
compiler/ppcppc.lpi svneol=native#text/plain
compiler/ppcppc64.lpi svneol=native#text/plain
compiler/ppcsparc.lpi svneol=native#text/plain
compiler/ppheap.pas svneol=native#text/plain
compiler/ppu.pas svneol=native#text/plain
compiler/ppx86_64.lpi svneol=native#text/plain
compiler/procinfo.pas svneol=native#text/plain
compiler/pstatmnt.pas svneol=native#text/plain
compiler/psub.pas svneol=native#text/plain
compiler/psystem.pas svneol=native#text/plain
compiler/ptconst.pas svneol=native#text/plain
compiler/ptype.pas svneol=native#text/plain
compiler/raatt.pas svneol=native#text/plain
compiler/rabase.pas svneol=native#text/plain
compiler/rasm.pas svneol=native#text/plain
compiler/rautils.pas svneol=native#text/plain
compiler/regvars.pas svneol=native#text/plain
compiler/rescmn.pas svneol=native#text/plain
compiler/rgbase.pas svneol=native#text/plain
compiler/rgobj.pas svneol=native#text/plain
compiler/scandir.pas svneol=native#text/plain
compiler/scanner.pas svneol=native#text/plain
compiler/script.pas svneol=native#text/plain
compiler/sparc/aasmcpu.pas svneol=native#text/plain
compiler/sparc/aoptcpu.pas svneol=native#text/plain
compiler/sparc/aoptcpub.pas svneol=native#text/plain
compiler/sparc/aoptcpud.pas svneol=native#text/plain
compiler/sparc/cgcpu.pas svneol=native#text/plain
compiler/sparc/cpubase.pas svneol=native#text/plain
compiler/sparc/cpuelf.pas svneol=native#text/plain
compiler/sparc/cpugas.pas svneol=native#text/plain
compiler/sparc/cpuinfo.pas svneol=native#text/plain
compiler/sparc/cpunode.pas svneol=native#text/plain
compiler/sparc/cpupara.pas svneol=native#text/plain
compiler/sparc/cpupi.pas svneol=native#text/plain
compiler/sparc/cputarg.pas svneol=native#text/plain
compiler/sparc/hlcgcpu.pas svneol=native#text/plain
compiler/sparc/itcpugas.pas svneol=native#text/plain
compiler/sparc/ncpuadd.pas svneol=native#text/plain
compiler/sparc/ncpucall.pas svneol=native#text/plain
compiler/sparc/ncpucnv.pas svneol=native#text/plain
compiler/sparc/ncpuinln.pas svneol=native#text/plain
compiler/sparc/ncpumat.pas svneol=native#text/plain
compiler/sparc/ncpuset.pas svneol=native#text/plain
compiler/sparc/opcode.inc svneol=native#text/plain
compiler/sparc/racpu.pas svneol=native#text/plain
compiler/sparc/racpugas.pas svneol=native#text/plain
compiler/sparc/rgcpu.pas svneol=native#text/plain
compiler/sparc/rspcon.inc svneol=native#text/plain
compiler/sparc/rspdwrf.inc svneol=native#text/plain
compiler/sparc/rspnor.inc svneol=native#text/plain
compiler/sparc/rspnum.inc svneol=native#text/plain
compiler/sparc/rsprni.inc svneol=native#text/plain
compiler/sparc/rspsri.inc svneol=native#text/plain
compiler/sparc/rspstab.inc svneol=native#text/plain
compiler/sparc/rspstd.inc svneol=native#text/plain
compiler/sparc/rspsup.inc svneol=native#text/plain
compiler/sparc/spreg.dat svneol=native#text/plain
compiler/sparc/strinst.inc svneol=native#text/plain
compiler/switches.pas svneol=native#text/plain
compiler/symbase.pas svneol=native#text/plain
compiler/symconst.pas svneol=native#text/plain
compiler/symcreat.pas svneol=native#text/plain
compiler/symdef.pas svneol=native#text/plain
compiler/symnot.pas svneol=native#text/plain
compiler/symsym.pas svneol=native#text/plain
compiler/symtable.pas svneol=native#text/plain
compiler/symtype.pas svneol=native#text/plain
compiler/symutil.pas svneol=native#text/plain
compiler/systems.inc svneol=native#text/plain
compiler/systems.pas svneol=native#text/plain
compiler/systems/i_aix.pas svneol=native#text/plain
compiler/systems/i_amiga.pas svneol=native#text/plain
compiler/systems/i_atari.pas svneol=native#text/plain
compiler/systems/i_beos.pas svneol=native#text/plain
compiler/systems/i_bsd.pas svneol=native#text/plain
compiler/systems/i_embed.pas svneol=native#text/plain
compiler/systems/i_emx.pas svneol=native#text/plain
compiler/systems/i_gba.pas svneol=native#text/plain
compiler/systems/i_go32v2.pas svneol=native#text/plain
compiler/systems/i_haiku.pas svneol=native#text/plain
compiler/systems/i_jvm.pas svneol=native#text/plain
compiler/systems/i_linux.pas svneol=native#text/plain
compiler/systems/i_macos.pas svneol=native#text/plain
compiler/systems/i_morph.pas svneol=native#text/plain
compiler/systems/i_nativent.pas svneol=native#text/pascal
compiler/systems/i_nds.pas svneol=native#text/plain
compiler/systems/i_nwl.pas svneol=native#text/plain
compiler/systems/i_nwm.pas svneol=native#text/plain
compiler/systems/i_os2.pas svneol=native#text/plain
compiler/systems/i_palmos.pas svneol=native#text/plain
compiler/systems/i_sunos.pas svneol=native#text/plain
compiler/systems/i_symbian.pas svneol=native#text/plain
compiler/systems/i_watcom.pas svneol=native#text/plain
compiler/systems/i_wdosx.pas svneol=native#text/plain
compiler/systems/i_wii.pas svneol=native#text/plain
compiler/systems/i_win.pas svneol=native#text/plain
compiler/systems/mac_crea.txt svneol=native#text/plain
compiler/systems/t_aix.pas svneol=native#text/plain
compiler/systems/t_amiga.pas svneol=native#text/plain
compiler/systems/t_atari.pas svneol=native#text/plain
compiler/systems/t_beos.pas svneol=native#text/plain
compiler/systems/t_bsd.pas svneol=native#text/plain
compiler/systems/t_embed.pas svneol=native#text/plain
compiler/systems/t_emx.pas svneol=native#text/plain
compiler/systems/t_gba.pas svneol=native#text/plain
compiler/systems/t_go32v2.pas svneol=native#text/plain
compiler/systems/t_haiku.pas svneol=native#text/plain
compiler/systems/t_jvm.pas svneol=native#text/plain
compiler/systems/t_linux.pas svneol=native#text/plain
compiler/systems/t_macos.pas svneol=native#text/plain
compiler/systems/t_morph.pas svneol=native#text/plain
compiler/systems/t_nativent.pas svneol=native#text/pascal
compiler/systems/t_nds.pas svneol=native#text/plain
compiler/systems/t_nwl.pas svneol=native#text/plain
compiler/systems/t_nwm.pas svneol=native#text/plain
compiler/systems/t_os2.pas svneol=native#text/plain
compiler/systems/t_palmos.pas svneol=native#text/plain
compiler/systems/t_sunos.pas svneol=native#text/plain
compiler/systems/t_symbian.pas svneol=native#text/plain
compiler/systems/t_watcom.pas svneol=native#text/plain
compiler/systems/t_wdosx.pas svneol=native#text/plain
compiler/systems/t_wii.pas svneol=native#text/plain
compiler/systems/t_win.pas svneol=native#text/plain
compiler/tgobj.pas svneol=native#text/plain
compiler/tokens.pas svneol=native#text/plain
compiler/utils/Makefile svneol=native#text/plain
compiler/utils/Makefile.fpc svneol=native#text/plain
compiler/utils/README.txt svneol=native#text/plain
compiler/utils/dummyas.pp svneol=native#text/plain
compiler/utils/fixlog.pp svneol=native#text/plain
compiler/utils/fixmsg.pp svneol=native#text/plain
compiler/utils/fixnasm.pp svneol=native#text/plain
compiler/utils/fixtab.pp svneol=native#text/plain
compiler/utils/fpc.mpw svneol=native#text/plain
compiler/utils/fpc.pp svneol=native#text/plain
compiler/utils/fpcsubst.pp svneol=native#text/plain
compiler/utils/fpimpdef.pp svneol=native#text/plain
compiler/utils/gia64reg.pp svneol=native#text/plain
compiler/utils/gppc386.pp svneol=native#text/plain
compiler/utils/mk68kreg.pp svneol=native#text/plain
compiler/utils/mkarmins.pp svneol=native#text/plain
compiler/utils/mkarmreg.pp svneol=native#text/plain
compiler/utils/mkavrreg.pp svneol=native#text/plain
compiler/utils/mkia64reg.pp svneol=native#text/pascal
compiler/utils/mkjvmreg.pp svneol=native#text/plain
compiler/utils/mkmpsreg.pp svneol=native#text/plain
compiler/utils/mkppcreg.pp svneol=native#text/plain
compiler/utils/mkspreg.pp svneol=native#text/plain
compiler/utils/mkx86ins.pp svneol=native#text/plain
compiler/utils/mkx86reg.pp svneol=native#text/plain
compiler/utils/msg2inc.pp svneol=native#text/plain
compiler/utils/msgdif.pp svneol=native#text/plain
compiler/utils/msgused.pl svneol=native#text/plain
compiler/utils/ppudump.pp svneol=native#text/plain
compiler/utils/ppufiles.pp svneol=native#text/plain
compiler/utils/ppumove.pp svneol=native#text/plain
compiler/utils/samplecfg svneol=native#text/plain
compiler/utils/usubst.pp svneol=native#text/plain
compiler/verbose.pas svneol=native#text/plain
compiler/version.pas svneol=native#text/plain
compiler/vis/aasmcpu.pas svneol=native#text/plain
compiler/vis/cpubase.pas svneol=native#text/plain
compiler/vis/cpuinfo.pas svneol=native#text/plain
compiler/vis/cpunode.pas svneol=native#text/plain
compiler/vis/cpupara.pas svneol=native#text/plain
compiler/widestr.pas svneol=native#text/plain
compiler/wpo.pas svneol=native#text/plain
compiler/wpobase.pas svneol=native#text/plain
compiler/wpoinfo.pas svneol=native#text/plain
compiler/x86/aasmcpu.pas svneol=native#text/plain
compiler/x86/agx86att.pas svneol=native#text/plain
compiler/x86/agx86int.pas svneol=native#text/plain
compiler/x86/agx86nsm.pas svneol=native#text/plain
compiler/x86/cga.pas svneol=native#text/plain
compiler/x86/cgx86.pas svneol=native#text/plain
compiler/x86/cpubase.pas svneol=native#text/plain
compiler/x86/hlcgx86.pas svneol=native#text/plain
compiler/x86/itcpugas.pas svneol=native#text/plain
compiler/x86/itx86int.pas svneol=native#text/plain
compiler/x86/nx86add.pas svneol=native#text/plain
compiler/x86/nx86cal.pas svneol=native#text/plain
compiler/x86/nx86cnv.pas svneol=native#text/plain
compiler/x86/nx86con.pas svneol=native#text/plain
compiler/x86/nx86inl.pas svneol=native#text/plain
compiler/x86/nx86mat.pas svneol=native#text/plain
compiler/x86/nx86mem.pas svneol=native#text/plain
compiler/x86/nx86set.pas svneol=native#text/plain
compiler/x86/rax86.pas svneol=native#text/plain
compiler/x86/rax86att.pas svneol=native#text/plain
compiler/x86/rax86int.pas svneol=native#text/plain
compiler/x86/rgx86.pas svneol=native#text/plain
compiler/x86/x86ins.dat svneol=native#text/plain
compiler/x86/x86reg.dat svneol=native#text/plain
compiler/x86_64/aoptcpu.pas svneol=native#text/plain
compiler/x86_64/aoptcpub.pas svneol=native#text/plain
compiler/x86_64/aoptcpud.pas svneol=native#text/plain
compiler/x86_64/cgcpu.pas svneol=native#text/plain
compiler/x86_64/cpubase.inc svneol=native#text/plain
compiler/x86_64/cpuelf.pas svneol=native#text/plain
compiler/x86_64/cpuinfo.pas svneol=native#text/plain
compiler/x86_64/cpunode.pas svneol=native#text/plain
compiler/x86_64/cpupara.pas svneol=native#text/plain
compiler/x86_64/cpupi.pas svneol=native#text/plain
compiler/x86_64/cputarg.pas svneol=native#text/plain
compiler/x86_64/hlcgcpu.pas svneol=native#text/plain
compiler/x86_64/nx64add.pas svneol=native#text/plain
compiler/x86_64/nx64cal.pas svneol=native#text/plain
compiler/x86_64/nx64cnv.pas svneol=native#text/plain
compiler/x86_64/nx64flw.pas svneol=native#text/plain
compiler/x86_64/nx64inl.pas svneol=native#text/plain
compiler/x86_64/nx64mat.pas svneol=native#text/plain
compiler/x86_64/r8664ari.inc svneol=native#text/plain
compiler/x86_64/r8664att.inc svneol=native#text/plain
compiler/x86_64/r8664con.inc svneol=native#text/plain
compiler/x86_64/r8664dwrf.inc svneol=native#text/plain
compiler/x86_64/r8664int.inc svneol=native#text/plain
compiler/x86_64/r8664iri.inc svneol=native#text/plain
compiler/x86_64/r8664nor.inc svneol=native#text/plain
compiler/x86_64/r8664num.inc svneol=native#text/plain
compiler/x86_64/r8664op.inc svneol=native#text/plain
compiler/x86_64/r8664ot.inc svneol=native#text/plain
compiler/x86_64/r8664rni.inc svneol=native#text/plain
compiler/x86_64/r8664sri.inc svneol=native#text/plain
compiler/x86_64/r8664stab.inc svneol=native#text/plain
compiler/x86_64/r8664std.inc svneol=native#text/plain
compiler/x86_64/rax64att.pas svneol=native#text/plain
compiler/x86_64/rax64int.pas svneol=native#text/plain
compiler/x86_64/rgcpu.pas svneol=native#text/plain
compiler/x86_64/win64unw.pas svneol=native#text/plain
compiler/x86_64/x8664ats.inc svneol=native#text/plain
compiler/x86_64/x8664att.inc svneol=native#text/plain
compiler/x86_64/x8664int.inc svneol=native#text/plain
compiler/x86_64/x8664nop.inc svneol=native#text/plain
compiler/x86_64/x8664op.inc svneol=native#text/plain
compiler/x86_64/x8664pro.inc svneol=native#text/plain
compiler/x86_64/x8664tab.inc svneol=native#text/plain
ide/Makefile svneol=native#text/plain
ide/Makefile.fpc svneol=native#text/plain
ide/README.txt svneol=native#text/plain
ide/TODO.txt svneol=native#text/plain
ide/compiler/Makefile svneol=native#text/plain
ide/compiler/Makefile.fpc svneol=native#text/plain
ide/compiler/compunit.pas svneol=native#text/plain
ide/cvsco.tdf -text
ide/cvsdiff.tdf -text
ide/cvsup.tdf -text
ide/empty.inc svneol=native#text/plain
ide/fakegdb/Makefile svneol=native#text/plain
ide/fakegdb/Makefile.fpc svneol=native#text/plain
ide/fakegdb/gdbcon.pas svneol=native#text/plain
ide/fakegdb/gdbint.pas svneol=native#text/plain
ide/fp.ans -text
ide/fp.pas svneol=native#text/plain
ide/fp.term -text svneol=unset#application/octet-stream
ide/fp32.ico -text
ide/fp32.rc -text
ide/fpcalc.pas svneol=native#text/plain
ide/fpcatch.pas svneol=native#text/plain
ide/fpcodcmp.pas svneol=native#text/plain
ide/fpcodtmp.pas svneol=native#text/plain
ide/fpcompil.pas svneol=native#text/plain
ide/fpconst.pas svneol=native#text/plain
ide/fpcygwin.pas svneol=native#text/plain
ide/fpdebug.pas svneol=native#text/plain
ide/fpdesk.pas svneol=native#text/plain
ide/fpdpansi.pas svneol=native#text/plain
ide/fpevalw.pas svneol=native#text/plain
ide/fphelp.pas svneol=native#text/plain
ide/fpide.pas svneol=native#text/plain
ide/fpini.pas svneol=native#text/plain
ide/fpintf.pas svneol=native#text/plain
ide/fpkeys.pas svneol=native#text/plain
ide/fpmansi.inc svneol=native#text/plain
ide/fpmcomp.inc svneol=native#text/plain
ide/fpmdebug.inc svneol=native#text/plain
ide/fpmedit.inc svneol=native#text/plain
ide/fpmfile.inc svneol=native#text/plain
ide/fpmhelp.inc svneol=native#text/plain
ide/fpmingw.pas svneol=native#text/plain
ide/fpmopts.inc svneol=native#text/plain
ide/fpmrun.inc svneol=native#text/plain
ide/fpmsrch.inc svneol=native#text/plain
ide/fpmtools.inc svneol=native#text/plain
ide/fpmwnd.inc svneol=native#text/plain
ide/fpredir.pas svneol=native#text/plain
ide/fpregs.pas svneol=native#text/plain
ide/fpswitch.pas svneol=native#text/plain
ide/fpsymbol.pas svneol=native#text/plain
ide/fptemplt.pas svneol=native#text/plain
ide/fptools.pas svneol=native#text/plain
ide/fpusrscr.pas svneol=native#text/plain
ide/fputils.pas svneol=native#text/plain
ide/fpvars.pas svneol=native#text/plain
ide/fpviews.pas svneol=native#text/plain
ide/fpw32.rc -text
ide/globdir.inc svneol=native#text/plain
ide/gplprog.pt -text
ide/gplunit.pt -text
ide/grep.tdf -text
ide/pmode.pas svneol=native#text/plain
ide/program.pt -text
ide/readme.ide -text
ide/test.pas svneol=native#text/plain
ide/test1.pas svneol=native#text/plain
ide/test2.pas svneol=native#text/plain
ide/tpgrep.tdf -text
ide/unit.pt -text
ide/vesa.pas svneol=native#text/plain
ide/wansi.pas svneol=native#text/plain
ide/wcedit.pas svneol=native#text/plain
ide/wchmhwrap.pas svneol=native#text/plain
ide/wconsole.pas svneol=native#text/plain
ide/wconsts.pas svneol=native#text/plain
ide/wconstse.inc svneol=native#text/plain
ide/wconstsh.inc svneol=native#text/plain
ide/weditor.pas svneol=native#text/plain
ide/whelp.pas svneol=native#text/plain
ide/whlpview.pas svneol=native#text/plain
ide/whtml.pas svneol=native#text/plain
ide/whtmlhlp.pas svneol=native#text/plain
ide/whtmlscn.pas svneol=native#text/plain
ide/winclip.pas svneol=native#text/plain
ide/windebug.pas svneol=native#text/plain
ide/wini.pas svneol=native#text/plain
ide/wnghelp.pas svneol=native#text/plain
ide/woahelp.pas svneol=native#text/plain
ide/wos2help.pas svneol=native#text/plain
ide/wresourc.pas svneol=native#text/plain
ide/wtphwrit.pas svneol=native#text/plain
ide/wutils.pas svneol=native#text/plain
ide/wviews.pas svneol=native#text/plain
ide/wvphelp.pas svneol=native#text/plain
ide/wwinhelp.pas svneol=native#text/plain
installer/Makefile svneol=native#text/plain
installer/Makefile.fpc svneol=native#text/plain
installer/install.dat svneol=native#text/plain
installer/install.def -text
installer/install.pas svneol=native#text/plain
installer/insthelp.pas svneol=native#text/plain
installer/makelink.pas svneol=native#text/plain
installer/scroll.pas svneol=native#text/plain
installer/winshell.pas svneol=native#text/plain
installer/writeidx.pas svneol=native#text/plain
packages/Makefile svneol=native#text/plain
packages/Makefile.fpc svneol=native#text/plain
packages/Makefile.fpc.fpcmake svneol=native#text/plain
packages/a52/Makefile svneol=native#text/plain
packages/a52/Makefile.fpc svneol=native#text/plain
packages/a52/Makefile.fpc.fpcmake svneol=native#text/plain
packages/a52/fpmake.pp svneol=native#text/plain
packages/a52/src/a52.pas svneol=native#text/plain
packages/amunits/Makefile svneol=native#text/plain
packages/amunits/Makefile.fpc svneol=native#text/plain
packages/amunits/Makefile.fpc.fpcmake svneol=native#text/plain
packages/amunits/README.txt svneol=native#text/plain
packages/amunits/examples/asltest.pas svneol=native#text/plain
packages/amunits/examples/bezier.pas svneol=native#text/plain
packages/amunits/examples/bezier2.pas svneol=native#text/plain
packages/amunits/examples/checkmem.pas svneol=native#text/plain
packages/amunits/examples/deviceinfo.pas svneol=native#text/plain
packages/amunits/examples/dirdemo.pas svneol=native#text/plain
packages/amunits/examples/easter.pas svneol=native#text/plain
packages/amunits/examples/easygadtools.pas svneol=native#text/plain
packages/amunits/examples/getdate.pas svneol=native#text/plain
packages/amunits/examples/getfontasl.pas svneol=native#text/plain
packages/amunits/examples/getmultifiles.pas svneol=native#text/plain
packages/amunits/examples/gtmenu.pas svneol=native#text/plain
packages/amunits/examples/imagegadget.pas svneol=native#text/plain
packages/amunits/examples/listtest.pas svneol=native#text/plain
packages/amunits/examples/moire.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/amarqueetest.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/bestmodeid.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/checkbox.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/demo.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/envprint.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/gadgetdemo.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/gttest.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/linklib.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/listview.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/modelist.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/openpip.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/openscreen.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/p96checkboards.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/palette.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/progindex.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/requestmodeid.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/rtdemo.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/scroller.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/slider.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/smallplay.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/string.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/symbol.blue svneol=native#text/plain
packages/amunits/examples/otherlibs/symbol.green svneol=native#text/plain
packages/amunits/examples/otherlibs/symbol.red svneol=native#text/plain
packages/amunits/examples/otherlibs/toolmanager1.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/toolmanager2.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/toolmanager3.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/tritongadgets.pas svneol=native#text/plain
packages/amunits/examples/otherlibs/writetruecolordata.pas svneol=native#text/plain
packages/amunits/examples/penshare.pas svneol=native#text/plain
packages/amunits/examples/showdevs.pas svneol=native#text/plain
packages/amunits/examples/simple_timer.pas svneol=native#text/plain
packages/amunits/examples/snow.pas svneol=native#text/plain
packages/amunits/examples/sortdemo.pas svneol=native#text/plain
packages/amunits/examples/stars.pas svneol=native#text/plain
packages/amunits/examples/talk2boopsi.pas svneol=native#text/plain
packages/amunits/examples/wbtest.pas svneol=native#text/plain
packages/amunits/fpmake.pp svneol=native#text/plain
packages/amunits/scripts/getrecord.rexx svneol=native#text/plain
packages/amunits/scripts/make.rexx svneol=native#text/plain
packages/amunits/src/coreunits/amigados.pas svneol=native#text/plain
packages/amunits/src/coreunits/amigaguide.pas svneol=native#text/plain
packages/amunits/src/coreunits/amigalib.pas svneol=native#text/plain
packages/amunits/src/coreunits/amigaprinter.pas svneol=native#text/plain
packages/amunits/src/coreunits/asl.pas svneol=native#text/plain
packages/amunits/src/coreunits/audio.pas svneol=native#text/plain
packages/amunits/src/coreunits/bootblock.pas svneol=native#text/plain
packages/amunits/src/coreunits/bullet.pas svneol=native#text/plain
packages/amunits/src/coreunits/cd.pas svneol=native#text/plain
packages/amunits/src/coreunits/clipboard.pas svneol=native#text/plain
packages/amunits/src/coreunits/colorwheel.pas svneol=native#text/plain
packages/amunits/src/coreunits/commodities.pas svneol=native#text/plain
packages/amunits/src/coreunits/configregs.pas svneol=native#text/plain
packages/amunits/src/coreunits/configvars.pas svneol=native#text/plain
packages/amunits/src/coreunits/console.pas svneol=native#text/plain
packages/amunits/src/coreunits/conunit.pas svneol=native#text/plain
packages/amunits/src/coreunits/datatypes.pas svneol=native#text/plain
packages/amunits/src/coreunits/diskfont.pas svneol=native#text/plain
packages/amunits/src/coreunits/exec.pp svneol=native#text/plain
packages/amunits/src/coreunits/expansion.pas svneol=native#text/plain
packages/amunits/src/coreunits/expansionbase.pas svneol=native#text/plain
packages/amunits/src/coreunits/gadtools.pas svneol=native#text/plain
packages/amunits/src/coreunits/gameport.pas svneol=native#text/plain
packages/amunits/src/coreunits/gradientslider.pas svneol=native#text/plain
packages/amunits/src/coreunits/graphics.pas svneol=native#text/plain
packages/amunits/src/coreunits/hardblocks.pas svneol=native#text/plain
packages/amunits/src/coreunits/hardware.pas svneol=native#text/plain
packages/amunits/src/coreunits/icon.pas svneol=native#text/plain
packages/amunits/src/coreunits/iffparse.pas svneol=native#text/plain
packages/amunits/src/coreunits/input.pas svneol=native#text/plain
packages/amunits/src/coreunits/inputevent.pas svneol=native#text/plain
packages/amunits/src/coreunits/intuition.pas svneol=native#text/plain
packages/amunits/src/coreunits/keyboard.pas svneol=native#text/plain
packages/amunits/src/coreunits/keymap.pas svneol=native#text/plain
packages/amunits/src/coreunits/layers.pas svneol=native#text/plain
packages/amunits/src/coreunits/locale.pas svneol=native#text/plain
packages/amunits/src/coreunits/lowlevel.pas svneol=native#text/plain
packages/amunits/src/coreunits/nonvolatile.pas svneol=native#text/plain
packages/amunits/src/coreunits/parallel.pas svneol=native#text/plain
packages/amunits/src/coreunits/prefs.pas svneol=native#text/plain
packages/amunits/src/coreunits/prtbase.pas svneol=native#text/plain
packages/amunits/src/coreunits/prtgfx.pas svneol=native#text/plain
packages/amunits/src/coreunits/realtime.pas svneol=native#text/plain
packages/amunits/src/coreunits/rexx.pas svneol=native#text/plain
packages/amunits/src/coreunits/romboot_base.pas svneol=native#text/plain
packages/amunits/src/coreunits/scsidisk.pas svneol=native#text/plain
packages/amunits/src/coreunits/serial.pas svneol=native#text/plain
packages/amunits/src/coreunits/tapedeck.pas svneol=native#text/plain
packages/amunits/src/coreunits/timer.pas svneol=native#text/plain
packages/amunits/src/coreunits/trackdisk.pas svneol=native#text/plain
packages/amunits/src/coreunits/translator.pas svneol=native#text/plain
packages/amunits/src/coreunits/utility.pas svneol=native#text/plain
packages/amunits/src/coreunits/workbench.pas svneol=native#text/plain
packages/amunits/src/otherlibs/ahi.pas svneol=native#text/plain
packages/amunits/src/otherlibs/ahi_sub.pas svneol=native#text/plain
packages/amunits/src/otherlibs/amarquee.pas svneol=native#text/plain
packages/amunits/src/otherlibs/cybergraphics.pas svneol=native#text/plain
packages/amunits/src/otherlibs/gtlayout.pas svneol=native#text/plain
packages/amunits/src/otherlibs/guigfx.pas svneol=native#text/plain
packages/amunits/src/otherlibs/identify.pas svneol=native#text/plain
packages/amunits/src/otherlibs/lucyplay.pas svneol=native#text/plain
packages/amunits/src/otherlibs/mui.pas svneol=native#text/plain
packages/amunits/src/otherlibs/mysticview.pas svneol=native#text/plain
packages/amunits/src/otherlibs/picasso96api.pas svneol=native#text/plain
packages/amunits/src/otherlibs/preferences.pas svneol=native#text/plain
packages/amunits/src/otherlibs/ptreplay.pas svneol=native#text/plain
packages/amunits/src/otherlibs/render.pas svneol=native#text/plain
packages/amunits/src/otherlibs/reqtools.pas svneol=native#text/plain
packages/amunits/src/otherlibs/triton.pas svneol=native#text/plain
packages/amunits/src/otherlibs/tritonmacros.pas svneol=native#text/plain
packages/amunits/src/otherlibs/ttengine.pas svneol=native#text/plain
packages/amunits/src/otherlibs/xadmaster.pas svneol=native#text/plain
packages/amunits/src/otherlibs/zlib.pas svneol=native#text/plain
packages/amunits/src/useamigasmartlink.inc svneol=native#text/plain
packages/amunits/src/useautoopenlib.inc svneol=native#text/plain
packages/amunits/src/utilunits/Makefile svneol=native#text/plain
packages/amunits/src/utilunits/Makefile.fpc svneol=native#text/plain
packages/amunits/src/utilunits/amigautils.pas svneol=native#text/plain
packages/amunits/src/utilunits/consoleio.pas svneol=native#text/plain
packages/amunits/src/utilunits/deadkeys.pas svneol=native#text/plain
packages/amunits/src/utilunits/doublebuffer.pas svneol=native#text/plain
packages/amunits/src/utilunits/easyasl.pas svneol=native#text/plain
packages/amunits/src/utilunits/hisoft.pas svneol=native#text/plain
packages/amunits/src/utilunits/linklist.pas svneol=native#text/plain
packages/amunits/src/utilunits/longarray.pas svneol=native#text/plain
packages/amunits/src/utilunits/msgbox.pas svneol=native#text/plain
packages/amunits/src/utilunits/pastoc.pas svneol=native#text/plain
packages/amunits/src/utilunits/pcq.pas svneol=native#text/plain
packages/amunits/src/utilunits/systemvartags.pas svneol=native#text/plain
packages/amunits/src/utilunits/tagsarray.pas svneol=native#text/plain
packages/amunits/src/utilunits/timerutils.pas svneol=native#text/plain
packages/amunits/src/utilunits/vartags.pas svneol=native#text/plain
packages/amunits/src/utilunits/wbargs.pas svneol=native#text/plain
packages/amunits/units.txt svneol=native#text/plain
packages/aspell/LICENSE svneol=native#text/plain
packages/aspell/LICENSE.ADDON svneol=native#text/plain
packages/aspell/Makefile svneol=native#text/plain
packages/aspell/Makefile.fpc svneol=native#text/plain
packages/aspell/Makefile.fpc.fpcmake svneol=native#text/plain
packages/aspell/examples/example.pas svneol=native#text/plain
packages/aspell/fpmake.pp svneol=native#text/plain
packages/aspell/src/aspell.pp svneol=native#text/plain
packages/aspell/src/aspelldyn.pp svneol=native#text/plain
packages/aspell/src/aspelltypes.inc svneol=native#text/plain
packages/aspell/src/spellcheck.pp svneol=native#text/plain
packages/bfd/Makefile svneol=native#text/plain
packages/bfd/Makefile.fpc svneol=native#text/plain
packages/bfd/Makefile.fpc.fpcmake svneol=native#text/plain
packages/bfd/fpmake.pp svneol=native#text/plain
packages/bfd/src/bfd.pas svneol=native#text/plain
packages/bzip2/LICENSE svneol=native#text/plain
packages/bzip2/Makefile svneol=native#text/plain
packages/bzip2/Makefile.fpc svneol=native#text/plain
packages/bzip2/Makefile.fpc.fpcmake svneol=native#text/plain
packages/bzip2/examples/pasbunzip2.pas svneol=native#text/plain
packages/bzip2/examples/pasbzip.pas svneol=native#text/plain
packages/bzip2/fpmake.pp svneol=native#text/plain
packages/bzip2/src/bzip2.pas svneol=native#text/plain
packages/bzip2/src/bzip2comn.pp svneol=native#text/plain
packages/bzip2/src/bzip2i386.inc svneol=native#text/plain
packages/bzip2/src/bzip2si386.inc svneol=native#text/plain
packages/bzip2/src/bzip2stream.pp svneol=native#text/plain
packages/cairo/Makefile svneol=native#text/plain
packages/cairo/Makefile.fpc svneol=native#text/plain
packages/cairo/Makefile.fpc.fpcmake svneol=native#text/plain
packages/cairo/fpmake.pp svneol=native#text/plain
packages/cairo/src/cairo.pp svneol=native#text/plain
packages/cairo/src/cairoft.pp svneol=native#text/plain
packages/cairo/src/cairowin32.pp svneol=native#text/plain
packages/cairo/src/cairoxlib.pp svneol=native#text/plain
packages/cdrom/Makefile svneol=native#text/plain
packages/cdrom/Makefile.fpc svneol=native#text/plain
packages/cdrom/Makefile.fpc.fpcmake svneol=native#text/plain
packages/cdrom/README.txt svneol=native#text/plain
packages/cdrom/examples/Makefile svneol=native#text/plain
packages/cdrom/examples/Makefile.fpc svneol=native#text/plain
packages/cdrom/examples/getdiscid.pp svneol=native#text/plain
packages/cdrom/examples/showcds.pp svneol=native#text/plain
packages/cdrom/fpmake.pp svneol=native#text/plain
packages/cdrom/src/cdrom.pp svneol=native#text/plain
packages/cdrom/src/cdromioctl.pp svneol=native#text/plain
packages/cdrom/src/cdromlin.inc svneol=native#text/plain
packages/cdrom/src/cdromw32.inc svneol=native#text/plain
packages/cdrom/src/discid.pp svneol=native#text/plain
packages/cdrom/src/fpcddb.pp svneol=native#text/plain
packages/cdrom/src/lincd.pp svneol=native#text/plain
packages/cdrom/src/major.pp svneol=native#text/plain
packages/cdrom/src/scsidefs.pp svneol=native#text/plain
packages/cdrom/src/wincd.pp svneol=native#text/plain
packages/cdrom/src/wnaspi32.pp svneol=native#text/plain
packages/chm/Makefile svneol=native#text/plain
packages/chm/Makefile.fpc svneol=native#text/plain
packages/chm/Makefile.fpc.fpcmake svneol=native#text/plain
packages/chm/fpmake.pp svneol=native#text/plain
packages/chm/src/chmbase.pas svneol=native#text/plain
packages/chm/src/chmcmd.lpi svneol=native#text/plain
packages/chm/src/chmcmd.lpr svneol=native#text/plain
packages/chm/src/chmfiftimain.pas svneol=native#text/plain
packages/chm/src/chmfilewriter.pas svneol=native#text/plain
packages/chm/src/chmls.lpi svneol=native#text/plain
packages/chm/src/chmls.lpr svneol=native#text/plain
packages/chm/src/chmobjinstconst.inc svneol=native#text/plain
packages/chm/src/chmreader.pas svneol=native#text/plain
packages/chm/src/chmsitemap.pas svneol=native#text/plain
packages/chm/src/chmspecialfiles.pas svneol=native#text/plain
packages/chm/src/chmtypes.pas svneol=native#text/plain
packages/chm/src/chmwriter.pas svneol=native#text/plain
packages/chm/src/fasthtmlparser.pas svneol=native#text/plain
packages/chm/src/htmlindexer.pas svneol=native#text/plain
packages/chm/src/htmlutil.pas svneol=native#text/plain
packages/chm/src/itolitlsreader.pas svneol=native#text/plain
packages/chm/src/itolitlstypes.pas svneol=native#text/plain
packages/chm/src/itsftransform.pas svneol=native#text/plain
packages/chm/src/lzxcompressthread.pas svneol=native#text/plain
packages/chm/src/paslznonslide.pas svneol=native#text/plain
packages/chm/src/paslzx.pas svneol=native#text/plain
packages/chm/src/paslzxcomp.pas svneol=native#text/plain
packages/cocoaint/Makefile svneol=native#text/plain
packages/cocoaint/Makefile.fpc svneol=native#text/plain
packages/cocoaint/Makefile.fpc.fpcmake svneol=native#text/plain
packages/cocoaint/fpmake.pp svneol=native#text/plain
packages/cocoaint/src/AnonClassDefinitionsCoredata.pas svneol=native#text/plain
packages/cocoaint/src/AnonClassDefinitionsQuartzcore.pas svneol=native#text/plain
packages/cocoaint/src/AnonClassDefinitionsWebkit.pas svneol=native#text/plain
packages/cocoaint/src/CocoaAll.pas svneol=native#text/plain
packages/cocoaint/src/CoreData.pas svneol=native#text/plain
packages/cocoaint/src/Foundation.pas svneol=native#text/plain
packages/cocoaint/src/IBMacros.pp svneol=native#text/plain
packages/cocoaint/src/InlineFunctions.inc svneol=native#text/plain
packages/cocoaint/src/IvarSize.pas svneol=native#text/plain
packages/cocoaint/src/UndefinedTypes.inc svneol=native#text/plain
packages/cocoaint/src/WebKit.pas svneol=native#text/plain
packages/cocoaint/src/appkit/AppKit.inc svneol=native#text/plain
packages/cocoaint/src/appkit/CIColor.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSATSTypesetter.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSAccessibility.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSActionCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSAffineTransform.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSAlert.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSAnimation.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSAnimationContext.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSAppleScriptExtensions.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSApplication.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSApplicationScripting.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSArrayController.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSAttributedString.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSBezierPath.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSBitmapImageRep.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSBox.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSBrowser.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSBrowserCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSButton.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSButtonCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSCIImageRep.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSCachedImageRep.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSClipView.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSCollectionView.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSColor.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSColorList.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSColorPanel.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSColorPicker.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSColorPicking.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSColorSpace.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSColorWell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSComboBox.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSComboBoxCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSControl.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSController.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSCursor.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSCustomImageRep.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSDatePicker.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSDatePickerCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSDictionaryController.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSDockTile.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSDocument.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSDocumentController.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSDocumentScripting.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSDragging.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSDrawer.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSEPSImageRep.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSErrors.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSEvent.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSFileWrapper.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSFont.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSFontDescriptor.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSFontManager.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSFontPanel.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSForm.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSFormCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSGlyphGenerator.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSGlyphInfo.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSGradient.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSGraphics.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSGraphicsContext.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSHelpManager.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSImage.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSImageCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSImageRep.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSImageView.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSInputManager.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSInputServer.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSInterfaceStyle.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSKeyValueBinding.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSLayoutManager.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSLevelIndicator.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSLevelIndicatorCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSMatrix.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSMenu.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSMenuItem.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSMenuItemCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSMenuView.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSMovie.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSMovieView.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSMoview.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSNib.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSNibLoading.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSObjectController.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSOpenGL.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSOpenGLView.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSOpenPanel.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSOutlineView.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPDFImageRep.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPICTImageRep.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPageLayout.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPanel.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSParagraphStyle.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPasteboard.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPasteboardItem.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPathCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPathComponentCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPathControl.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPersistentDocument.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPopUpButton.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPopUpButtonCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPredicateEditor.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPredicateEditorRowTemplate.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPrintInfo.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPrintOperation.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPrintPanel.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSPrinter.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSProgressIndicator.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSQuickDrawView.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSResponder.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSRuleEditor.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSRulerMarker.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSRulerView.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSRunningApplication.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSSavePanel.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSScreen.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSScrollView.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSScroller.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSSearchField.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSSearchFieldCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSSecureTextField.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSSegmentedControl.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSShadow.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSSlider.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSSliderCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSSound.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSSpeechRecognizer.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSSpeechSynthesizer.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSSpellChecker.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSSpellProtocol.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSSplitView.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSStatusBar.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSStatusItem.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSStepper.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSStepperCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSStringDrawing.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTabView.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTabViewItem.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTableColumn.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTableHeaderCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTableHeaderView.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTableView.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSText.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTextAttachment.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTextContainer.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTextField.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTextFieldCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTextInputClient.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTextInputContext.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTextList.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTextStorage.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTextStorageScripting.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTextTable.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTextView.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTokenField.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTokenFieldCell.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSToolbar.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSToolbarItem.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSToolbarItemGroup.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTouch.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTrackingArea.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTreeController.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTreeNode.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSTypesetter.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSUserDefaultsController.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSUserInterfaceItemSearching.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSUserInterfaceValidation.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSValidatedUserInterfaceItem.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSView.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSViewController.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSWindow.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSWindowController.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSWindowScripting.inc svneol=native#text/plain
packages/cocoaint/src/appkit/NSWorkspace.inc svneol=native#text/plain
packages/cocoaint/src/coredata/AnonIncludeClassDefinitionsCoredata.inc svneol=native#text/plain
packages/cocoaint/src/coredata/CoreData.inc svneol=native#text/plain
packages/cocoaint/src/coredata/CoreDataDefines.inc svneol=native#text/plain
packages/cocoaint/src/coredata/CoreDataErrors.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSAtomicStore.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSAtomicStoreCacheNode.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSAttributeDescription.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSEntityDescription.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSEntityMapping.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSEntityMigrationPolicy.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSExpressionDescription.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSFetchRequest.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSFetchRequestExpression.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSFetchedPropertyDescription.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSManagedObject.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSManagedObjectContext.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSManagedObjectID.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSManagedObjectModel.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSMappingModel.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSMigrationManager.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSPersistentStore.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSPersistentStoreCoordinator.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSPropertyDescription.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSPropertyMapping.inc svneol=native#text/plain
packages/cocoaint/src/coredata/NSRelationshipDescription.inc svneol=native#text/plain
packages/cocoaint/src/foundation/Foundation.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSAffineTransform.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSAppleEventDescriptor.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSAppleEventManager.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSAppleScript.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSArchiver.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSArray.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSAttributedString.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSAutoreleasePool.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSBundle.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSCache.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSCalendar.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSCalendarDate.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSCharacterSet.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSClassDescription.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSCoder.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSComparisonPredicate.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSCompoundPredicate.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSConnection.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSData.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSDate.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSDateFormatter.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSDecimal.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSDecimalNumber.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSDictionary.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSDistantObject.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSDistributedLock.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSDistributedNotificationCenter.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSEnumerator.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSError.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSException.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSExpression.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSFileHandle.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSFileManager.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSFormatter.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSGarbageCollector.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSGeometry.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSHFSFileTypes.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSHTTPCookie.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSHTTPCookieStorage.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSHashTable.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSHost.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSIndexPath.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSIndexSet.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSInvocation.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSKeyValueCoding.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSKeyValueObserving.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSKeyedArchiver.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSLocale.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSLock.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSMapTable.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSMetadata.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSMethodSignature.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSNetServices.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSNotification.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSNotificationQueue.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSNull.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSNumberFormatter.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSObjCRuntime.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSObject.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSObjectScripting.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSOperation.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSOrthography.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSPathUtilities.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSPointerArray.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSPointerFunctions.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSPort.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSPortCoder.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSPortMessage.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSPortNameServer.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSPredicate.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSProcessInfo.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSPropertyList.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSProtocolChecker.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSProxy.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSRange.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSRunLoop.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSScanner.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSScriptClassDescription.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSScriptCoercionHandler.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSScriptCommand.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSScriptCommandDescription.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSScriptExecutionContext.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSScriptKeyValueCoding.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSScriptObjectSpecifiers.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSScriptStandardSuiteCommands.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSScriptSuiteRegistry.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSScriptWhoseTests.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSSet.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSSortDescriptor.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSSpellServer.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSStream.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSString.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSTask.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSTextCheckingResult.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSThread.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSTimeZone.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSTimer.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSURL.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSURLAuthenticationChallenge.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSURLCache.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSURLConnection.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSURLCredential.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSURLCredentialStorage.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSURLDownload.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSURLError.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSURLHandle.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSURLProtectionSpace.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSURLProtocol.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSURLRequest.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSURLResponse.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSUndoManager.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSUserDefaults.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSValue.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSValueTransformer.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSXMLDTD.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSXMLDTDNode.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSXMLDocument.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSXMLElement.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSXMLNode.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSXMLNodeOptions.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSXMLParser.inc svneol=native#text/plain
packages/cocoaint/src/foundation/NSZone.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/AnonIncludeClassDefinitionsQuartzcore.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CAAnimation.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CABase.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CACIFilterAdditions.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CAConstraintLayoutManager.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CAEmitterCell.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CAEmitterLayer.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CAGradientLayer.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CALayer.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CAMediaTiming.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CAMediaTimingFunction.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CAOpenGLLayer.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CARenderer.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CAReplicatorLayer.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CAScrollLayer.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CAShapeLayer.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CATextLayer.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CATiledLayer.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CATransaction.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CATransform3D.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CATransformLayer.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CAValueFunction.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CIColor.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CIContext.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CIFilter.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CIFilterGenerator.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CIFilterShape.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CIImage.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CIImageAccumulator.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CIImageProvider.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CIKernel.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CIPlugIn.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CIPlugInInterface.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CIRAWFilter.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CISampler.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CIVector.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CVBase.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CVBuffer.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CVDisplayLink.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CVHostTime.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CVImageBuffer.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CVOpenGLBuffer.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CVOpenGLBufferPool.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CVOpenGLTexture.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CVOpenGLTextureCache.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CVPixelBuffer.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CVPixelBufferPool.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CVPixelFormatDescription.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/CVReturn.inc svneol=native#text/plain
packages/cocoaint/src/quartzcore/QuartzCore.inc svneol=native#text/plain
packages/cocoaint/src/webkit/AnonIncludeClassDefinitionsWebkit.inc svneol=native#text/plain
packages/cocoaint/src/webkit/CarbonUtils.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOM.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMAbstractView.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMAttr.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMBlob.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCDATASection.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCSS.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCSSCharsetRule.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCSSFontFaceRule.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCSSImportRule.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCSSMediaRule.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCSSPageRule.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCSSPrimitiveValue.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCSSRule.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCSSRuleList.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCSSStyleDeclaration.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCSSStyleRule.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCSSStyleSheet.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCSSUnknownRule.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCSSValue.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCSSValueList.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCharacterData.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMComment.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCore.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCounter.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMDocument.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMDocumentFragment.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMDocumentType.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMEntity.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMEntityReference.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMEvent.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMEventException.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMEventListener.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMEventTarget.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMEvents.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMException.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMExtensions.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMFile.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMFileList.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTML.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLAnchorElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLAppletElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLAreaElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLBRElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLBaseElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLBaseFontElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLBodyElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLButtonElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLCollection.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLDListElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLDirectoryElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLDivElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLDocument.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLEmbedElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLFieldSetElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLFontElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLFormElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLFrameElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLFrameSetElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLHRElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLHeadElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLHeadingElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLHtmlElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLIFrameElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLImageElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLInputElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLIsIndexElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLLIElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLLabelElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLLegendElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLLinkElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLMapElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLMarqueeElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLMenuElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLMetaElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLModElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLOListElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLObjectElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLOptGroupElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLOptionElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLOptionsCollection.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLParagraphElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLParamElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLPreElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLQuoteElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLScriptElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLSelectElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLStyleElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLTableCaptionElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLTableCellElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLTableColElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLTableElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLTableRowElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLTableSectionElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLTextAreaElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLTitleElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMHTMLUListElement.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMImplementation.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMKeyboardEvent.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMMediaList.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMMouseEvent.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMMutationEvent.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMNamedNodeMap.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMNode.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMNodeFilter.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMNodeIterator.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMNodeList.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMNotation.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMObject.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMOverflowEvent.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMProcessingInstruction.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMProgressEvent.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMRGBColor.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMRange.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMRangeException.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMRanges.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMRect.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMStyleSheet.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMStyleSheetList.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMStylesheets.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMText.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMTraversal.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMTreeWalker.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMUIEvent.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMViews.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMWheelEvent.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMXPath.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMXPathException.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMXPathExpression.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMXPathNSResolver.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMXPathResult.inc svneol=native#text/plain
packages/cocoaint/src/webkit/HIWebView.inc svneol=native#text/plain
packages/cocoaint/src/webkit/UndefinedTypes.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebArchive.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebBackForwardList.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebDOMOperations.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebDataSource.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebDocument.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebDownload.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebEditingDelegate.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebFrame.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebFrameLoadDelegate.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebFrameView.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebHistory.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebHistoryItem.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebKit.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebKitErrors.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebPlugin.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebPluginContainer.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebPluginViewFactory.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebPolicyDelegate.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebPreferences.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebResource.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebResourceLoadDelegate.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebScriptObject.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebUIDelegate.inc svneol=native#text/plain
packages/cocoaint/src/webkit/WebView.inc svneol=native#text/plain
packages/cocoaint/utils/Make[!!-~]Cocoa[!!-~]Headers.txt svneol=native#text/plain
packages/cocoaint/utils/Make[!!-~]iPhone[!!-~]Headers.txt svneol=native#text/plain
packages/cocoaint/utils/Using[!!-~]Installer[!!-~]Script.txt svneol=native#text/plain
packages/cocoaint/utils/cocoa-skel/src/CocoaAll.pas svneol=native#text/plain
packages/cocoaint/utils/cocoa-skel/src/CoreData.pas svneol=native#text/plain
packages/cocoaint/utils/cocoa-skel/src/InlineFunctions.inc svneol=native#text/plain
packages/cocoaint/utils/cocoa-skel/src/UndefinedTypes.inc svneol=native#text/plain
packages/cocoaint/utils/cocoa-skel/src/WebKit.pas svneol=native#text/plain
packages/cocoaint/utils/cocoa-skel/src/appkit/AppKit.inc svneol=native#text/plain
packages/cocoaint/utils/cocoa-skel/src/appkit/CIColor.inc svneol=native#text/plain
packages/cocoaint/utils/cocoa-skel/src/coredata/CoreData.inc svneol=native#text/plain
packages/cocoaint/utils/cocoa-skel/src/foundation/Foundation.inc svneol=native#text/plain
packages/cocoaint/utils/cocoa-skel/src/patches/NSBundle.patch svneol=native#text/plain
packages/cocoaint/utils/cocoa-skel/src/patches/NSObjCRuntime.patch svneol=native#text/plain
packages/cocoaint/utils/cocoa-skel/src/quartzcore/QuartzCore.inc svneol=native#text/plain
packages/cocoaint/utils/cocoa-skel/src/webkit/UndefinedTypes.inc svneol=native#text/plain
packages/cocoaint/utils/cocoa-skel/src/webkit/WebKit.inc svneol=native#text/plain
packages/cocoaint/utils/doc/How[!!-~]to[!!-~]parse[!!-~]frameworks.rtf -text svneol=unset#application/rtf
packages/cocoaint/utils/doc/Make[!!-~]Cocoa[!!-~]Headers.txt svneol=native#text/plain
packages/cocoaint/utils/doc/Make[!!-~]Single[!!-~]Header.txt svneol=native#text/plain
packages/cocoaint/utils/doc/Make[!!-~]iPhone[!!-~]Headers.txt svneol=native#text/plain
packages/cocoaint/utils/frameworks.xml svneol=native#text/plain
packages/cocoaint/utils/install_objp.sh svneol=native#text/plain
packages/cocoaint/utils/make-cocoa-headers.sh svneol=native#text/plain
packages/cocoaint/utils/make-ios-headers.sh svneol=native#text/plain
packages/cocoaint/utils/parser.php svneol=native#text/plain
packages/cocoaint/utils/patches/cocoa-coredata-webkit.patch svneol=native#text/plain
packages/cocoaint/utils/patches/uikit-3.2.patch svneol=native#text/plain
packages/cocoaint/utils/patches/uikit-4.2.patch svneol=native#text/plain
packages/cocoaint/utils/source/docset.php svneol=native#text/plain
packages/cocoaint/utils/source/objp.php svneol=native#text/plain
packages/cocoaint/utils/source/objp_base.php svneol=native#text/plain
packages/cocoaint/utils/source/utilities.php svneol=native#text/plain
packages/cocoaint/utils/uikit-skel/src/InlineFunctions.inc svneol=native#text/plain
packages/cocoaint/utils/uikit-skel/src/UndefinedTypes.inc svneol=native#text/plain
packages/cocoaint/utils/uikit-skel/src/foundation/Foundation.inc svneol=native#text/plain
packages/cocoaint/utils/uikit-skel/src/iPhoneAll.pas svneol=native#text/plain
packages/cocoaint/utils/uikit-skel/src/opengles/OpenGLES.inc svneol=native#text/plain
packages/cocoaint/utils/uikit-skel/src/patches/NSObjCRuntime.patch svneol=native#text/plain
packages/cocoaint/utils/uikit-skel/src/quartzcore/QuartzCore.inc svneol=native#text/plain
packages/cocoaint/utils/uikit-skel/src/uikit/UIKit.inc svneol=native#text/plain
packages/dblib/Makefile svneol=native#text/plain
packages/dblib/Makefile.fpc svneol=native#text/plain
packages/dblib/fpmake.pp svneol=native#text/plain
packages/dblib/src/dblib.pp svneol=native#text/plain
packages/dbus/Makefile svneol=native#text/plain
packages/dbus/Makefile.fpc svneol=native#text/plain
packages/dbus/Makefile.fpc.fpcmake svneol=native#text/plain
packages/dbus/examples/Makefile svneol=native#text/plain
packages/dbus/examples/Makefile.fpc svneol=native#text/plain
packages/dbus/examples/busexample.pp svneol=native#text/plain
packages/dbus/fpmake.pp svneol=native#text/plain
packages/dbus/src/dbus-address.inc svneol=native#text/plain
packages/dbus/src/dbus-arch-deps.inc svneol=native#text/plain
packages/dbus/src/dbus-bus.inc svneol=native#text/plain
packages/dbus/src/dbus-connection.inc svneol=native#text/plain
packages/dbus/src/dbus-errors.inc svneol=native#text/plain
packages/dbus/src/dbus-macros.inc svneol=native#text/plain
packages/dbus/src/dbus-memory.inc svneol=native#text/plain
packages/dbus/src/dbus-message.inc svneol=native#text/plain
packages/dbus/src/dbus-misc.inc svneol=native#text/plain
packages/dbus/src/dbus-pending-call.inc svneol=native#text/plain
packages/dbus/src/dbus-protocol.inc svneol=native#text/plain
packages/dbus/src/dbus-server.inc svneol=native#text/plain
packages/dbus/src/dbus-shared.inc svneol=native#text/plain
packages/dbus/src/dbus-signature.inc svneol=native#text/plain
packages/dbus/src/dbus-threads.inc svneol=native#text/plain
packages/dbus/src/dbus-types.inc svneol=native#text/plain
packages/dbus/src/dbus.pas svneol=native#text/plain
packages/dbus/src/dbus_arch_deps.inc svneol=native#text/plain
packages/dts/Makefile svneol=native#text/plain
packages/dts/Makefile.fpc svneol=native#text/plain
packages/dts/Makefile.fpc.fpcmake svneol=native#text/plain
packages/dts/fpmake.pp svneol=native#text/plain
packages/dts/src/dts.pas svneol=native#text/plain
packages/fastcgi/Makefile svneol=native#text/plain
packages/fastcgi/Makefile.fpc svneol=native#text/plain
packages/fastcgi/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fastcgi/fpmake.pp svneol=native#text/plain
packages/fastcgi/src/fastcgi.pp svneol=native#text/plain
packages/fcl-async/Makefile svneol=native#text/plain
packages/fcl-async/Makefile.fpc svneol=native#text/plain
packages/fcl-async/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fcl-async/fpmake.pp svneol=native#text/plain
packages/fcl-async/src/fpasync.pp svneol=native#text/plain
packages/fcl-async/src/libasync.inc svneol=native#text/plain
packages/fcl-async/src/libasynch.inc svneol=native#text/plain
packages/fcl-async/src/unix/libasync.pp svneol=native#text/plain
packages/fcl-base/Makefile svneol=native#text/plain
packages/fcl-base/Makefile.fpc svneol=native#text/plain
packages/fcl-base/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fcl-base/examples/Makefile svneol=native#text/plain
packages/fcl-base/examples/Makefile.fpc svneol=native#text/plain
packages/fcl-base/examples/README.txt svneol=native#text/plain
packages/fcl-base/examples/asiotest.pp svneol=native#text/plain
packages/fcl-base/examples/avltreetest.pp svneol=native#text/plain
packages/fcl-base/examples/b64.pp svneol=native#text/plain
packages/fcl-base/examples/b64dec.pp svneol=native#text/plain
packages/fcl-base/examples/b64enc.pp svneol=native#text/plain
packages/fcl-base/examples/b64test.pp svneol=native#text/plain
packages/fcl-base/examples/b64test2.pp svneol=native#text/plain
packages/fcl-base/examples/base64decodingtestcase.pas svneol=native#text/plain
packages/fcl-base/examples/cachetest.pp svneol=native#text/plain
packages/fcl-base/examples/cfgtest.pp svneol=native#text/plain
packages/fcl-base/examples/crittest.pp svneol=native#text/plain
packages/fcl-base/examples/dbugsrv.pp svneol=native#text/plain
packages/fcl-base/examples/debugtest.pp svneol=native#text/plain
packages/fcl-base/examples/decodeascii85.pp svneol=native#text/plain
packages/fcl-base/examples/doecho.pp svneol=native#text/plain
packages/fcl-base/examples/dparser.pp svneol=native#text/plain
packages/fcl-base/examples/dsockcli.pp svneol=native#text/plain
packages/fcl-base/examples/dsocksvr.pp svneol=native#text/plain
packages/fcl-base/examples/encodeascii85.pp svneol=native#text/plain
packages/fcl-base/examples/fpdoc.dtd -text
packages/fcl-base/examples/fpexprpars.txt svneol=native#text/plain
packages/fcl-base/examples/fstream.pp svneol=native#text/plain
packages/fcl-base/examples/htdump.pp svneol=native#text/plain
packages/fcl-base/examples/intl/Makefile svneol=native#text/plain
packages/fcl-base/examples/intl/README.txt svneol=native#text/plain
packages/fcl-base/examples/intl/restest.de.mo -text
packages/fcl-base/examples/intl/restest.de.po svneol=native#text/plain
packages/fcl-base/examples/intl/restest.fr.mo -text
packages/fcl-base/examples/intl/restest.fr.po svneol=native#text/plain
packages/fcl-base/examples/intl/restest.nl.mo -text
packages/fcl-base/examples/intl/restest.nl.po svneol=native#text/plain
packages/fcl-base/examples/intl/restest.pb.mo -text
packages/fcl-base/examples/intl/restest.pb.po svneol=native#text/plain
packages/fcl-base/examples/intl/restest.ru.mo -text
packages/fcl-base/examples/intl/restest.ru.po svneol=native#text/plain
packages/fcl-base/examples/intl/resttest.po svneol=native#text/plain
packages/fcl-base/examples/ipcclient.pp svneol=native#text/plain
packages/fcl-base/examples/ipcserver.pp svneol=native#text/plain
packages/fcl-base/examples/isockcli.pp svneol=native#text/plain
packages/fcl-base/examples/isocksvr.pp svneol=native#text/plain
packages/fcl-base/examples/istream.pp svneol=native#text/plain
packages/fcl-base/examples/kword.xml -text
packages/fcl-base/examples/list.pp svneol=native#text/plain
packages/fcl-base/examples/mstream.pp svneol=native#text/plain
packages/fcl-base/examples/overview.rtf -text svneol=unset#unset
packages/fcl-base/examples/parser.dat -text
packages/fcl-base/examples/poolmm1.pp svneol=native#text/plain
packages/fcl-base/examples/poolmm2.pp svneol=native#text/plain
packages/fcl-base/examples/restest.pp svneol=native#text/plain
packages/fcl-base/examples/showver.pp svneol=native#text/plain
packages/fcl-base/examples/showver.rc -text
packages/fcl-base/examples/showver.res -text
packages/fcl-base/examples/simple.xml -text
packages/fcl-base/examples/sockcli.pp svneol=native#text/plain
packages/fcl-base/examples/socksvr.pp svneol=native#text/plain
packages/fcl-base/examples/sstream.pp svneol=native#text/plain
packages/fcl-base/examples/stringl.pp svneol=native#text/plain
packages/fcl-base/examples/tarmakercons.pas svneol=native#text/plain
packages/fcl-base/examples/tarmakerconsgzip.pas svneol=native#text/plain
packages/fcl-base/examples/testapp.pp svneol=native#text/plain
packages/fcl-base/examples/testbf.pp svneol=native#text/plain
packages/fcl-base/examples/testbs.pp svneol=native#text/plain
packages/fcl-base/examples/testcgi.html -text
packages/fcl-base/examples/testcgi.pp svneol=native#text/plain
packages/fcl-base/examples/testcont.pp svneol=native#text/plain
packages/fcl-base/examples/testexprpars.pp svneol=native#text/plain
packages/fcl-base/examples/testez.pp svneol=native#text/plain
packages/fcl-base/examples/testhres.pp svneol=native#text/plain
packages/fcl-base/examples/testmime.pp svneol=native#text/plain
packages/fcl-base/examples/testnres.pp svneol=native#text/plain
packages/fcl-base/examples/testol.pp svneol=native#text/plain
packages/fcl-base/examples/testproc.pp svneol=native#text/plain
packages/fcl-base/examples/testreg.pp svneol=native#text/plain
packages/fcl-base/examples/testrhre.pp svneol=native#text/plain
packages/fcl-base/examples/testrnre.pp svneol=native#text/plain
packages/fcl-base/examples/testrsre.pp svneol=native#text/plain
packages/fcl-base/examples/testrtf.pp svneol=native#text/plain
packages/fcl-base/examples/testser.pp svneol=native#text/plain
packages/fcl-base/examples/testsres.pp svneol=native#text/plain
packages/fcl-base/examples/testtimer.pp svneol=native#text/plain
packages/fcl-base/examples/testunzip.pp svneol=native#text/plain
packages/fcl-base/examples/testur.pp svneol=native#text/plain
packages/fcl-base/examples/testweb.pp svneol=native#text/plain
packages/fcl-base/examples/testz.pp svneol=native#text/plain
packages/fcl-base/examples/testz2.pp svneol=native#text/plain
packages/fcl-base/examples/testzip.pp svneol=native#text/plain
packages/fcl-base/examples/threads.pp svneol=native#text/plain
packages/fcl-base/examples/tidea.pp svneol=native#text/plain
packages/fcl-base/examples/tstelcmd.pp svneol=native#text/plain
packages/fcl-base/examples/tstelgtk.pp svneol=native#text/plain
packages/fcl-base/examples/txmlreg.pp svneol=native#text/plain
packages/fcl-base/examples/xmldump.pp svneol=native#text/plain
packages/fcl-base/fpmake.pp svneol=native#text/plain
packages/fcl-base/src/ascii85.pp svneol=native#text/plain
packages/fcl-base/src/avl_tree.pp svneol=native#text/plain
packages/fcl-base/src/base64.pp svneol=native#text/plain
packages/fcl-base/src/blowfish.pp svneol=native#text/plain
packages/fcl-base/src/bufstream.pp svneol=native#text/plain
packages/fcl-base/src/cachecls.pp svneol=native#text/plain
packages/fcl-base/src/contnrs.pp svneol=native#text/plain
packages/fcl-base/src/custapp.pp svneol=native#text/plain
packages/fcl-base/src/dummy/eventlog.inc svneol=native#text/plain
packages/fcl-base/src/eventlog.pp svneol=native#text/plain
packages/fcl-base/src/fpexprpars.pp svneol=native#text/plain
packages/fcl-base/src/fpmimetypes.pp svneol=native#text/plain
packages/fcl-base/src/fpobserver.pp svneol=native#text/plain
packages/fcl-base/src/fptemplate.pp svneol=native#text/plain
packages/fcl-base/src/fptimer.pp svneol=native#text/plain
packages/fcl-base/src/gettext.pp svneol=native#text/plain
packages/fcl-base/src/go32v2/custapp.inc svneol=native#text/plain
packages/fcl-base/src/idea.pp svneol=native#text/plain
packages/fcl-base/src/inicol.pp svneol=native#text/plain
packages/fcl-base/src/inifiles.pp svneol=native#text/plain
packages/fcl-base/src/iostream.pp svneol=native#text/plain
packages/fcl-base/src/libtar.pp svneol=native#text/plain
packages/fcl-base/src/maskutils.pp svneol=native#text/plain
packages/fcl-base/src/netware/custapp.inc svneol=native#text/plain
packages/fcl-base/src/netwlibc/custapp.inc svneol=native#text/plain
packages/fcl-base/src/os2/custapp.inc svneol=native#text/plain
packages/fcl-base/src/os2/eventlog.inc svneol=native#text/plain
packages/fcl-base/src/pooledmm.pp svneol=native#text/plain
packages/fcl-base/src/rtfdata.inc svneol=native#text/plain
packages/fcl-base/src/rtfpars.pp svneol=native#text/plain
packages/fcl-base/src/rttiutils.pp svneol=native#text/plain
packages/fcl-base/src/streamcoll.pp svneol=native#text/plain
packages/fcl-base/src/streamex.pp svneol=native#text/plain
packages/fcl-base/src/streamio.pp svneol=native#text/plain
packages/fcl-base/src/syncobjs.pp svneol=native#text/plain
packages/fcl-base/src/unix/eventlog.inc svneol=native#text/plain
packages/fcl-base/src/uriparser.pp svneol=native#text/plain
packages/fcl-base/src/wformat.pp svneol=native#text/plain
packages/fcl-base/src/whtml.pp svneol=native#text/plain
packages/fcl-base/src/win/eventlog.inc svneol=native#text/plain
packages/fcl-base/src/win/fclel.mc -text
packages/fcl-base/src/win/fclel.rc -text
packages/fcl-base/src/win/fclel.res -text
packages/fcl-base/src/win/fileinfo.pp svneol=native#text/plain
packages/fcl-base/src/wince/fileinfo.pp svneol=native#text/plain
packages/fcl-base/src/wtex.pp svneol=native#text/plain
packages/fcl-base/tests/fclbase-unittests.pp svneol=native#text/plain
packages/fcl-base/tests/tests_fptemplate.pp svneol=native#text/plain
packages/fcl-base/texts/fptemplate.txt svneol=native#text/plain
packages/fcl-db/Makefile svneol=native#text/plain
packages/fcl-db/Makefile.fpc svneol=native#text/plain
packages/fcl-db/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fcl-db/examples/fbadmindemo.pp svneol=native#text/plain
packages/fcl-db/examples/fbeventstest.pp svneol=native#text/plain
packages/fcl-db/examples/loadlibdemo.lpi svneol=native#text/plain
packages/fcl-db/examples/loadlibdemo.pp svneol=native#text/plain
packages/fcl-db/examples/pqeventstest.pp svneol=native#text/plain
packages/fcl-db/fpmake.pp svneol=native#text/plain
packages/fcl-db/src/Dataset.txt svneol=native#text/plain
packages/fcl-db/src/README.txt svneol=native#text/plain
packages/fcl-db/src/base/Makefile svneol=native#text/plain
packages/fcl-db/src/base/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/base/bufdataset.pas svneol=native#text/plain
packages/fcl-db/src/base/bufdataset_parser.pp svneol=native#text/plain
packages/fcl-db/src/base/database.inc svneol=native#text/plain
packages/fcl-db/src/base/dataset.inc svneol=native#text/plain
packages/fcl-db/src/base/datasource.inc svneol=native#text/plain
packages/fcl-db/src/base/db.pas svneol=native#text/plain
packages/fcl-db/src/base/dbcoll.pp svneol=native#text/plain
packages/fcl-db/src/base/dbconst.pas svneol=native#text/plain
packages/fcl-db/src/base/dbwhtml.pp svneol=native#text/plain
packages/fcl-db/src/base/dsparams.inc svneol=native#text/plain
packages/fcl-db/src/base/fields.inc svneol=native#text/plain
packages/fcl-db/src/base/fpmake.inc svneol=native#text/plain
packages/fcl-db/src/base/fpmake.pp svneol=native#text/plain
packages/fcl-db/src/base/sqlscript.pp svneol=native#text/plain
packages/fcl-db/src/base/xmldatapacketreader.pp svneol=native#text/plain
packages/fcl-db/src/codegen/Makefile svneol=native#text/plain
packages/fcl-db/src/codegen/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/codegen/buildddcg.lpi svneol=native#text/plain
packages/fcl-db/src/codegen/buildddcg.lpr svneol=native#text/plain
packages/fcl-db/src/codegen/fpcgcreatedbf.pp svneol=native#text/plain
packages/fcl-db/src/codegen/fpcgdbcoll.pp svneol=native#text/plain
packages/fcl-db/src/codegen/fpcgsqlconst.pp svneol=native#text/plain
packages/fcl-db/src/codegen/fpcgtiopf.pp svneol=native#text/plain
packages/fcl-db/src/codegen/fpddcodegen.pp svneol=native#text/plain
packages/fcl-db/src/codegen/fpddpopcode.pp svneol=native#text/plain
packages/fcl-db/src/datadict/Makefile svneol=native#text/plain
packages/fcl-db/src/datadict/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/datadict/buildd.lpi svneol=native#text/plain
packages/fcl-db/src/datadict/buildd.lpr svneol=native#text/plain
packages/fcl-db/src/datadict/fpdatadict.pp svneol=native#text/plain
packages/fcl-db/src/datadict/fpdddbf.pp svneol=native#text/plain
packages/fcl-db/src/datadict/fpdddiff.pp svneol=native#text/plain
packages/fcl-db/src/datadict/fpddfb.pp svneol=native#text/plain
packages/fcl-db/src/datadict/fpddmysql40.pp svneol=native#text/plain
packages/fcl-db/src/datadict/fpddmysql41.pp svneol=native#text/plain
packages/fcl-db/src/datadict/fpddmysql50.pp svneol=native#text/plain
packages/fcl-db/src/datadict/fpddodbc.pp svneol=native#text/plain
packages/fcl-db/src/datadict/fpddoracle.pp svneol=native#text/plain
packages/fcl-db/src/datadict/fpddpq.pp svneol=native#text/plain
packages/fcl-db/src/datadict/fpddregstd.pp svneol=native#text/plain
packages/fcl-db/src/datadict/fpddsqldb.pp svneol=native#text/plain
packages/fcl-db/src/datadict/fpddsqlite3.pp svneol=native#text/plain
packages/fcl-db/src/dbase/Makefile svneol=native#text/plain
packages/fcl-db/src/dbase/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/dbase/dbf.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_avl.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_collate.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_common.inc svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_common.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_cursor.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_dbffile.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_fields.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_idxcur.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_idxfile.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_lang.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_memo.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_parser.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_pgcfile.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_pgfile.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_prscore.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_prsdef.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_prssupp.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_reg.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_str.inc svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_str.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_str_es.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_str_fr.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_str_ita.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_str_nl.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_str_pl.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_str_pt.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_str_ru.pas svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_struct.inc svneol=native#text/plain
packages/fcl-db/src/dbase/dbf_wtil.pas svneol=native#text/plain
packages/fcl-db/src/dbase/fpmake.inc svneol=native#text/plain
packages/fcl-db/src/dbase/fpmake.pp svneol=native#text/plain
packages/fcl-db/src/dbase/getstrfromint.inc svneol=native#text/plain
packages/fcl-db/src/dbase/history.txt svneol=native#text/plain
packages/fcl-db/src/dbase/package.txt svneol=native#text/plain
packages/fcl-db/src/dbase/readme.txt svneol=native#text/plain
packages/fcl-db/src/dbase/tdbf_l.pas svneol=native#text/plain
packages/fcl-db/src/dbase/testdbf.pp svneol=native#text/plain
packages/fcl-db/src/export/Makefile svneol=native#text/plain
packages/fcl-db/src/export/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/export/XMLXSDExportReadme.TXT svneol=native#text/plain
packages/fcl-db/src/export/fpcsvexport.pp svneol=native#text/plain
packages/fcl-db/src/export/fpdbexport.pp svneol=native#text/plain
packages/fcl-db/src/export/fpdbfexport.pp svneol=native#text/plain
packages/fcl-db/src/export/fpfixedexport.pp svneol=native#text/plain
packages/fcl-db/src/export/fprtfexport.pp svneol=native#text/plain
packages/fcl-db/src/export/fpsimplejsonexport.pp svneol=native#text/plain
packages/fcl-db/src/export/fpsimplexmlexport.pp svneol=native#text/plain
packages/fcl-db/src/export/fpsqlexport.pp svneol=native#text/plain
packages/fcl-db/src/export/fpstdexports.pp svneol=native#text/plain
packages/fcl-db/src/export/fptexexport.pp svneol=native#text/plain
packages/fcl-db/src/export/fpxmlxsdexport.pp svneol=native#text/plain
packages/fcl-db/src/json/Makefile svneol=native#text/plain
packages/fcl-db/src/json/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/json/fpjsondataset.pp svneol=native#text/plain
packages/fcl-db/src/memds/Makefile svneol=native#text/plain
packages/fcl-db/src/memds/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/memds/README.txt svneol=native#text/plain
packages/fcl-db/src/memds/fpmake.inc svneol=native#text/plain
packages/fcl-db/src/memds/fpmake.pp svneol=native#text/plain
packages/fcl-db/src/memds/memds.pp svneol=native#text/plain
packages/fcl-db/src/memds/testcp.pp svneol=native#text/plain
packages/fcl-db/src/memds/testld.pp svneol=native#text/plain
packages/fcl-db/src/memds/testopen.pp svneol=native#text/plain
packages/fcl-db/src/memds/testpop.pp svneol=native#text/plain
packages/fcl-db/src/paradox/Makefile svneol=native#text/plain
packages/fcl-db/src/paradox/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/paradox/paradox.pp svneol=native#text/plain
packages/fcl-db/src/sdf/Makefile svneol=native#text/plain
packages/fcl-db/src/sdf/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/sdf/fpc.ssx -text
packages/fcl-db/src/sdf/fpc.ssy -text
packages/fcl-db/src/sdf/fpmake.inc svneol=native#text/plain
packages/fcl-db/src/sdf/fpmake.pp svneol=native#text/plain
packages/fcl-db/src/sdf/sdfdata.pp svneol=native#text/plain
packages/fcl-db/src/sdf/testfix.pp svneol=native#text/plain
packages/fcl-db/src/sdf/testsdf.pp svneol=native#text/plain
packages/fcl-db/src/sql/Makefile svneol=native#text/plain
packages/fcl-db/src/sql/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/sql/fpsqlparser.pas svneol=native#text/plain
packages/fcl-db/src/sql/fpsqlscanner.pp svneol=native#text/plain
packages/fcl-db/src/sql/fpsqltree.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/Makefile svneol=native#text/plain
packages/fcl-db/src/sqldb/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/sqldb/examples/alisttables.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/examples/bcreatetable.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/examples/cfilltable.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/examples/database.ini svneol=native#text/plain
packages/fcl-db/src/sqldb/examples/dshowtable.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/examples/efilltableparams.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/examples/fedittable.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/examples/gfiltertable.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/examples/sqldbexampleunit.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/fpmake.inc svneol=native#text/plain
packages/fcl-db/src/sqldb/fpmake.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/interbase/Makefile svneol=native#text/plain
packages/fcl-db/src/sqldb/interbase/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/sqldb/interbase/fbadmin.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/interbase/fbeventmonitor.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/interbase/fpmake.inc svneol=native#text/plain
packages/fcl-db/src/sqldb/interbase/fpmake.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/interbase/ibconnection.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/mssql/Makefile svneol=native#text/plain
packages/fcl-db/src/sqldb/mssql/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/sqldb/mssql/fpmake.inc svneol=native#text/plain
packages/fcl-db/src/sqldb/mssql/fpmake.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/mssql/mssqlconn.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/mssql/readme.txt svneol=native#text/plain
packages/fcl-db/src/sqldb/mysql/Makefile svneol=native#text/plain
packages/fcl-db/src/sqldb/mysql/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/sqldb/mysql/fpmake.inc svneol=native#text/plain
packages/fcl-db/src/sqldb/mysql/fpmake.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/mysql/mysql40conn.pas svneol=native#text/plain
packages/fcl-db/src/sqldb/mysql/mysql41conn.pas svneol=native#text/plain
packages/fcl-db/src/sqldb/mysql/mysql4conn.pas svneol=native#text/plain
packages/fcl-db/src/sqldb/mysql/mysql50conn.pas svneol=native#text/plain
packages/fcl-db/src/sqldb/mysql/mysql51conn.pas svneol=native#text/plain
packages/fcl-db/src/sqldb/mysql/mysql55conn.pas svneol=native#text/plain
packages/fcl-db/src/sqldb/mysql/mysqlconn.inc svneol=native#text/plain
packages/fcl-db/src/sqldb/odbc/Makefile svneol=native#text/plain
packages/fcl-db/src/sqldb/odbc/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/sqldb/odbc/odbcconn.pas svneol=native#text/plain
packages/fcl-db/src/sqldb/oracle/Makefile -text
packages/fcl-db/src/sqldb/oracle/Makefile.fpc -text
packages/fcl-db/src/sqldb/oracle/oracleconnection.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/postgres/Makefile svneol=native#text/plain
packages/fcl-db/src/sqldb/postgres/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/sqldb/postgres/fpmake.inc svneol=native#text/plain
packages/fcl-db/src/sqldb/postgres/fpmake.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/postgres/pqconnection.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/postgres/pqeventmonitor.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/sqldb.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/sqldblib.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/sqlite/Makefile svneol=native#text/plain
packages/fcl-db/src/sqldb/sqlite/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/sqldb/sqlite/sqlite3conn.pp svneol=native#text/plain
packages/fcl-db/src/sqldb/testsqldb.pp svneol=native#text/plain
packages/fcl-db/src/sqlite/Makefile svneol=native#text/plain
packages/fcl-db/src/sqlite/Makefile.fpc svneol=native#text/plain
packages/fcl-db/src/sqlite/browseds.pas svneol=native#text/plain
packages/fcl-db/src/sqlite/concurrencyds.pas svneol=native#text/plain
packages/fcl-db/src/sqlite/createds.pas svneol=native#text/plain
packages/fcl-db/src/sqlite/customsqliteds.pas svneol=native#text/plain
packages/fcl-db/src/sqlite/fillds.pas svneol=native#text/plain
packages/fcl-db/src/sqlite/fpmake.inc svneol=native#text/plain
packages/fcl-db/src/sqlite/fpmake.pp svneol=native#text/plain
packages/fcl-db/src/sqlite/sqlite3ds.pas svneol=native#text/plain
packages/fcl-db/src/sqlite/sqliteds.pas svneol=native#text/plain
packages/fcl-db/src/sqlite/testds.pas svneol=native#text/plain
packages/fcl-db/tests/Makefile -text
packages/fcl-db/tests/Makefile.fpc -text
packages/fcl-db/tests/README.txt svneol=native#text/plain
packages/fcl-db/tests/XMLXSDExportTest.lpi svneol=native#text/plain
packages/fcl-db/tests/XMLXSDExportTest.lpr svneol=native#text/plain
packages/fcl-db/tests/bufdatasettoolsunit.pas svneol=native#text/plain
packages/fcl-db/tests/database.ini.txt svneol=native#text/plain
packages/fcl-db/tests/dbfexporttest.lpi svneol=native#text/plain
packages/fcl-db/tests/dbfexporttest.lpr svneol=native#text/plain
packages/fcl-db/tests/dbfexporttestcase1.pas svneol=native#text/plain
packages/fcl-db/tests/dbftoolsunit.pas svneol=native#text/plain
packages/fcl-db/tests/dbtestframework.pas svneol=native#text/plain
packages/fcl-db/tests/dbtestframework_gui.lpi svneol=native#text/plain
packages/fcl-db/tests/dbtestframework_gui.lpr svneol=native#text/plain
packages/fcl-db/tests/memdstoolsunit.pas svneol=native#text/plain
packages/fcl-db/tests/sdfdstoolsunit.pas svneol=native#text/plain
packages/fcl-db/tests/sqldbtoolsunit.pas svneol=native#text/plain
packages/fcl-db/tests/tcgensql.pas svneol=native#text/plain
packages/fcl-db/tests/tcparser.pas svneol=native#text/plain
packages/fcl-db/tests/tcsdfdata.pp svneol=native#text/plain
packages/fcl-db/tests/tcsqlscanner.pas svneol=native#text/plain
packages/fcl-db/tests/test.json svneol=native#text/plain
packages/fcl-db/tests/testbasics.pas svneol=native#text/plain
packages/fcl-db/tests/testbufdatasetstreams.pas svneol=native#text/plain
packages/fcl-db/tests/testdatasources.pas svneol=native#text/plain
packages/fcl-db/tests/testdbbasics.pas svneol=native#text/plain
packages/fcl-db/tests/testdddiff.pp svneol=native#text/plain
packages/fcl-db/tests/testfieldtypes.pas svneol=native#text/plain
packages/fcl-db/tests/testjsondataset.pp svneol=native#text/plain
packages/fcl-db/tests/testspecifictbufdataset.pas svneol=native#text/plain
packages/fcl-db/tests/testsqlfiles.lpi svneol=native#text/plain
packages/fcl-db/tests/testsqlfiles.lpr svneol=native#text/plain
packages/fcl-db/tests/testsqlscanner.lpi svneol=native#text/plain
packages/fcl-db/tests/testsqlscanner.lpr svneol=native#text/plain
packages/fcl-db/tests/testsqlscript.pas svneol=native#text/plain
packages/fcl-db/tests/toolsunit.pas svneol=native#text/plain
packages/fcl-db/tests/xmlxsdexporttestcase1.pas svneol=native#text/plain
packages/fcl-extra/Makefile svneol=native#text/plain
packages/fcl-extra/Makefile.fpc svneol=native#text/plain
packages/fcl-extra/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fcl-extra/examples/Makefile svneol=native#text/plain
packages/fcl-extra/examples/Makefile.fpc svneol=native#text/plain
packages/fcl-extra/examples/daemon.pp svneol=native#text/plain
packages/fcl-extra/examples/daemon.txt svneol=native#text/plain
packages/fcl-extra/fpmake.pp svneol=native#text/pascal
packages/fcl-extra/src/daemonapp.pp svneol=native#text/plain
packages/fcl-extra/src/unix/daemonapp.inc svneol=native#text/plain
packages/fcl-extra/src/win/ServiceManager.pas svneol=native#text/plain
packages/fcl-extra/src/win/daemonapp.inc svneol=native#text/plain
packages/fcl-fpcunit/Makefile svneol=native#text/plain
packages/fcl-fpcunit/Makefile.fpc svneol=native#text/plain
packages/fcl-fpcunit/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fcl-fpcunit/fpmake.pp svneol=native#text/plain
packages/fcl-fpcunit/src/DUnitCompatibleInterface.inc svneol=native#text/plain
packages/fcl-fpcunit/src/README.txt svneol=native#text/plain
packages/fcl-fpcunit/src/consoletestrunner.pas svneol=native#text/plain
packages/fcl-fpcunit/src/demo/consolerunner/suiteconfig.pp svneol=native#text/plain
packages/fcl-fpcunit/src/demo/consolerunner/testrunner.pp svneol=native#text/plain
packages/fcl-fpcunit/src/digesttestreport.pp svneol=native#text/plain
packages/fcl-fpcunit/src/example_output/results.pdf -text
packages/fcl-fpcunit/src/example_output/results.txt svneol=native#text/plain
packages/fcl-fpcunit/src/example_xsl/fpcunit.css svneol=native#text/plain
packages/fcl-fpcunit/src/example_xsl/fpcunit.xsl svneol=native#text/plain
packages/fcl-fpcunit/src/example_xsl/images/lastlink.gif -text
packages/fcl-fpcunit/src/example_xsl/images/link.gif -text
packages/fcl-fpcunit/src/example_xsl/images/minus.gif -text
packages/fcl-fpcunit/src/example_xsl/images/plus.gif -text
packages/fcl-fpcunit/src/example_xsl/images/testcase.gif -text
packages/fcl-fpcunit/src/example_xsl/images/testsuite.gif -text
packages/fcl-fpcunit/src/example_xsl/readme.txt svneol=native#text/plain
packages/fcl-fpcunit/src/example_xsl/scripts/fpcunit.css svneol=native#text/plain
packages/fcl-fpcunit/src/example_xsl/scripts/treeview.js svneol=native#text/plain
packages/fcl-fpcunit/src/exampletests/Makefile svneol=native#text/plain
packages/fcl-fpcunit/src/exampletests/Makefile.fpc svneol=native#text/plain
packages/fcl-fpcunit/src/exampletests/fpcunittests.pp svneol=native#text/plain
packages/fcl-fpcunit/src/exampletests/money.pp svneol=native#text/plain
packages/fcl-fpcunit/src/exampletests/moneytest.pp svneol=native#text/plain
packages/fcl-fpcunit/src/exampletests/testmockobject.pp svneol=native#text/plain
packages/fcl-fpcunit/src/fpcunit.pp svneol=native#text/plain
packages/fcl-fpcunit/src/fpcunitreport.pp svneol=native#text/plain
packages/fcl-fpcunit/src/fpmake.inc svneol=native#text/plain
packages/fcl-fpcunit/src/fpmake.pp svneol=native#text/plain
packages/fcl-fpcunit/src/latextestreport.pp svneol=native#text/plain
packages/fcl-fpcunit/src/plaintestreport.pp svneol=native#text/plain
packages/fcl-fpcunit/src/testdecorator.pp svneol=native#text/plain
packages/fcl-fpcunit/src/testregistry.pp svneol=native#text/plain
packages/fcl-fpcunit/src/testreport.pp svneol=native#text/plain
packages/fcl-fpcunit/src/tests/Makefile svneol=native#text/plain
packages/fcl-fpcunit/src/tests/Makefile.fpc svneol=native#text/plain
packages/fcl-fpcunit/src/tests/asserttest.pp svneol=native#text/plain
packages/fcl-fpcunit/src/tests/frameworktest.pp svneol=native#text/plain
packages/fcl-fpcunit/src/tests/suitetest.pp svneol=native#text/plain
packages/fcl-fpcunit/src/testutils.pp svneol=native#text/plain
packages/fcl-fpcunit/src/ubmockobject.pp svneol=native#text/plain
packages/fcl-fpcunit/src/xmlreporter.pas svneol=native#text/plain
packages/fcl-fpcunit/src/xmltestreport.pp svneol=native#text/plain
packages/fcl-image/Makefile svneol=native#text/plain
packages/fcl-image/Makefile.fpc svneol=native#text/plain
packages/fcl-image/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fcl-image/examples/Makefile svneol=native#text/plain
packages/fcl-image/examples/Makefile.fpc svneol=native#text/plain
packages/fcl-image/examples/drawing.pp svneol=native#text/plain
packages/fcl-image/examples/imgconv.pp svneol=native#text/plain
packages/fcl-image/examples/interpoldemo.pp svneol=native#text/plain
packages/fcl-image/examples/xwdtobmp.pas svneol=native#text/plain
packages/fcl-image/fpmake.pp svneol=native#text/plain
packages/fcl-image/src/bmpcomn.pp svneol=native#text/plain
packages/fcl-image/src/clipping.pp svneol=native#text/plain
packages/fcl-image/src/ellipses.pp svneol=native#text/plain
packages/fcl-image/src/extinterpolation.pp svneol=native#text/plain
packages/fcl-image/src/fpbrush.inc svneol=native#text/plain
packages/fcl-image/src/fpcanvas.inc svneol=native#text/plain
packages/fcl-image/src/fpcanvas.pp svneol=native#text/plain
packages/fcl-image/src/fpcdrawh.inc svneol=native#text/plain
packages/fcl-image/src/fpcolcnv.inc svneol=native#text/plain
packages/fcl-image/src/fpcolhash.pas svneol=native#text/plain
packages/fcl-image/src/fpcolors.inc svneol=native#text/plain
packages/fcl-image/src/fpcompactimg.inc svneol=native#text/plain
packages/fcl-image/src/fpditherer.pas svneol=native#text/plain
packages/fcl-image/src/fpfont.inc svneol=native#text/plain
packages/fcl-image/src/fphandler.inc svneol=native#text/plain
packages/fcl-image/src/fphelper.inc svneol=native#text/plain
packages/fcl-image/src/fpimage.inc svneol=native#text/plain
packages/fcl-image/src/fpimage.pp svneol=native#text/plain
packages/fcl-image/src/fpimgcanv.pp svneol=native#text/plain
packages/fcl-image/src/fpimgcmn.pp svneol=native#text/plain
packages/fcl-image/src/fpimggauss.pp svneol=native#text/plain
packages/fcl-image/src/fpinterpolation.inc svneol=native#text/plain
packages/fcl-image/src/fppalette.inc svneol=native#text/plain
packages/fcl-image/src/fppen.inc svneol=native#text/plain
packages/fcl-image/src/fppixlcanv.pp svneol=native#text/plain
packages/fcl-image/src/fpquantizer.pas svneol=native#text/plain
packages/fcl-image/src/fpreadbmp.pp svneol=native#text/plain
packages/fcl-image/src/fpreadgif.pas svneol=native#text/plain
packages/fcl-image/src/fpreadjpeg.pas svneol=native#text/plain
packages/fcl-image/src/fpreadpcx.pas svneol=native#text/plain
packages/fcl-image/src/fpreadpng.pp svneol=native#text/plain
packages/fcl-image/src/fpreadpnm.pp svneol=native#text/plain
packages/fcl-image/src/fpreadpsd.pas svneol=native#text/plain
packages/fcl-image/src/fpreadtga.pp svneol=native#text/plain
packages/fcl-image/src/fpreadtiff.pas svneol=native#text/plain
packages/fcl-image/src/fpreadxpm.pp svneol=native#text/plain
packages/fcl-image/src/fpreadxwd.pas svneol=native#text/plain
packages/fcl-image/src/fptiffcmn.pas svneol=native#text/plain
packages/fcl-image/src/fpwritebmp.pp svneol=native#text/plain
packages/fcl-image/src/fpwritejpeg.pas svneol=native#text/plain
packages/fcl-image/src/fpwritepcx.pas svneol=native#text/plain
packages/fcl-image/src/fpwritepng.pp svneol=native#text/plain
packages/fcl-image/src/fpwritepnm.pp svneol=native#text/plain
packages/fcl-image/src/fpwritetga.pp svneol=native#text/plain
packages/fcl-image/src/fpwritetiff.pas svneol=native#text/plain
packages/fcl-image/src/fpwritexpm.pp svneol=native#text/plain
packages/fcl-image/src/freetype.pp svneol=native#text/plain
packages/fcl-image/src/freetypeh.pp svneol=native#text/plain
packages/fcl-image/src/ftfont.pp svneol=native#text/plain
packages/fcl-image/src/pcxcomn.pas svneol=native#text/plain
packages/fcl-image/src/pixtools.pp svneol=native#text/plain
packages/fcl-image/src/pngcomn.pp svneol=native#text/plain
packages/fcl-image/src/pscanvas.pp svneol=native#text/plain
packages/fcl-image/src/targacmn.pp svneol=native#text/plain
packages/fcl-image/src/xwdfile.pp svneol=native#text/plain
packages/fcl-js/Makefile svneol=native#text/plain
packages/fcl-js/Makefile.fpc svneol=native#text/plain
packages/fcl-js/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fcl-js/README.TXT svneol=native#text/plain
packages/fcl-js/fpmake.pp svneol=native#text/plain
packages/fcl-js/src/jsbase.pp svneol=native#text/plain
packages/fcl-js/src/jsparser.pp svneol=native#text/plain
packages/fcl-js/src/jsscanner.pp svneol=native#text/plain
packages/fcl-js/src/jstree.pp svneol=native#text/plain
packages/fcl-js/tests/tcparser.pp svneol=native#text/plain
packages/fcl-js/tests/tcscanner.pp svneol=native#text/plain
packages/fcl-js/tests/testjs.ico -text
packages/fcl-js/tests/testjs.lpi svneol=native#text/plain
packages/fcl-js/tests/testjs.lpr svneol=native#text/plain
packages/fcl-js/tests/testjs.manifest svneol=native#text/plain
packages/fcl-js/tests/testjs.rc svneol=native#text/plain
packages/fcl-json/Makefile svneol=native#text/plain
packages/fcl-json/Makefile.fpc svneol=native#text/plain
packages/fcl-json/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fcl-json/examples/confdemo.lpi svneol=native#text/plain
packages/fcl-json/examples/confdemo.pp svneol=native#text/plain
packages/fcl-json/examples/demoformat.pp svneol=native#text/plain
packages/fcl-json/examples/demortti.pp svneol=native#text/plain
packages/fcl-json/examples/parsedemo.lpi svneol=native#text/plain
packages/fcl-json/examples/parsedemo.pp svneol=native#text/plain
packages/fcl-json/examples/simpledemo.lpi svneol=native#text/plain
packages/fcl-json/examples/simpledemo.pp svneol=native#text/plain
packages/fcl-json/fpmake.pp svneol=native#text/plain
packages/fcl-json/src/README.txt svneol=native#text/plain
packages/fcl-json/src/fpjson.pp svneol=native#text/plain
packages/fcl-json/src/fpjsonrtti.pp svneol=native#text/plain
packages/fcl-json/src/jsonconf.pp svneol=native#text/plain
packages/fcl-json/src/jsonparser.pp svneol=native#text/plain
packages/fcl-json/src/jsonscanner.pp svneol=native#text/plain
packages/fcl-json/tests/jsonconftest.pp svneol=native#text/plain
packages/fcl-json/tests/testjson.lpi svneol=native#text/plain
packages/fcl-json/tests/testjson.pp svneol=native#text/plain
packages/fcl-json/tests/testjsonconf.lpi svneol=native#text/plain
packages/fcl-json/tests/testjsonconf.pp svneol=native#text/plain
packages/fcl-json/tests/testjsondata.pp svneol=native#text/plain
packages/fcl-json/tests/testjsonparser.pp svneol=native#text/plain
packages/fcl-json/tests/testjsonrtti.pp svneol=native#text/plain
packages/fcl-net/Makefile svneol=native#text/plain
packages/fcl-net/Makefile.fpc svneol=native#text/plain
packages/fcl-net/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fcl-net/README.txt svneol=native#text/plain
packages/fcl-net/examples/Makefile svneol=native#text/plain
packages/fcl-net/examples/Makefile.fpc svneol=native#text/plain
packages/fcl-net/examples/cnslookup.pp svneol=native#text/plain
packages/fcl-net/examples/ip6test.pp svneol=native#text/plain
packages/fcl-net/examples/readme.txt svneol=native#text/plain
packages/fcl-net/examples/rpccli.pp svneol=native#text/plain
packages/fcl-net/examples/rpcserv.pp svneol=native#text/plain
packages/fcl-net/examples/svrclass.pp svneol=native#text/plain
packages/fcl-net/examples/svrclass_xmlrpc.pp svneol=native#text/plain
packages/fcl-net/examples/testdns.pp svneol=native#text/plain
packages/fcl-net/examples/testhosts.pp svneol=native#text/plain
packages/fcl-net/examples/testhst.pp svneol=native#text/plain
packages/fcl-net/examples/testnet.pp svneol=native#text/plain
packages/fcl-net/examples/testproto.pp svneol=native#text/plain
packages/fcl-net/examples/testsvc.pp svneol=native#text/plain
packages/fcl-net/examples/testuri.pp svneol=native#text/plain
packages/fcl-net/fpmake.pp svneol=native#text/plain
packages/fcl-net/src/cnetdb.pp svneol=native#text/plain
packages/fcl-net/src/fpsock.pp svneol=native#text/plain
packages/fcl-net/src/httpsvlt.pp svneol=native#text/plain
packages/fcl-net/src/netdb.pp svneol=native#text/plain
packages/fcl-net/src/netware/resolve.inc svneol=native#text/plain
packages/fcl-net/src/netwlibc/resolve.inc svneol=native#text/plain
packages/fcl-net/src/os2/resolve.inc svneol=native#text/plain
packages/fcl-net/src/resolve.pp svneol=native#text/plain
packages/fcl-net/src/ssockets.pp svneol=native#text/plain
packages/fcl-net/src/unix/resolve.inc svneol=native#text/plain
packages/fcl-net/src/win/resolve.inc svneol=native#text/plain
packages/fcl-passrc/Makefile svneol=native#text/plain
packages/fcl-passrc/Makefile.fpc svneol=native#text/plain
packages/fcl-passrc/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fcl-passrc/examples/test_parser.pp svneol=native#text/plain
packages/fcl-passrc/examples/testunit1.pp svneol=native#text/plain
packages/fcl-passrc/fpmake.pp svneol=native#text/plain
packages/fcl-passrc/src/passrcutil.pp svneol=native#text/plain
packages/fcl-passrc/src/pastounittest.pp svneol=native#text/plain
packages/fcl-passrc/src/pastree.pp svneol=native#text/plain
packages/fcl-passrc/src/paswrite.pp svneol=native#text/plain
packages/fcl-passrc/src/pparser.pp svneol=native#text/plain
packages/fcl-passrc/src/pscanner.pp svneol=native#text/plain
packages/fcl-passrc/src/readme.txt svneol=native#text/plain
packages/fcl-passrc/tests/tcbaseparser.pas svneol=native#text/plain
packages/fcl-passrc/tests/tcclasstype.pas svneol=native#text/plain
packages/fcl-passrc/tests/tcexprparser.pas svneol=native#text/plain
packages/fcl-passrc/tests/tcmoduleparser.pas svneol=native#text/plain
packages/fcl-passrc/tests/tconstparser.pas svneol=native#text/plain
packages/fcl-passrc/tests/tcpassrcutil.pas svneol=native#text/plain
packages/fcl-passrc/tests/tcprocfunc.pas svneol=native#text/plain
packages/fcl-passrc/tests/tcscanner.pas svneol=native#text/plain
packages/fcl-passrc/tests/tcstatements.pas svneol=native#text/plain
packages/fcl-passrc/tests/tctypeparser.pas svneol=native#text/plain
packages/fcl-passrc/tests/tcvarparser.pas svneol=native#text/plain
packages/fcl-passrc/tests/testpassrc.lpi svneol=native#text/plain
packages/fcl-passrc/tests/testpassrc.lpr svneol=native#text/plain
packages/fcl-process/Makefile svneol=native#text/plain
packages/fcl-process/Makefile.fpc svneol=native#text/plain
packages/fcl-process/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fcl-process/fpmake.pp svneol=native#text/plain
packages/fcl-process/src/dbugintf.pp svneol=native#text/plain
packages/fcl-process/src/dbugmsg.pp svneol=native#text/plain
packages/fcl-process/src/dummy/pipes.inc svneol=native#text/plain
packages/fcl-process/src/dummy/process.inc svneol=native#text/plain
packages/fcl-process/src/dummy/simpleipc.inc svneol=native#text/plain
packages/fcl-process/src/os2/pipes.inc svneol=native#text/plain
packages/fcl-process/src/os2/simpleipc.inc svneol=native#text/plain
packages/fcl-process/src/pipes.pp svneol=native#text/plain
packages/fcl-process/src/pipesipc.pp svneol=native#text/plain
packages/fcl-process/src/process.pp svneol=native#text/plain
packages/fcl-process/src/process.txt svneol=native#text/plain
packages/fcl-process/src/simpleipc.pp svneol=native#text/plain
packages/fcl-process/src/unix/pipes.inc svneol=native#text/plain
packages/fcl-process/src/unix/process.inc svneol=native#text/plain
packages/fcl-process/src/unix/simpleipc.inc svneol=native#text/plain
packages/fcl-process/src/win/pipes.inc svneol=native#text/plain
packages/fcl-process/src/win/process.inc svneol=native#text/plain
packages/fcl-process/src/win/simpleipc.inc svneol=native#text/plain
packages/fcl-process/src/wince/process.inc svneol=native#text/plain
packages/fcl-process/src/wince/simpleipc.inc svneol=native#text/plain
packages/fcl-registry/Makefile svneol=native#text/plain
packages/fcl-registry/Makefile.fpc svneol=native#text/plain
packages/fcl-registry/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fcl-registry/fpmake.pp svneol=native#text/plain
packages/fcl-registry/src/regdef.inc svneol=native#text/plain
packages/fcl-registry/src/regini.inc svneol=native#text/plain
packages/fcl-registry/src/registry.pp svneol=native#text/plain
packages/fcl-registry/src/winreg.inc svneol=native#text/plain
packages/fcl-registry/src/xmlreg.pp svneol=native#text/plain
packages/fcl-registry/src/xregreg.inc svneol=native#text/plain
packages/fcl-registry/tests/Makefile svneol=native#text/plain
packages/fcl-registry/tests/Makefile.fpc -text
packages/fcl-registry/tests/regtestframework.pp -text
packages/fcl-registry/tests/testbasics.pp svneol=native#text/plain
packages/fcl-res/Makefile svneol=native#text/plain
packages/fcl-res/Makefile.fpc svneol=native#text/plain
packages/fcl-res/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fcl-res/fpmake.pp svneol=native#text/plain
packages/fcl-res/src/acceleratorsresource.pp svneol=native#text/plain
packages/fcl-res/src/bitmapresource.pp svneol=native#text/plain
packages/fcl-res/src/coffconsts.pp svneol=native#text/plain
packages/fcl-res/src/coffreader.pp svneol=native#text/plain
packages/fcl-res/src/cofftypes.pp svneol=native#text/plain
packages/fcl-res/src/coffwriter.pp svneol=native#text/plain
packages/fcl-res/src/dfmreader.pp svneol=native#text/plain
packages/fcl-res/src/elfconsts.pp svneol=native#text/plain
packages/fcl-res/src/elfdefaulttarget.inc svneol=native#text/plain
packages/fcl-res/src/elfreader.pp svneol=native#text/plain
packages/fcl-res/src/elfsubreader.inc svneol=native#text/plain
packages/fcl-res/src/elfsubwriter.inc svneol=native#text/plain
packages/fcl-res/src/elftypes.pp svneol=native#text/plain
packages/fcl-res/src/elfwriter.pp svneol=native#text/plain
packages/fcl-res/src/externalreader.pp svneol=native#text/plain
packages/fcl-res/src/externaltypes.pp svneol=native#text/plain
packages/fcl-res/src/externalwriter.pp svneol=native#text/plain
packages/fcl-res/src/fpcrestypes.pp svneol=native#text/plain
packages/fcl-res/src/groupcursorresource.pp svneol=native#text/plain
packages/fcl-res/src/groupiconresource.pp svneol=native#text/plain
packages/fcl-res/src/groupresource.pp svneol=native#text/plain
packages/fcl-res/src/icocurtypes.pp svneol=native#text/plain
packages/fcl-res/src/machoconsts.pp svneol=native#text/plain
packages/fcl-res/src/machodefaulttarget.inc svneol=native#text/plain
packages/fcl-res/src/machoreader.pp svneol=native#text/plain
packages/fcl-res/src/machosubreader.inc svneol=native#text/plain
packages/fcl-res/src/machosubwriter.inc svneol=native#text/plain
packages/fcl-res/src/machotypes.pp svneol=native#text/plain
packages/fcl-res/src/machowriter.pp svneol=native#text/plain
packages/fcl-res/src/resdatastream.pp svneol=native#text/plain
packages/fcl-res/src/resfactory.pp svneol=native#text/plain
packages/fcl-res/src/resmerger.pp svneol=native#text/plain
packages/fcl-res/src/resource.pp svneol=native#text/plain
packages/fcl-res/src/resourcetree.pp svneol=native#text/plain
packages/fcl-res/src/resreader.pp svneol=native#text/plain
packages/fcl-res/src/reswriter.pp svneol=native#text/plain
packages/fcl-res/src/stringtableresource.pp svneol=native#text/plain
packages/fcl-res/src/strtable.pp svneol=native#text/plain
packages/fcl-res/src/tlbreader.pp svneol=native#text/plain
packages/fcl-res/src/versionconsts.pp svneol=native#text/plain
packages/fcl-res/src/versionresource.pp svneol=native#text/plain
packages/fcl-res/src/versiontypes.pp svneol=native#text/plain
packages/fcl-res/src/winpeimagereader.pp svneol=native#text/plain
packages/fcl-res/src/xcoffwriter.pp svneol=native#text/plain
packages/fcl-res/xml/acceleratorsresource.xml svneol=native#text/plain
packages/fcl-res/xml/bitmapresource.xml svneol=native#text/plain
packages/fcl-res/xml/clean.sh svneol=native#text/plain
packages/fcl-res/xml/coffreader.xml svneol=native#text/plain
packages/fcl-res/xml/cofftypes.xml svneol=native#text/plain
packages/fcl-res/xml/coffwriter.xml svneol=native#text/plain
packages/fcl-res/xml/dfmreader.xml svneol=native#text/plain
packages/fcl-res/xml/elfconsts.xml svneol=native#text/plain
packages/fcl-res/xml/elfreader.xml svneol=native#text/plain
packages/fcl-res/xml/elfwriter.xml svneol=native#text/plain
packages/fcl-res/xml/externalreader.xml svneol=native#text/plain
packages/fcl-res/xml/externaltypes.xml svneol=native#text/plain
packages/fcl-res/xml/externalwriter.xml svneol=native#text/plain
packages/fcl-res/xml/fpdoc.css svneol=native#text/plain
packages/fcl-res/xml/groupcursorresource.xml svneol=native#text/plain
packages/fcl-res/xml/groupiconresource.xml svneol=native#text/plain
packages/fcl-res/xml/groupresource.xml svneol=native#text/plain
packages/fcl-res/xml/machoreader.xml svneol=native#text/plain
packages/fcl-res/xml/machotypes.xml svneol=native#text/plain
packages/fcl-res/xml/machowriter.xml svneol=native#text/plain
packages/fcl-res/xml/makehtml.sh svneol=native#text/plain
packages/fcl-res/xml/resdatastream.xml svneol=native#text/plain
packages/fcl-res/xml/resfactory.xml svneol=native#text/plain
packages/fcl-res/xml/resource.xml svneol=native#text/plain
packages/fcl-res/xml/resourcetree.xml svneol=native#text/plain
packages/fcl-res/xml/resreader.xml svneol=native#text/plain
packages/fcl-res/xml/reswriter.xml svneol=native#text/plain
packages/fcl-res/xml/stringtableresource.xml svneol=native#text/plain
packages/fcl-res/xml/versionconsts.xml svneol=native#text/plain
packages/fcl-res/xml/versionresource.xml svneol=native#text/plain
packages/fcl-res/xml/versiontypes.xml svneol=native#text/plain
packages/fcl-res/xml/winpeimagereader.xml svneol=native#text/plain
packages/fcl-sdo/Makefile.fpc svneol=native#text/plain
packages/fcl-sdo/README svneol=native#text/plain
packages/fcl-sdo/examples/changes-summary/project.pas svneol=native#text/plain
packages/fcl-sdo/examples/changes-summary2/out.xsd svneol=native#text/plain
packages/fcl-sdo/examples/changes-summary2/project.pas svneol=native#text/plain
packages/fcl-sdo/examples/load-embedded-schema/project.pas svneol=native#text/plain
packages/fcl-sdo/examples/simple/simple.pas svneol=native#text/plain
packages/fcl-sdo/examples/xsd2pas/xsd2pas.lpi svneol=native#text/plain
packages/fcl-sdo/examples/xsd2pas/xsd2pas.pas svneol=native#text/plain
packages/fcl-sdo/src/base/pas_generator.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_binary_streamer.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_changesummary.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_consts.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_cursor_intf.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_datafactory.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_dataobject.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_date_utils.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_dom_cursors.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_field_imp.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_fpc_xml.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_global.inc svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_imp_utils.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_linked_list.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_locators.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_logger_intf.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_parserutils.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_rtti_filters.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_serialization.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_serialization_binary.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_serialization_utils.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_serialization_xml.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_type.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_types.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_utils.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_xpath_helper.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_xsd_helper.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_xsdintf.pas svneol=native#text/plain
packages/fcl-sdo/src/base/sdo_xsdparser.pas svneol=native#text/plain
packages/fcl-sdo/src/base/xsd_consts.pas svneol=native#text/plain
packages/fcl-sdo/src/base/xsd_generator.pas svneol=native#text/plain
packages/fcl-sdo/src/das/data_acces_intf.pas svneol=native#text/plain
packages/fcl-sdo/src/das/sdo_das.pas svneol=native#text/plain
packages/fcl-sdo/src/das/sdo_das_imp.pas svneol=native#text/plain
packages/fcl-sdo/src/das/sdo_das_utils.pas svneol=native#text/plain
packages/fcl-sdo/src/das/sdo_global.inc svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/projects/dunit_tests.pas svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/projects/sdo_test_suite.lpi svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/projects/sdo_test_suite.lpr svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/projects/sdo_test_suite_gui.lpi svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/projects/sdo_test_suite_gui.lpr svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/projects/testrunner.pp svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/test_changesummary.pas svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/test_convert_helper.pas svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/test_copyhelper.pas svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/test_dataobject.pas svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/test_dataobjectlist.pas svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/test_equalityhelper.pas svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/test_field_imp.pas svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/test_property.pas svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/test_serializer.pas svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/test_suite_utils.pas svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/test_type.pas svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/test_utils.pas svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/test_xpathhelper.pas svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/test_xsdhelper.pas svneol=native#text/plain
packages/fcl-sdo/tests/test_suite/test_xsdparser.pas svneol=native#text/plain
packages/fcl-stl/Makefile svneol=native#text/plain
packages/fcl-stl/Makefile.fpc svneol=native#text/plain
packages/fcl-stl/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fcl-stl/doc/arrayutils.tex svneol=native#text/plain
packages/fcl-stl/doc/deque.tex svneol=native#text/plain
packages/fcl-stl/doc/dequeexample.pp svneol=native#text/plain
packages/fcl-stl/doc/hashmap.tex svneol=native#text/plain
packages/fcl-stl/doc/hashmapexample.pp svneol=native#text/plain
packages/fcl-stl/doc/hashset.tex svneol=native#text/plain
packages/fcl-stl/doc/hashsetexample.pp svneol=native#text/plain
packages/fcl-stl/doc/main.pdf -text
packages/fcl-stl/doc/main.tex svneol=native#text/plain
packages/fcl-stl/doc/makra.tex svneol=native#text/plain
packages/fcl-stl/doc/map.tex svneol=native#text/plain
packages/fcl-stl/doc/mapexample.pp svneol=native#text/plain
packages/fcl-stl/doc/priorityqueue.tex svneol=native#text/plain
packages/fcl-stl/doc/priorityqueueexample.pp svneol=native#text/plain
packages/fcl-stl/doc/queue.tex svneol=native#text/plain
packages/fcl-stl/doc/queueexample.pp svneol=native#text/plain
packages/fcl-stl/doc/set.tex svneol=native#text/plain
packages/fcl-stl/doc/setexample.pp svneol=native#text/plain
packages/fcl-stl/doc/sortingexample.pp svneol=native#text/plain
packages/fcl-stl/doc/stack.tex svneol=native#text/plain
packages/fcl-stl/doc/stackexample.pp svneol=native#text/plain
packages/fcl-stl/doc/util.tex svneol=native#text/plain
packages/fcl-stl/doc/vector.tex svneol=native#text/plain
packages/fcl-stl/doc/vectorexample.pp svneol=native#text/plain
packages/fcl-stl/fpmake.pp svneol=native#text/pascal
packages/fcl-stl/src/garrayutils.pp svneol=native#text/plain
packages/fcl-stl/src/gdeque.pp svneol=native#text/plain
packages/fcl-stl/src/ghashmap.pp svneol=native#text/plain
packages/fcl-stl/src/ghashset.pp svneol=native#text/plain
packages/fcl-stl/src/gmap.pp svneol=native#text/plain
packages/fcl-stl/src/gpriorityqueue.pp svneol=native#text/plain
packages/fcl-stl/src/gqueue.pp svneol=native#text/plain
packages/fcl-stl/src/gset.pp svneol=native#text/plain
packages/fcl-stl/src/gstack.pp svneol=native#text/plain
packages/fcl-stl/src/gutil.pp svneol=native#text/plain
packages/fcl-stl/src/gvector.pp svneol=native#text/plain
packages/fcl-stl/tests/clean svneol=native#text/plain
packages/fcl-stl/tests/garrayutilstest.pp svneol=native#text/plain
packages/fcl-stl/tests/gcompositetest.pp svneol=native#text/plain
packages/fcl-stl/tests/gdequetest.pp svneol=native#text/plain
packages/fcl-stl/tests/ghashmaptest.pp svneol=native#text/plain
packages/fcl-stl/tests/ghashsettest.pp svneol=native#text/plain
packages/fcl-stl/tests/gmaptest.pp svneol=native#text/plain
packages/fcl-stl/tests/gmaptestzal.pp svneol=native#text/plain
packages/fcl-stl/tests/gpriorityqueuetest.pp svneol=native#text/plain
packages/fcl-stl/tests/gqueuetest.pp svneol=native#text/plain
packages/fcl-stl/tests/gsetrefcounttest.pp svneol=native#text/plain
packages/fcl-stl/tests/gsettest.pp svneol=native#text/plain
packages/fcl-stl/tests/gstacktest.pp svneol=native#text/plain
packages/fcl-stl/tests/gvectortest.pp svneol=native#text/plain
packages/fcl-stl/tests/run-all-tests svneol=native#text/plain
packages/fcl-stl/tests/suiteconfig.pp svneol=native#text/plain
packages/fcl-stl/tests/testrunner.pp svneol=native#text/plain
packages/fcl-web/Makefile svneol=native#text/plain
packages/fcl-web/Makefile.fpc svneol=native#text/plain
packages/fcl-web/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fcl-web/examples/combined/combined.html svneol=native#text/plain
packages/fcl-web/examples/combined/combined.ico -text
packages/fcl-web/examples/combined/combined.ini svneol=native#text/plain
packages/fcl-web/examples/combined/combined.lpi svneol=native#text/plain
packages/fcl-web/examples/combined/combined.lpr svneol=native#text/plain
packages/fcl-web/examples/combined/combined.res -text
packages/fcl-web/examples/combined/combined.sql svneol=native#text/plain
packages/fcl-web/examples/combined/login.js svneol=native#text/plain
packages/fcl-web/examples/combined/login.png -text svneol=unset#image/png
packages/fcl-web/examples/combined/users.html svneol=native#text/plain
packages/fcl-web/examples/combined/users.js svneol=native#text/plain
packages/fcl-web/examples/combined/users.sql svneol=native#text/plain
packages/fcl-web/examples/combined/wmlogin.lfm svneol=native#text/plain
packages/fcl-web/examples/combined/wmlogin.pp svneol=native#text/plain
packages/fcl-web/examples/combined/wmusers.lfm svneol=native#text/plain
packages/fcl-web/examples/combined/wmusers.pp svneol=native#text/plain
packages/fcl-web/examples/echo/README.txt svneol=native#text/plain
packages/fcl-web/examples/echo/apache/echo.lpi svneol=native#text/plain
packages/fcl-web/examples/echo/apache/echo.lpr svneol=native#text/plain
packages/fcl-web/examples/echo/apache/echo.res -text
packages/fcl-web/examples/echo/cgi/echo.lpi svneol=native#text/plain
packages/fcl-web/examples/echo/cgi/echo.lpr svneol=native#text/plain
packages/fcl-web/examples/echo/cgi/echo.res -text
packages/fcl-web/examples/echo/fcgi/echo.lpi svneol=native#text/plain
packages/fcl-web/examples/echo/fcgi/echo.lpr svneol=native#text/plain
packages/fcl-web/examples/echo/fcgi/echo.res -text
packages/fcl-web/examples/echo/webmodule/wmecho.lfm svneol=native#text/plain
packages/fcl-web/examples/echo/webmodule/wmecho.pas svneol=native#text/plain
packages/fcl-web/examples/fptemplate/README.txt svneol=native#text/plain
packages/fcl-web/examples/fptemplate/embedtemplates/README.txt svneol=native#text/plain
packages/fcl-web/examples/fptemplate/embedtemplates/apache/embedtemplates.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/embedtemplates/apache/embedtemplates.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/embedtemplates/apache/embedtemplates.res -text
packages/fcl-web/examples/fptemplate/embedtemplates/cgi/embedtemplates.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/embedtemplates/cgi/embedtemplates.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/embedtemplates/cgi/embedtemplates.res -text
packages/fcl-web/examples/fptemplate/embedtemplates/fcgi/embedtemplates.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/embedtemplates/fcgi/embedtemplates.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/embedtemplates/fcgi/embedtemplates.res -text
packages/fcl-web/examples/fptemplate/embedtemplates/templates/body.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/embedtemplates/templates/body_left.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/embedtemplates/templates/body_right.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/embedtemplates/templates/bottom.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/embedtemplates/templates/maintemplate.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/embedtemplates/templates/top.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/embedtemplates/webmodule/webmodule.lfm svneol=native#text/plain
packages/fcl-web/examples/fptemplate/embedtemplates/webmodule/webmodule.pas svneol=native#text/plain
packages/fcl-web/examples/fptemplate/fileupload/README.txt svneol=native#text/plain
packages/fcl-web/examples/fptemplate/fileupload/apache/fileupload.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/fileupload/apache/fileupload.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/fileupload/apache/fileupload.res -text
packages/fcl-web/examples/fptemplate/fileupload/cgi/fileupload.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/fileupload/cgi/fileupload.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/fileupload/cgi/fileupload.res -text
packages/fcl-web/examples/fptemplate/fileupload/fcgi/fileupload.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/fileupload/fcgi/fileupload.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/fileupload/fcgi/fileupload.res -text
packages/fcl-web/examples/fptemplate/fileupload/templates/uploadform.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/fileupload/webmodule/webmodule.lfm svneol=native#text/plain
packages/fcl-web/examples/fptemplate/fileupload/webmodule/webmodule.pas svneol=native#text/plain
packages/fcl-web/examples/fptemplate/listrecords/README.txt svneol=native#text/plain
packages/fcl-web/examples/fptemplate/listrecords/apache/listrecords.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/listrecords/apache/listrecords.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/listrecords/apache/listrecords.res -text
packages/fcl-web/examples/fptemplate/listrecords/cgi/listrecords.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/listrecords/cgi/listrecords.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/listrecords/cgi/listrecords.res -text
packages/fcl-web/examples/fptemplate/listrecords/fcgi/listrecords.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/listrecords/fcgi/listrecords.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/listrecords/fcgi/listrecords.res -text
packages/fcl-web/examples/fptemplate/listrecords/templates/mytemplate3.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/listrecords/webmodule/webmodule.lfm svneol=native#text/plain
packages/fcl-web/examples/fptemplate/listrecords/webmodule/webmodule.pas svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-auto/README.txt svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-auto/apache/autosession.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-auto/apache/autosession.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-auto/apache/autosession.res -text
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-auto/cgi/autosession.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-auto/cgi/autosession.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-auto/cgi/autosession.res -text
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-auto/fcgi/autosession.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-auto/fcgi/autosession.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-auto/fcgi/autosession.res -text
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-auto/templates/autosession-template.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-auto/webmodule/webmodule.lfm svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-auto/webmodule/webmodule.pas svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/README.txt svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/apache/cookiesession.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/apache/cookiesession.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/apache/cookiesession.res -text
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/cgi/cookiesession.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/cgi/cookiesession.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/cgi/cookiesession.res -text
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/fcgi/cookiesession.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/fcgi/cookiesession.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/fcgi/cookiesession.res -text
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/templates/testlogin.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/templates/testlogout.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/templates/testsomepage.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/templates/testwelcome.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/templates/userdb.txt svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/webmodule/webmodule.lfm svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/cookiesessions-login/webmodule/webmodule.pas svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/README.txt svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/apache/urlsession.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/apache/urlsession.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/apache/urlsession.res -text
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/cgi/urlsession.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/cgi/urlsession.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/cgi/urlsession.res -text
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/fcgi/urlsession.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/fcgi/urlsession.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/fcgi/urlsession.res -text
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/templates/testurllogin.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/templates/testurllogout.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/templates/testurlsomepage.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/templates/testurlwelcome.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/templates/userdb.txt svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/webmodule/webmodule.lfm svneol=native#text/plain
packages/fcl-web/examples/fptemplate/sessions/urlsessions-login/webmodule/webmodule.pas svneol=native#text/plain
packages/fcl-web/examples/fptemplate/simpletemplate/README.txt svneol=native#text/plain
packages/fcl-web/examples/fptemplate/simpletemplate/apache/simpletemplate.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/simpletemplate/apache/simpletemplate.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/simpletemplate/apache/simpletemplate.res -text
packages/fcl-web/examples/fptemplate/simpletemplate/cgi/simpletemplate.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/simpletemplate/cgi/simpletemplate.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/simpletemplate/cgi/simpletemplate.res -text
packages/fcl-web/examples/fptemplate/simpletemplate/fcgi/simpletemplate.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/simpletemplate/fcgi/simpletemplate.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/simpletemplate/fcgi/simpletemplate.res -text
packages/fcl-web/examples/fptemplate/simpletemplate/templates/mytemplate1.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/simpletemplate/webmodule/webmodule.lfm svneol=native#text/plain
packages/fcl-web/examples/fptemplate/simpletemplate/webmodule/webmodule.pas svneol=native#text/plain
packages/fcl-web/examples/fptemplate/tagparam/README.txt svneol=native#text/plain
packages/fcl-web/examples/fptemplate/tagparam/apache/tagparam.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/tagparam/apache/tagparam.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/tagparam/apache/tagparam.res -text
packages/fcl-web/examples/fptemplate/tagparam/cgi/tagparam.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/tagparam/cgi/tagparam.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/tagparam/cgi/tagparam.res -text
packages/fcl-web/examples/fptemplate/tagparam/fcgi/tagparam.lpi svneol=native#text/plain
packages/fcl-web/examples/fptemplate/tagparam/fcgi/tagparam.lpr svneol=native#text/plain
packages/fcl-web/examples/fptemplate/tagparam/fcgi/tagparam.res -text
packages/fcl-web/examples/fptemplate/tagparam/templates/mytemplate2.html svneol=native#text/plain
packages/fcl-web/examples/fptemplate/tagparam/webmodule/webmodule.lfm svneol=native#text/plain
packages/fcl-web/examples/fptemplate/tagparam/webmodule/webmodule.pas svneol=native#text/plain
packages/fcl-web/examples/helloworld/README.txt svneol=native#text/plain
packages/fcl-web/examples/helloworld/apache/helloworld.lpi svneol=native#text/plain
packages/fcl-web/examples/helloworld/apache/helloworld.lpr svneol=native#text/plain
packages/fcl-web/examples/helloworld/apache/helloworld.res -text
packages/fcl-web/examples/helloworld/cgi/helloworld.lpi svneol=native#text/plain
packages/fcl-web/examples/helloworld/cgi/helloworld.lpr svneol=native#text/plain
packages/fcl-web/examples/helloworld/cgi/helloworld.res -text
packages/fcl-web/examples/helloworld/fcgi/helloworld.lpi svneol=native#text/plain
packages/fcl-web/examples/helloworld/fcgi/helloworld.lpr svneol=native#text/plain
packages/fcl-web/examples/helloworld/fcgi/helloworld.res -text
packages/fcl-web/examples/helloworld/webmodule/webmodule.lfm svneol=native#text/plain
packages/fcl-web/examples/helloworld/webmodule/webmodule.pas svneol=native#text/plain
packages/fcl-web/examples/httpapp/testhttp.lpi svneol=native#text/plain
packages/fcl-web/examples/httpapp/testhttp.pp svneol=native#text/plain
packages/fcl-web/examples/httpclient/httpget.lpi svneol=native#text/plain
packages/fcl-web/examples/httpclient/httpget.pas svneol=native#text/plain
packages/fcl-web/examples/httpclient/httppost.lpi svneol=native#text/plain
packages/fcl-web/examples/httpclient/httppost.pp svneol=native#text/plain
packages/fcl-web/examples/httpclient/httppostfile.lpi svneol=native#text/plain
packages/fcl-web/examples/httpclient/httppostfile.pp svneol=native#text/plain
packages/fcl-web/examples/httpserver/simplehttpserver.lpi svneol=native#text/plain
packages/fcl-web/examples/httpserver/simplehttpserver.pas svneol=native#text/plain
packages/fcl-web/examples/jsonrpc/demo1/README.txt svneol=native#text/plain
packages/fcl-web/examples/jsonrpc/demo1/demo.lpi svneol=native#text/plain
packages/fcl-web/examples/jsonrpc/demo1/demo.lpr svneol=native#text/plain
packages/fcl-web/examples/jsonrpc/demo1/echo.in svneol=native#text/plain
packages/fcl-web/examples/jsonrpc/demo1/echobatch.in svneol=native#text/plain
packages/fcl-web/examples/jsonrpc/demo1/extdirect.in svneol=native#text/plain
packages/fcl-web/examples/jsonrpc/demo1/notification.in svneol=native#text/plain
packages/fcl-web/examples/jsonrpc/demo1/wmdemo.lfm svneol=native#text/plain
packages/fcl-web/examples/jsonrpc/demo1/wmdemo.pp svneol=native#text/plain
packages/fcl-web/examples/jsonrpc/extdirect/extdemo.html svneol=native#text/plain
packages/fcl-web/examples/jsonrpc/extdirect/extdemo.js svneol=native#text/plain
packages/fcl-web/examples/jsonrpc/extdirect/extdemo.lpi svneol=native#text/plain
packages/fcl-web/examples/jsonrpc/extdirect/extdemo.lpr svneol=native#text/plain
packages/fcl-web/examples/jsonrpc/extdirect/extdirect.in svneol=native#text/plain
packages/fcl-web/examples/jsonrpc/extdirect/wmext.lfm svneol=native#text/plain
packages/fcl-web/examples/jsonrpc/extdirect/wmext.pp svneol=native#text/plain
packages/fcl-web/examples/session/sessiondemo.lpi svneol=native#text/plain
packages/fcl-web/examples/session/sessiondemo.lpr svneol=native#text/plain
packages/fcl-web/examples/session/wmsession.lfm svneol=native#text/plain
packages/fcl-web/examples/session/wmsession.pp svneol=native#text/plain
packages/fcl-web/examples/webdata/demo/createusers.lpi svneol=native#text/plain
packages/fcl-web/examples/webdata/demo/createusers.lpr svneol=native#text/plain
packages/fcl-web/examples/webdata/demo/extgrid-json.html svneol=native#text/plain
packages/fcl-web/examples/webdata/demo/extgrid-json.js svneol=native#text/plain
packages/fcl-web/examples/webdata/demo/extgrid-xml.html svneol=native#text/plain
packages/fcl-web/examples/webdata/demo/extgrid-xml.js svneol=native#text/plain
packages/fcl-web/examples/webdata/demo/extgrid.lpi svneol=native#text/plain
packages/fcl-web/examples/webdata/demo/extgrid.lpr svneol=native#text/plain
packages/fcl-web/examples/webdata/demo/lazwebdata.pas svneol=native#text/plain
packages/fcl-web/examples/webdata/demo/reglazwebdata.pp svneol=native#text/plain
packages/fcl-web/examples/webdata/demo/wmusers.lfm svneol=native#text/plain
packages/fcl-web/examples/webdata/demo/wmusers.pp svneol=native#text/plain
packages/fcl-web/examples/webdata/demo2/extgrid-json.html svneol=native#text/plain
packages/fcl-web/examples/webdata/demo2/extgrid-json.js svneol=native#text/plain
packages/fcl-web/examples/webdata/demo2/extgrid-xml.html svneol=native#text/plain
packages/fcl-web/examples/webdata/demo2/extgrid-xml.js svneol=native#text/plain
packages/fcl-web/examples/webdata/demo2/extgrid.lpi svneol=native#text/plain
packages/fcl-web/examples/webdata/demo2/extgrid.lpr svneol=native#text/plain
packages/fcl-web/examples/webdata/demo2/wmusers.lfm svneol=native#text/plain
packages/fcl-web/examples/webdata/demo2/wmusers.pp svneol=native#text/plain
packages/fcl-web/examples/webdata/demo3/extgrid-json.html svneol=native#text/plain
packages/fcl-web/examples/webdata/demo3/extgrid-json.js svneol=native#text/plain
packages/fcl-web/examples/webdata/demo3/extgrid-xml.html svneol=native#text/plain
packages/fcl-web/examples/webdata/demo3/extgrid-xml.js svneol=native#text/plain
packages/fcl-web/examples/webdata/demo3/extgrid.lpi svneol=native#text/plain
packages/fcl-web/examples/webdata/demo3/extgrid.lpr svneol=native#text/plain
packages/fcl-web/examples/webdata/demo3/tralala.lfm svneol=native#text/plain
packages/fcl-web/examples/webdata/demo3/tralala.pp svneol=native#text/plain
packages/fcl-web/examples/webdata/demo3/wmusers.lfm svneol=native#text/plain
packages/fcl-web/examples/webdata/demo3/wmusers.pp svneol=native#text/plain
packages/fcl-web/examples/webdata/demo4/dmusers.lfm svneol=native#text/plain
packages/fcl-web/examples/webdata/demo4/dmusers.pp svneol=native#text/plain
packages/fcl-web/examples/webdata/demo4/extgrid-json.html svneol=native#text/plain
packages/fcl-web/examples/webdata/demo4/extgrid-json.js svneol=native#text/plain
packages/fcl-web/examples/webdata/demo4/extgrid-xml.html svneol=native#text/plain
packages/fcl-web/examples/webdata/demo4/extgrid-xml.js svneol=native#text/plain
packages/fcl-web/examples/webdata/demo4/extgrid.lpi svneol=native#text/plain
packages/fcl-web/examples/webdata/demo4/extgrid.lpr svneol=native#text/plain
packages/fcl-web/examples/webdata/demo4/wmjsonusers.lfm svneol=native#text/plain
packages/fcl-web/examples/webdata/demo4/wmjsonusers.pp svneol=native#text/plain
packages/fcl-web/examples/webdata/demo4/wmxmlusers.lfm svneol=native#text/plain
packages/fcl-web/examples/webdata/demo4/wmxmlusers.pp svneol=native#text/plain
packages/fcl-web/examples/webdata/demo5/extgrid-json.html svneol=native#text/plain
packages/fcl-web/examples/webdata/demo5/extgrid-json.js svneol=native#text/plain
packages/fcl-web/examples/webdata/demo5/extgrid-xml.html svneol=native#text/plain
packages/fcl-web/examples/webdata/demo5/extgrid-xml.js svneol=native#text/plain
packages/fcl-web/examples/webdata/demo5/extgrid.lpi svneol=native#text/plain
packages/fcl-web/examples/webdata/demo5/extgrid.lpr svneol=native#text/plain
packages/fcl-web/examples/webdata/demo5/wmusers.lfm svneol=native#text/plain
packages/fcl-web/examples/webdata/demo5/wmusers.pp svneol=native#text/plain
packages/fcl-web/examples/webdata/demo6/extgrid-json.html svneol=native#text/plain
packages/fcl-web/examples/webdata/demo6/extgrid-json.js svneol=native#text/plain
packages/fcl-web/examples/webdata/demo6/extgrid-xml.html svneol=native#text/plain
packages/fcl-web/examples/webdata/demo6/extgrid-xml.js svneol=native#text/plain
packages/fcl-web/examples/webdata/demo6/extgrid.ini svneol=native#text/plain
packages/fcl-web/examples/webdata/demo6/extgrid.lpi svneol=native#text/plain
packages/fcl-web/examples/webdata/demo6/extgrid.lpr svneol=native#text/plain
packages/fcl-web/examples/webdata/demo6/wmusers.lfm svneol=native#text/plain
packages/fcl-web/examples/webdata/demo6/wmusers.pp svneol=native#text/plain
packages/fcl-web/examples/webdata/demos.txt svneol=native#text/plain
packages/fcl-web/examples/webdata/users.dbf -text
packages/fcl-web/fpmake.pp svneol=native#text/plain
packages/fcl-web/src/base/FCGI-README.txt svneol=native#text/plain
packages/fcl-web/src/base/Makefile svneol=native#text/plain
packages/fcl-web/src/base/Makefile.fpc svneol=native#text/plain
packages/fcl-web/src/base/README.txt svneol=native#text/plain
packages/fcl-web/src/base/cgiapp.pp svneol=native#text/plain
packages/fcl-web/src/base/custcgi.pp svneol=native#text/plain
packages/fcl-web/src/base/custfcgi.pp svneol=native#text/plain
packages/fcl-web/src/base/custhttpapp.pp svneol=native#text/plain
packages/fcl-web/src/base/custweb.pp svneol=native#text/plain
packages/fcl-web/src/base/ezcgi.pp svneol=native#text/plain
packages/fcl-web/src/base/fcgigate.pp svneol=native#text/plain
packages/fcl-web/src/base/fpapache.pp svneol=native#text/plain
packages/fcl-web/src/base/fpcgi.pp svneol=native#text/plain
packages/fcl-web/src/base/fpdatasetform.pp svneol=native#text/plain
packages/fcl-web/src/base/fpfcgi.pp svneol=native#text/plain
packages/fcl-web/src/base/fphtml.pp svneol=native#text/plain
packages/fcl-web/src/base/fphttp.pp svneol=native#text/plain
packages/fcl-web/src/base/fphttpapp.pp svneol=native#text/plain
packages/fcl-web/src/base/fphttpclient.pp svneol=native#text/plain
packages/fcl-web/src/base/fphttpserver.pp svneol=native#text/plain
packages/fcl-web/src/base/fphttpstatus.pas svneol=native#text/plain
packages/fcl-web/src/base/fpweb.pp svneol=native#text/plain
packages/fcl-web/src/base/fpwebfile.pp svneol=native#text/plain
packages/fcl-web/src/base/httpdefs.pp svneol=native#text/plain
packages/fcl-web/src/base/iniwebsession.pp svneol=native#text/plain
packages/fcl-web/src/base/webpage.pp svneol=native#text/plain
packages/fcl-web/src/base/websession.pp svneol=native#text/plain
packages/fcl-web/src/base/webutil.pp svneol=native#text/plain
packages/fcl-web/src/jsonrpc/Makefile svneol=native#text/plain
packages/fcl-web/src/jsonrpc/Makefile.fpc svneol=native#text/plain
packages/fcl-web/src/jsonrpc/fpextdirect.pp svneol=native#text/plain
packages/fcl-web/src/jsonrpc/fpjsonrpc.pp svneol=native#text/plain
packages/fcl-web/src/jsonrpc/readme.txt svneol=native#text/plain
packages/fcl-web/src/jsonrpc/webjsonrpc.pp svneol=native#text/plain
packages/fcl-web/src/webdata/Makefile svneol=native#text/plain
packages/fcl-web/src/webdata/Makefile.fpc svneol=native#text/plain
packages/fcl-web/src/webdata/extjsjson.pp svneol=native#text/plain
packages/fcl-web/src/webdata/extjsxml.pp svneol=native#text/plain
packages/fcl-web/src/webdata/fpextjs.pp svneol=native#text/plain
packages/fcl-web/src/webdata/fpwebdata.pp svneol=native#text/plain
packages/fcl-web/src/webdata/readme.txt svneol=native#text/plain
packages/fcl-web/src/webdata/sqldbwebdata.pp svneol=native#text/plain
packages/fcl-web/tests/cgigateway.lpi svneol=native#text/plain
packages/fcl-web/tests/cgigateway.pp svneol=native#text/plain
packages/fcl-web/tests/testcgiapp.lpi svneol=native#text/plain
packages/fcl-web/tests/testcgiapp.pp svneol=native#text/plain
packages/fcl-xml/Makefile svneol=native#text/plain
packages/fcl-xml/Makefile.fpc svneol=native#text/plain
packages/fcl-xml/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fcl-xml/fpmake.pp svneol=native#text/plain
packages/fcl-xml/src/README.txt svneol=native#text/plain
packages/fcl-xml/src/dom.pp svneol=native#text/plain
packages/fcl-xml/src/dom_html.pp svneol=native#text/plain
packages/fcl-xml/src/dtdmodel.pp svneol=native#text/plain
packages/fcl-xml/src/htmldefs.pp svneol=native#text/plain
packages/fcl-xml/src/htmlelements.pp svneol=native#text/plain
packages/fcl-xml/src/htmlwriter.pp svneol=native#text/plain
packages/fcl-xml/src/htmwrite.pp svneol=native#text/plain
packages/fcl-xml/src/names.inc svneol=native#text/plain
packages/fcl-xml/src/sax.pp svneol=native#text/plain
packages/fcl-xml/src/sax_html.pp svneol=native#text/plain
packages/fcl-xml/src/sax_xml.pp svneol=native#text/plain
packages/fcl-xml/src/tagsimpl.inc svneol=native#text/plain
packages/fcl-xml/src/tagsintf.inc svneol=native#text/plain
packages/fcl-xml/src/wtagsimpl.inc svneol=native#text/plain
packages/fcl-xml/src/wtagsintf.inc svneol=native#text/plain
packages/fcl-xml/src/xhtml.pp svneol=native#text/plain
packages/fcl-xml/src/xmlcfg.pp svneol=native#text/plain
packages/fcl-xml/src/xmlconf.pp svneol=native#text/plain
packages/fcl-xml/src/xmliconv.pas svneol=native#text/plain
packages/fcl-xml/src/xmliconv_windows.pas svneol=native#text/plain
packages/fcl-xml/src/xmlread.pp svneol=native#text/plain
packages/fcl-xml/src/xmlreader.pp svneol=native#text/plain
packages/fcl-xml/src/xmlstreaming.pp svneol=native#text/plain
packages/fcl-xml/src/xmltextreader.pp svneol=native#text/plain
packages/fcl-xml/src/xmlutils.pp svneol=native#text/plain
packages/fcl-xml/src/xmlwrite.pp svneol=native#text/plain
packages/fcl-xml/src/xpath.pp svneol=native#text/plain
packages/fcl-xml/src/xpathkw.inc svneol=native#text/plain
packages/fcl-xml/tests/README.txt svneol=native#text/plain
packages/fcl-xml/tests/README_DOM.txt svneol=native#text/plain
packages/fcl-xml/tests/api.xml svneol=native#text/plain
packages/fcl-xml/tests/domunit.pp svneol=native#text/plain
packages/fcl-xml/tests/extras.pp svneol=native#text/plain
packages/fcl-xml/tests/extras2.pp svneol=native#text/plain
packages/fcl-xml/tests/template.xml svneol=native#text/plain
packages/fcl-xml/tests/testgen.pp svneol=native#text/plain
packages/fcl-xml/tests/xmlts.pp svneol=native#text/plain
packages/fcl-xml/tests/xpathts.pp svneol=native#text/plain
packages/fftw/Makefile svneol=native#text/plain
packages/fftw/Makefile.fpc svneol=native#text/plain
packages/fftw/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fftw/examples/example.pas svneol=native#text/plain
packages/fftw/fpmake.pp svneol=native#text/plain
packages/fftw/readme.txt svneol=native#text/plain
packages/fftw/src/fftw_s.pas svneol=native#text/plain
packages/fpgtk/Makefile svneol=native#text/plain
packages/fpgtk/Makefile.fpc svneol=native#text/plain
packages/fpgtk/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fpgtk/examples/Makefile svneol=native#text/plain
packages/fpgtk/examples/Makefile.fpc svneol=native#text/plain
packages/fpgtk/examples/lister.pp svneol=native#text/plain
packages/fpgtk/examples/testgtk.pp svneol=native#text/plain
packages/fpgtk/examples/testgtk.ppr svneol=native#text/plain
packages/fpgtk/fpmake.pp svneol=native#text/plain
packages/fpgtk/src/def/objectdef.pp svneol=native#text/plain
packages/fpgtk/src/editor/buttonrow.pp svneol=native#text/plain
packages/fpgtk/src/editor/finddlgs.pp svneol=native#text/plain
packages/fpgtk/src/editor/gtkdef.pp svneol=native#text/plain
packages/fpgtk/src/editor/gtkdeftexts.pp svneol=native#text/plain
packages/fpgtk/src/editor/gtkeditor.pp svneol=native#text/plain
packages/fpgtk/src/editor/progwin.pp svneol=native#text/plain
packages/fpgtk/src/editor/settingsrec.pp svneol=native#text/plain
packages/fpgtk/src/editor/xpms.pp svneol=native#text/plain
packages/fpgtk/src/fpglib.pp svneol=native#text/plain
packages/fpgtk/src/fpgtk.def svneol=native#text/plain
packages/fpgtk/src/fpgtk.pp svneol=native#text/plain
packages/fpgtk/src/fpgtkext.pp svneol=native#text/plain
packages/fpgtk/src/pgtk/pgtk.pp svneol=native#text/plain
packages/fpgtk/src/pgtk/pgtk.ppr -text
packages/fpindexer/Makefile svneol=native#text/plain
packages/fpindexer/Makefile.fpc svneol=native#text/plain
packages/fpindexer/README.txt svneol=native#text/plain
packages/fpindexer/examples/TestDBindexer.lpi svneol=native#text/plain
packages/fpindexer/examples/TestDBindexer.pp svneol=native#text/plain
packages/fpindexer/examples/TestIndexer.lpi svneol=native#text/plain
packages/fpindexer/examples/TestIndexer.pp svneol=native#text/plain
packages/fpindexer/examples/TestSearch.lpi svneol=native#text/plain
packages/fpindexer/examples/TestSearch.pp svneol=native#text/plain
packages/fpindexer/examples/english.txt svneol=native#text/plain
packages/fpindexer/fpmake.pp svneol=native#text/plain
packages/fpindexer/src/dbindexer.pp svneol=native#text/plain
packages/fpindexer/src/fbindexdb.pp svneol=native#text/plain
packages/fpindexer/src/fpindexer.pp svneol=native#text/plain
packages/fpindexer/src/fpmasks.pp svneol=native#text/plain
packages/fpindexer/src/ireaderhtml.pp svneol=native#text/plain
packages/fpindexer/src/ireaderpas.pp svneol=native#text/plain
packages/fpindexer/src/ireadertxt.pp svneol=native#text/plain
packages/fpindexer/src/memindexdb.pp svneol=native#text/plain
packages/fpindexer/src/sqldbindexdb.pp svneol=native#text/plain
packages/fpindexer/src/sqliteindexdb.pp svneol=native#text/plain
packages/fpmake.pp svneol=native#text/plain
packages/fpmake_add.inc svneol=native#text/plain
packages/fpmake_proc.inc svneol=native#text/plain
packages/fpmkunit/Makefile svneol=native#text/plain
packages/fpmkunit/Makefile.fpc svneol=native#text/plain
packages/fpmkunit/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fpmkunit/examples/ppu2fpmake.sh svneol=native#text/plain
packages/fpmkunit/fpmake.pp svneol=native#text/plain
packages/fpmkunit/src/fpmkunit.pp svneol=native#text/plain
packages/fppkg/Makefile svneol=native#text/plain
packages/fppkg/Makefile.fpc svneol=native#text/plain
packages/fppkg/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fppkg/fpmake.pp svneol=native#text/plain
packages/fppkg/src/fpmkunitsrc.inc svneol=native#text/plain
packages/fppkg/src/fprepos.pp svneol=native#text/plain
packages/fppkg/src/fpxmlrep.pp svneol=native#text/plain
packages/fppkg/src/pkgcommands.pp svneol=native#text/plain
packages/fppkg/src/pkgdownload.pp svneol=native#text/plain
packages/fppkg/src/pkgfphttp.pp svneol=native#text/plain
packages/fppkg/src/pkgfpmake.pp svneol=native#text/plain
packages/fppkg/src/pkgglobals.pp svneol=native#text/plain
packages/fppkg/src/pkghandler.pp svneol=native#text/plain
packages/fppkg/src/pkgmessages.pp svneol=native#text/plain
packages/fppkg/src/pkgmkconv.pp svneol=native#text/plain
packages/fppkg/src/pkgoptions.pp svneol=native#text/plain
packages/fppkg/src/pkgrepos.pp svneol=native#text/plain
packages/fppkg/src/pkgwget.pp svneol=native#text/plain
packages/fuse/Makefile svneol=native#text/plain
packages/fuse/Makefile.fpc svneol=native#text/plain
packages/fuse/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fuse/fpmake_disabled.pp svneol=native#text/plain
packages/fuse/src/fuse.pas svneol=native#text/plain
packages/fuse/tests/fusetest.pp svneol=native#text/plain
packages/fv/Makefile svneol=native#text/plain
packages/fv/Makefile.fpc svneol=native#text/plain
packages/fv/Makefile.fpc.fpcmake svneol=native#text/plain
packages/fv/examples/Makefile svneol=native#text/plain
packages/fv/examples/Makefile.fpc svneol=native#text/plain
packages/fv/examples/testapp.lpi svneol=native#text/plain
packages/fv/examples/testapp.pas svneol=native#text/plain
packages/fv/fpmake.pp svneol=native#text/plain
packages/fv/src/amismsg.inc svneol=native#text/plain
packages/fv/src/app.pas svneol=native#text/plain
packages/fv/src/asciitab.pas svneol=native#text/plain
packages/fv/src/buildfv.pas svneol=native#text/plain
packages/fv/src/colorsel.pas svneol=native#text/plain
packages/fv/src/colortxt.pas svneol=native#text/plain
packages/fv/src/dialogs.pas svneol=native#text/plain
packages/fv/src/drivers.pas svneol=native#text/plain
packages/fv/src/editors.pas svneol=native#text/plain
packages/fv/src/fvcommon.pas svneol=native#text/plain
packages/fv/src/fvconsts.pas svneol=native#text/plain
packages/fv/src/gadgets.pas svneol=native#text/plain
packages/fv/src/go32smsg.inc svneol=native#text/plain
packages/fv/src/histlist.pas svneol=native#text/plain
packages/fv/src/inplong.pas svneol=native#text/plain
packages/fv/src/memory.pas svneol=native#text/plain
packages/fv/src/menus.pas svneol=native#text/plain
packages/fv/src/msgbox.pas svneol=native#text/plain
packages/fv/src/outline.pas svneol=native#text/plain
packages/fv/src/platform.inc svneol=native#text/plain
packages/fv/src/resource.pas svneol=native#text/plain
packages/fv/src/statuses.pas svneol=native#text/plain
packages/fv/src/stddlg.pas svneol=native#text/plain
packages/fv/src/str.inc svneol=native#text/plain
packages/fv/src/strtxt.inc svneol=native#text/plain
packages/fv/src/sysmsg.pas svneol=native#text/plain
packages/fv/src/tabs.pas svneol=native#text/plain
packages/fv/src/time.pas svneol=native#text/plain
packages/fv/src/timeddlg.pas svneol=native#text/plain
packages/fv/src/unixsmsg.inc svneol=native#text/plain
packages/fv/src/validate.pas svneol=native#text/plain
packages/fv/src/views.pas svneol=native#text/plain
packages/fv/src/w32smsg.inc svneol=native#text/plain
packages/gdbint/Makefile svneol=native#text/plain
packages/gdbint/Makefile.fpc svneol=native#text/plain
packages/gdbint/Makefile.fpc.fpcmake svneol=native#text/plain
packages/gdbint/examples/mingw.pas svneol=native#text/plain
packages/gdbint/examples/symify.pp svneol=native#text/plain
packages/gdbint/examples/testgdb.pp svneol=native#text/plain
packages/gdbint/fpmake.pp svneol=native#text/plain
packages/gdbint/gen-gdblib-inc.sh svneol=native#text/plain
packages/gdbint/src/freadlin.pp svneol=native#text/x-pascal
packages/gdbint/src/gdbcon.pp svneol=native#text/plain
packages/gdbint/src/gdbint.pp svneol=native#text/plain
packages/gdbint/src/gdbobjs.inc svneol=native#text/plain
packages/gdbint/src/gdbver.pp svneol=native#text/plain
packages/gdbint/src/gdbver_nogdb.inc svneol=native#text/x-pascal
packages/gdbm/Makefile svneol=native#text/plain
packages/gdbm/Makefile.fpc svneol=native#text/plain
packages/gdbm/Makefile.fpc.fpcmake svneol=native#text/plain
packages/gdbm/README.txt svneol=native#text/plain
packages/gdbm/examples/Makefile svneol=native#text/plain
packages/gdbm/examples/Makefile.fpc svneol=native#text/plain
packages/gdbm/examples/testgdbm.pp svneol=native#text/plain
packages/gdbm/examples/testgdbm2.pp svneol=native#text/plain
packages/gdbm/fpmake.pp svneol=native#text/plain
packages/gdbm/src/gdbm.pp svneol=native#text/plain
packages/ggi/Makefile svneol=native#text/plain
packages/ggi/Makefile.fpc svneol=native#text/plain
packages/ggi/Makefile.fpc.fpcmake svneol=native#text/plain
packages/ggi/examples/Makefile svneol=native#text/plain
packages/ggi/examples/Makefile.fpc svneol=native#text/plain
packages/ggi/examples/ggi1.pp svneol=native#text/plain
packages/ggi/fpmake.pp svneol=native#text/plain
packages/ggi/src/ggi.pp svneol=native#text/plain
packages/ggi/src/ggi2d.pp svneol=native#text/plain
packages/ggi/src/gii.pp svneol=native#text/plain
packages/gmp/Makefile svneol=native#text/plain
packages/gmp/Makefile.fpc svneol=native#text/plain
packages/gmp/Makefile.fpc.fpcmake svneol=native#text/plain
packages/gmp/examples/Makefile svneol=native#text/plain
packages/gmp/examples/Makefile.fpc svneol=native#text/plain
packages/gmp/examples/gmp_accept_test.pas svneol=native#text/plain
packages/gmp/examples/gmp_test_impl.inc svneol=native#text/plain
packages/gmp/examples/gmp_test_intf.inc svneol=native#text/plain
packages/gmp/examples/gmp_testcase.pas svneol=native#text/plain
packages/gmp/examples/pidigits_example.pas svneol=native#text/plain
packages/gmp/examples/pidigits_example2.pas svneol=native#text/plain
packages/gmp/examples/printf_example.pas svneol=native#text/plain
packages/gmp/examples/printf_example2.pas svneol=native#text/plain
packages/gmp/examples/scanf_example.pas svneol=native#text/plain
packages/gmp/examples/scanf_example2.pas svneol=native#text/plain
packages/gmp/fpmake.pp svneol=native#text/plain
packages/gmp/readme svneol=native#text/plain
packages/gmp/src/gmp.pas svneol=native#text/plain
packages/gnome1/Makefile svneol=native#text/plain
packages/gnome1/Makefile.fpc svneol=native#text/plain
packages/gnome1/Makefile.fpc.fpcmake svneol=native#text/plain
packages/gnome1/examples/gconfcallback1.pp svneol=native#text/plain
packages/gnome1/examples/gconfcallback2.pp svneol=native#text/plain
packages/gnome1/examples/gconfexample.pp svneol=native#text/plain
packages/gnome1/examples/gnometest.pp svneol=native#text/plain
packages/gnome1/examples/testzvt.pp svneol=native#text/plain
packages/gnome1/fpmake.pp svneol=native#text/plain
packages/gnome1/src/gconf/gconf.pp svneol=native#text/plain
packages/gnome1/src/gconf/gconfengine.inc svneol=native#text/plain
packages/gnome1/src/gconf/gconferror.inc svneol=native#text/plain
packages/gnome1/src/gconf/gconfglibpublic.inc svneol=native#text/plain
packages/gnome1/src/gconf/gconfschema.inc svneol=native#text/plain
packages/gnome1/src/gconf/gconfvalue.inc svneol=native#text/plain
packages/gnome1/src/gconfclient/gconfchangeset.inc svneol=native#text/plain
packages/gnome1/src/gconfclient/gconfclient.pp svneol=native#text/plain
packages/gnome1/src/gconfclient/gconflisteners.inc svneol=native#text/plain
packages/gnome1/src/libart.pp svneol=native#text/plain
packages/gnome1/src/libgnome/gnomeconfig.inc svneol=native#text/plain
packages/gnome1/src/libgnome/gnomedentry.inc svneol=native#text/plain
packages/gnome1/src/libgnome/gnomeexec.inc svneol=native#text/plain
packages/gnome1/src/libgnome/gnomehelp.inc svneol=native#text/plain
packages/gnome1/src/libgnome/gnomei18n.inc svneol=native#text/plain
packages/gnome1/src/libgnome/gnomemetadata.inc svneol=native#text/plain
packages/gnome1/src/libgnome/gnomemime.inc svneol=native#text/plain
packages/gnome1/src/libgnome/gnomemimeinfo.inc svneol=native#text/plain
packages/gnome1/src/libgnome/gnomepaper.inc svneol=native#text/plain
packages/gnome1/src/libgnome/gnomeremote.inc svneol=native#text/plain
packages/gnome1/src/libgnome/gnomescore.inc svneol=native#text/plain
packages/gnome1/src/libgnome/gnomesound.inc svneol=native#text/plain
packages/gnome1/src/libgnome/gnometriggers.inc svneol=native#text/plain
packages/gnome1/src/libgnome/gnomeurl.inc svneol=native#text/plain
packages/gnome1/src/libgnome/gnomeutil.inc svneol=native#text/plain
packages/gnome1/src/libgnome/libgnome.pp svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomeabout.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomeanimator.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomeapp.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomeappbar.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomeapphelper.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomeapputil.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomecalculator.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomecalulator.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomecanvas.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomecanvasimage.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomecanvasline.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomecanvasload.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomecanvaspolygon.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomecanvasrectellipse.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomecanvastext.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomecanvasutil.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomecanvaswidget.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomeclient.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomecolorpicker.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomedateedit.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomedentryedit.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomedialog.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomedialogutil.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomedock.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomedruid.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomedruidpage.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomedruidpagefinish.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomedruidpagestandard.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomedruidpagestart.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomeentry.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomefileentry.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomefontpicker.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomegeometry.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomehref.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomeiconentry.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomeiconitem.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomeiconlist.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomeiconsel.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomeicontext.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomeinit.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomemdi.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomemdichild.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomemdigenericchild.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomemdisession.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomemessagebox.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomenumberentry.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomepaperselector.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomepixmap.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomepixmapentry.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomepopuphelp.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomepopupmenu.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomeprocbar.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomepropertybox.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomescores.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomestock.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnometypebuiltins.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomeuidefs.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gnomewinhints.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gtkclock.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gtkdial.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/gtkpixmapmenuitem.inc svneol=native#text/plain
packages/gnome1/src/libgnomeui/libgnomeui.pp svneol=native#text/plain
packages/gnome1/src/zvt/libzvt.pp svneol=native#text/plain
packages/gnome1/src/zvt/lists.inc svneol=native#text/plain
packages/gnome1/src/zvt/vt.inc svneol=native#text/plain
packages/gnome1/src/zvt/vtx.inc svneol=native#text/plain
packages/graph/Makefile svneol=native#text/plain
packages/graph/Makefile.fpc svneol=native#text/plain
packages/graph/Makefile.fpc.fpcmake svneol=native#text/plain
packages/graph/fpmake.pp svneol=native#text/plain
packages/graph/src/amiga/graph.pp svneol=native#text/plain
packages/graph/src/go32v2/graph.pp svneol=native#text/plain
packages/graph/src/go32v2/vesa.inc svneol=native#text/plain
packages/graph/src/go32v2/vesah.inc svneol=native#text/plain
packages/graph/src/inc/clip.inc svneol=native#text/plain
packages/graph/src/inc/fills.inc svneol=native#text/plain
packages/graph/src/inc/fontdata.inc svneol=native#text/plain
packages/graph/src/inc/graph.inc svneol=native#text/plain
packages/graph/src/inc/graph.tex -text
packages/graph/src/inc/graphh.inc svneol=native#text/plain
packages/graph/src/inc/gtext.inc svneol=native#text/plain
packages/graph/src/inc/makefile.inc svneol=native#text/plain
packages/graph/src/inc/modes.inc svneol=native#text/plain
packages/graph/src/inc/palette.inc svneol=native#text/plain
packages/graph/src/macosx/graph.pp svneol=native#text/plain
packages/graph/src/ptcgraph/ptccrt.pp svneol=native#text/plain
packages/graph/src/ptcgraph/ptcgraph.pp svneol=native#text/x-pascal
packages/graph/src/sdlgraph/sdlgraph.pp svneol=native#text/plain
packages/graph/src/unix/ggigraph.pp svneol=native#text/plain
packages/graph/src/unix/graph.pp svneol=native#text/plain
packages/graph/src/unix/graph16.inc svneol=native#text/plain
packages/graph/src/win32/graph.pp svneol=native#text/plain
packages/graph/src/win32/wincrt.pp svneol=native#text/plain
packages/graph/src/win32/winmouse.pp svneol=native#text/plain
packages/graph/tests/drawtest.pas svneol=native#text/plain
packages/graph/tests/polytest.pas svneol=native#text/plain
packages/graph/tests/polytest.txt svneol=native#text/plain
packages/graph/tests/polytst2.txt svneol=native#text/plain
packages/gtk1/Makefile svneol=native#text/plain
packages/gtk1/Makefile.fpc svneol=native#text/plain
packages/gtk1/Makefile.fpc.fpcmake svneol=native#text/plain
packages/gtk1/README.txt svneol=native#text/plain
packages/gtk1/examples/Makefile svneol=native#text/plain
packages/gtk1/examples/Makefile.fpc svneol=native#text/plain
packages/gtk1/examples/clist.pp svneol=native#text/plain
packages/gtk1/examples/editform.pp svneol=native#text/plain
packages/gtk1/examples/entry.pp svneol=native#text/plain
packages/gtk1/examples/filesel.pp svneol=native#text/plain
packages/gtk1/examples/gtkgldemo.pp svneol=native#text/plain
packages/gtk1/examples/list.pp svneol=native#text/plain
packages/gtk1/examples/notebook.pp svneol=native#text/plain
packages/gtk1/examples/paned.pp svneol=native#text/plain
packages/gtk1/examples/pixmap.pp svneol=native#text/plain
packages/gtk1/examples/progressbar.pp svneol=native#text/plain
packages/gtk1/examples/rulers.pp svneol=native#text/plain
packages/gtk1/examples/scribble.pp svneol=native#text/plain
packages/gtk1/examples/spinbutton.pp svneol=native#text/plain
packages/gtk1/examples/statusbar.pp svneol=native#text/plain
packages/gtk1/examples/tictactoe.pp svneol=native#text/plain
packages/gtk1/examples/toolbar.pp svneol=native#text/plain
packages/gtk1/examples/ttt_test.pp svneol=native#text/plain
packages/gtk1/examples/tutorial/Makefile svneol=native#text/plain
packages/gtk1/examples/tutorial/Makefile.fpc svneol=native#text/plain
packages/gtk1/examples/tutorial/info.xpm -text
packages/gtk1/examples/tutorial/tut2_1.pp svneol=native#text/plain
packages/gtk1/examples/tutorial/tut3_3.pp svneol=native#text/plain
packages/gtk1/examples/tutorial/tut4_3.pp svneol=native#text/plain
packages/gtk1/examples/tutorial/tut4_5.pp svneol=native#text/plain
packages/gtk1/examples/tutorial/tut6_1.pp svneol=native#text/plain
packages/gtk1/examples/tutorial/tut6_2.pp svneol=native#text/plain
packages/gtk1/examples/tutorial/tut6_3.pp svneol=native#text/plain
packages/gtk1/examples/tutorial/tut6_4.pp svneol=native#text/plain
packages/gtk1/examples/tutorial/tut8_5.pp svneol=native#text/plain
packages/gtk1/fpmake.pp svneol=native#text/plain
packages/gtk1/src/gdk/gdk.pp svneol=native#text/plain
packages/gtk1/src/gdk/gdkkeysyms.pp svneol=native#text/plain
packages/gtk1/src/gdk/gdkmain.pp svneol=native#text/plain
packages/gtk1/src/gdk/gdkpixbuf.pp svneol=native#text/plain
packages/gtk1/src/gdk/gdkprivate.pp svneol=native#text/plain
packages/gtk1/src/gdk/gdkrgb.pp svneol=native#text/plain
packages/gtk1/src/gdk/gdktypes.pp svneol=native#text/plain
packages/gtk1/src/gdk/gdkx.pp svneol=native#text/plain
packages/gtk1/src/glib/glib.pp svneol=native#text/plain
packages/gtk1/src/glib/gmodule.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtk.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkaccelerator.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkaccelgroup.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkaccellabel.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkadjustment.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkalignment.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkarg.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkarrow.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkaspectframe.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkbbox.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkbin.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkbindings.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkbox.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkbutton.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkcalendar.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkcheckbutton.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkcheckmenuitem.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkclist.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkcolorsel.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkcombo.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkcontainer.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkctree.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkcurve.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkdata.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkdialog.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkdnd.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkdrawingarea.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkeditable.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkentry.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkenums.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkeventbox.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkfeatures.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkfilesel.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkfixed.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkfontsel.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkframe.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkgamma.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkgc.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkhandlebox.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkhbbox.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkhbox.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkhpaned.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkhruler.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkhscale.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkhscrollbar.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkhseparator.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkimage.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkincludes.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkinputdialog.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkinvisible.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkitem.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkitemfactory.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtklabel.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtklayout.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtklist.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtklistitem.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkmain.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkmarshal.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkmenu.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkmenubar.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkmenufactory.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkmenuitem.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkmenushell.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkmisc.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtknotebook.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkobjects.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkoptionmenu.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkpacker.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkpaned.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkpixmap.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkplug.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkpreview.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkprivate.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkprogress.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkprogressbar.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkradiobutton.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkradiomenuitem.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkrange.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkrc.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkruler.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkscale.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkscrollbar.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkscrolledwindow.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkselection.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkseparator.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtksignal.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtksocket.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkspinbutton.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkstatusbar.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkstyle.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtktable.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtktearoffmenuitem.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtktext.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkthemes.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtktipsquery.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtktogglebutton.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtktoolbar.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtktooltips.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtktree.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtktreeitem.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtktypeutils.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkvbbox.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkvbox.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkviewport.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkvpaned.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkvruler.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkvscale.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkvscrollbar.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkvseparator.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkwidget.pp svneol=native#text/plain
packages/gtk1/src/gtk/gtkwindow.pp svneol=native#text/plain
packages/gtk1/src/gtkgl/Makefile svneol=native#text/plain
packages/gtk1/src/gtkgl/Makefile.fpc svneol=native#text/plain
packages/gtk1/src/gtkgl/gtkglarea.pp svneol=native#text/plain
packages/gtk2/Makefile svneol=native#text/plain
packages/gtk2/Makefile.fpc svneol=native#text/plain
packages/gtk2/Makefile.fpc.fpcmake svneol=native#text/plain
packages/gtk2/examples/Makefile svneol=native#text/plain
packages/gtk2/examples/Makefile.fpc svneol=native#text/plain
packages/gtk2/examples/filechooser/Makefile svneol=native#text/plain
packages/gtk2/examples/filechooser/Makefile.fpc svneol=native#text/plain
packages/gtk2/examples/filechooser/beipiel.glade -text
packages/gtk2/examples/filechooser/glade.pas svneol=native#text/plain
packages/gtk2/examples/filechooser/simple.pas svneol=native#text/plain
packages/gtk2/examples/gettingstarted/Makefile svneol=native#text/plain
packages/gtk2/examples/gettingstarted/Makefile.fpc svneol=native#text/plain
packages/gtk2/examples/gettingstarted/gettingstarted.pas svneol=native#text/plain
packages/gtk2/examples/gtk_demo/Makefile svneol=native#text/plain
packages/gtk2/examples/gtk_demo/Makefile.fpc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/appwindow.inc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/button_box.inc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/colorsel.inc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/data/alphatest.png -text
packages/gtk2/examples/gtk_demo/data/apple-red.png -text
packages/gtk2/examples/gtk_demo/data/background.jpg -text
packages/gtk2/examples/gtk_demo/data/floppybuddy.gif -text
packages/gtk2/examples/gtk_demo/data/gnome-applets.png -text
packages/gtk2/examples/gtk_demo/data/gnome-calendar.png -text
packages/gtk2/examples/gtk_demo/data/gnome-foot.png -text
packages/gtk2/examples/gtk_demo/data/gnome-gimp.png -text
packages/gtk2/examples/gtk_demo/data/gnome-gmush.png -text
packages/gtk2/examples/gtk_demo/data/gnome-gsame.png -text
packages/gtk2/examples/gtk_demo/data/gnu-keys.png -text
packages/gtk2/examples/gtk_demo/data/gtk-logo-rgb.gif -text
packages/gtk2/examples/gtk_demo/dialog.inc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/drawingarea.inc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/editable_cells.inc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/gtk_demo.pas svneol=native#text/plain
packages/gtk2/examples/gtk_demo/images.inc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/init.inc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/item_factory.inc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/list_store.inc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/menus.inc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/panes.inc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/pixbufs.inc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/sizegroup.inc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/stock_browser.inc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/textview.inc svneol=native#text/plain
packages/gtk2/examples/gtk_demo/tree_store.inc svneol=native#text/plain
packages/gtk2/examples/gtkglext/Makefile svneol=native#text/plain
packages/gtk2/examples/gtkglext/Makefile.fpc svneol=native#text/plain
packages/gtk2/examples/gtkglext/gears.pas svneol=native#text/plain
packages/gtk2/examples/helloworld/Makefile svneol=native#text/plain
packages/gtk2/examples/helloworld/Makefile.fpc svneol=native#text/plain
packages/gtk2/examples/helloworld/helloworld.pas svneol=native#text/plain
packages/gtk2/examples/helloworld2/Makefile svneol=native#text/plain
packages/gtk2/examples/helloworld2/Makefile.fpc svneol=native#text/plain
packages/gtk2/examples/helloworld2/helloworld2.pas svneol=native#text/plain
packages/gtk2/examples/plugins/Makefile svneol=native#text/plain
packages/gtk2/examples/plugins/Makefile.fpc svneol=native#text/plain
packages/gtk2/examples/plugins/main.pas svneol=native#text/plain
packages/gtk2/examples/plugins/plugin.pas svneol=native#text/plain
packages/gtk2/examples/scribble_simple/Makefile svneol=native#text/plain
packages/gtk2/examples/scribble_simple/Makefile.fpc svneol=native#text/plain
packages/gtk2/examples/scribble_simple/scribble_simple.pas svneol=native#text/plain
packages/gtk2/fpmake.pp svneol=native#text/plain
packages/gtk2/gtk2forlazarus.lpk svneol=native#text/plain
packages/gtk2/src/atk/atk.inc svneol=native#text/plain
packages/gtk2/src/atk/atk.pas svneol=native#text/plain
packages/gtk2/src/atk/atkaction.inc svneol=native#text/plain
packages/gtk2/src/atk/atkcomponent.inc svneol=native#text/plain
packages/gtk2/src/atk/atkdocument.inc svneol=native#text/plain
packages/gtk2/src/atk/atkeditabletext.inc svneol=native#text/plain
packages/gtk2/src/atk/atkgobjectaccessible.inc svneol=native#text/plain
packages/gtk2/src/atk/atkhyperlink.inc svneol=native#text/plain
packages/gtk2/src/atk/atkhypertext.inc svneol=native#text/plain
packages/gtk2/src/atk/atkimage.inc svneol=native#text/plain
packages/gtk2/src/atk/atkincludes.inc svneol=native#text/plain
packages/gtk2/src/atk/atkobject.inc svneol=native#text/plain
packages/gtk2/src/atk/atkobjectfactory.inc svneol=native#text/plain
packages/gtk2/src/atk/atkregistry.inc svneol=native#text/plain
packages/gtk2/src/atk/atkrelation.inc svneol=native#text/plain
packages/gtk2/src/atk/atkrelationset.inc svneol=native#text/plain
packages/gtk2/src/atk/atkselection.inc svneol=native#text/plain
packages/gtk2/src/atk/atkstate.inc svneol=native#text/plain
packages/gtk2/src/atk/atkstateset.inc svneol=native#text/plain
packages/gtk2/src/atk/atkstreamablecontent.inc svneol=native#text/plain
packages/gtk2/src/atk/atktable.inc svneol=native#text/plain
packages/gtk2/src/atk/atktext.inc svneol=native#text/plain
packages/gtk2/src/atk/atkutil.inc svneol=native#text/plain
packages/gtk2/src/atk/atkvalue.inc svneol=native#text/plain
packages/gtk2/src/buildgtk2.pp svneol=native#text/plain
packages/gtk2/src/glib/galloca.inc svneol=native#text/plain
packages/gtk2/src/glib/garray.inc svneol=native#text/plain
packages/gtk2/src/glib/gasyncqueue.inc svneol=native#text/plain
packages/gtk2/src/glib/gbacktrace.inc svneol=native#text/plain
packages/gtk2/src/glib/gboxed.inc svneol=native#text/plain
packages/gtk2/src/glib/gcache.inc svneol=native#text/plain
packages/gtk2/src/glib/gclosure.inc svneol=native#text/plain
packages/gtk2/src/glib/gcompletion.inc svneol=native#text/plain
packages/gtk2/src/glib/gconvert.inc svneol=native#text/plain
packages/gtk2/src/glib/gdataset.inc svneol=native#text/plain
packages/gtk2/src/glib/gdate.inc svneol=native#text/plain
packages/gtk2/src/glib/gdir.inc svneol=native#text/plain
packages/gtk2/src/glib/genums.inc svneol=native#text/plain
packages/gtk2/src/glib/gerror.inc svneol=native#text/plain
packages/gtk2/src/glib/gfileutils.inc svneol=native#text/plain
packages/gtk2/src/glib/ghash.inc svneol=native#text/plain
packages/gtk2/src/glib/ghook.inc svneol=native#text/plain
packages/gtk2/src/glib/gincludes.inc svneol=native#text/plain
packages/gtk2/src/glib/giochannel.inc svneol=native#text/plain
packages/gtk2/src/glib/glib2.pas svneol=native#text/plain
packages/gtk2/src/glib/glibconfig.inc svneol=native#text/plain
packages/gtk2/src/glib/glist.inc svneol=native#text/plain
packages/gtk2/src/glib/gmacros.inc svneol=native#text/plain
packages/gtk2/src/glib/gmain.inc svneol=native#text/plain
packages/gtk2/src/glib/gmarkup.inc svneol=native#text/plain
packages/gtk2/src/glib/gmarshal.inc svneol=native#text/plain
packages/gtk2/src/glib/gmem.inc svneol=native#text/plain
packages/gtk2/src/glib/gmessages.inc svneol=native#text/plain
packages/gtk2/src/glib/gmodule.inc svneol=native#text/plain
packages/gtk2/src/glib/gnode.inc svneol=native#text/plain
packages/gtk2/src/glib/gobject.inc svneol=native#text/plain
packages/gtk2/src/glib/goption.inc svneol=native#text/plain
packages/gtk2/src/glib/gparam.inc svneol=native#text/plain
packages/gtk2/src/glib/gparamspecs.inc svneol=native#text/plain
packages/gtk2/src/glib/gpattern.inc svneol=native#text/plain
packages/gtk2/src/glib/gprimes.inc svneol=native#text/plain
packages/gtk2/src/glib/gqsort.inc svneol=native#text/plain
packages/gtk2/src/glib/gquark.inc svneol=native#text/plain
packages/gtk2/src/glib/gqueue.inc svneol=native#text/plain
packages/gtk2/src/glib/grand.inc svneol=native#text/plain
packages/gtk2/src/glib/grel.inc svneol=native#text/plain
packages/gtk2/src/glib/gscanner.inc svneol=native#text/plain
packages/gtk2/src/glib/gshell.inc svneol=native#text/plain
packages/gtk2/src/glib/gsignal.inc svneol=native#text/plain
packages/gtk2/src/glib/gslice.inc svneol=native#text/pascal
packages/gtk2/src/glib/gslist.inc svneol=native#text/plain
packages/gtk2/src/glib/gsourceclosure.inc svneol=native#text/plain
packages/gtk2/src/glib/gspawn.inc svneol=native#text/plain
packages/gtk2/src/glib/gstrfuncs.inc svneol=native#text/plain
packages/gtk2/src/glib/gstring.inc svneol=native#text/plain
packages/gtk2/src/glib/gthread.inc svneol=native#text/plain
packages/gtk2/src/glib/gthreadpool.inc svneol=native#text/plain
packages/gtk2/src/glib/gtimer.inc svneol=native#text/plain
packages/gtk2/src/glib/gtree.inc svneol=native#text/plain
packages/gtk2/src/glib/gtype.inc svneol=native#text/plain
packages/gtk2/src/glib/gtypemodule.inc svneol=native#text/plain
packages/gtk2/src/glib/gtypeplugin.inc svneol=native#text/plain
packages/gtk2/src/glib/gtypes.inc svneol=native#text/plain
packages/gtk2/src/glib/gunicode.inc svneol=native#text/plain
packages/gtk2/src/glib/gutils.inc svneol=native#text/plain
packages/gtk2/src/glib/gvalue.inc svneol=native#text/plain
packages/gtk2/src/glib/gvaluearray.inc svneol=native#text/plain
packages/gtk2/src/glib/gvaluecollector.inc svneol=native#text/plain
packages/gtk2/src/glib/gvaluetypes.inc svneol=native#text/plain
packages/gtk2/src/glib/gwin32.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk-pixbuf/gdk-pixbuf-loader.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk-pixbuf/gdk2pixbuf.pas svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdk2.pas svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkcairo.inc svneol=native#text/pascal
packages/gtk2/src/gtk+/gdk/gdkcolor.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkcursor.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkdisplay.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkdisplaymanager.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkdnd.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkdrawable.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkevents.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkfont.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkgc.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdki18n.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkimage.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkincludes.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkinput.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkkeys.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkkeysyms.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkpango.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkpixbuf.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkpixmap.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkpoly-generic.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkprivate.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkproperty.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkregion-generic.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkregion.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkrgb.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkscreen.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkselection.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkspawn.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdktypes.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkvisual.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gdk/gdkwindow.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/fnmatch.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtk2.pas svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkaboutdialog.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkaccelgroup.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkaccellabel.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkaccelmap.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkaccessible.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkaction.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkactiongroup.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkadjustment.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkalignment.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkarrow.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkaspectframe.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkbbox.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkbin.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkbindings.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkbox.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkbutton.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcalendar.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcelleditable.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcelllayout.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcellrenderer.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcellrenderercombo.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcellrendererpixbuf.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcellrendererprogress.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcellrenderertext.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcellrenderertoggle.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcellview.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcheckbutton.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcheckmenuitem.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkclipboard.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkclist.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcolorbutton.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcolorsel.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcolorseldialog.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcombo.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcombobox.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcomboboxentry.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcontainer.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkctree.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkcurve.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkdebug.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkdialog.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkdnd.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkdrawingarea.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkeditable.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkentry.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkentrycompletion.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkenums.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkeventbox.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkexpander.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkfilechooser.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkfilechooserbutton.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkfilechooserdefault.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkfilechooserdialog.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkfilechooserembed.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkfilechooserentry.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkfilechooserprivate.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkfilechooserutils.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkfilechooserwidget.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkfilefilter.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkfilesel.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkfilesystem.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkfixed.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkfontbutton.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkfontsel.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkframe.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkgamma.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkgc.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkhandlebox.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkhbbox.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkhbox.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkhpaned.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkhruler.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkhscale.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkhscrollbar.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkhseparator.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkhsv.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkiconfactory.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkicontheme.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkiconview.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkimage.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkimagemenuitem.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkimcontext.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkimcontextsimple.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkimmodule.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkimmulticontext.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkincludes.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkinputdialog.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkintl.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkinvisible.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkitem.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkitemfactory.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkkeyhash.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtklabel.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtklayout.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtklist.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtklistitem.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkliststore.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkmain.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkmenu.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkmenubar.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkmenuitem.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkmenushell.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkmenutoolbutton.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkmessagedialog.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkmisc.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtknotebook.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkobject.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkoldeditable.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkoptionmenu.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkpaned.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkpixmap.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkplug.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkpreview.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkprogress.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkprogressbar.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkradioaction.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkradiobutton.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkradiomenuitem.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkradiotoolbutton.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkrange.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkrbtree.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkrc.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkruler.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkscale.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkscrollbar.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkscrolledwindow.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkselection.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkseparator.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkseparatormenuitem.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkseparatortoolitem.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtksettings.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtksignal.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtksizegroup.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtksocket.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkspinbutton.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkstatusbar.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkstock.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkstyle.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktable.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktearoffmenuitem.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktext.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktextbtree.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktextbuffer.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktextchild.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktextchildprivate.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktextdisplay.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktextiter.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktextiterprivate.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktextlayout.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktextmark.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktextmarkprivate.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktextsegment.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktexttag.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktexttagprivate.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktexttagtable.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktexttypes.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktextutil.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktextview.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkthemes.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktipsquery.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktoggleaction.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktogglebutton.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktoggletoolbutton.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktoolbar.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktoolbutton.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktoolitem.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktooltips.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktree.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktreedatalist.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktreednd.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktreeitem.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktreemodel.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktreemodelfilter.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktreemodelsort.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktreeprivate.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktreeselection.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktreesortable.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktreestore.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktreeview.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktreeviewcolumn.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtktypeutils.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkuimanager.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkvbbox.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkvbox.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkviewport.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkvpaned.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkvruler.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkvscale.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkvscrollbar.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkvseparator.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkwidget.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkwindow-decorate.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/gtkwindow.inc svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/paste.pas svneol=native#text/plain
packages/gtk2/src/gtk+/gtk/xembed.inc svneol=native#text/plain
packages/gtk2/src/gtk2x11/gdk2x.pas svneol=native#text/plain
packages/gtk2/src/gtk2x11/include/gdk2x11includes.inc svneol=native#text/plain
packages/gtk2/src/gtk2x11/include/gdkdisplay-x11.inc svneol=native#text/plain
packages/gtk2/src/gtk2x11/include/gdkdrawable-x11.inc svneol=native#text/plain
packages/gtk2/src/gtk2x11/include/gdkinputprivate.inc svneol=native#text/plain
packages/gtk2/src/gtk2x11/include/gdkpixmap-x11.inc svneol=native#text/plain
packages/gtk2/src/gtk2x11/include/gdkprivate-x11.inc svneol=native#text/plain
packages/gtk2/src/gtk2x11/include/gdkscreen-x11.inc svneol=native#text/plain
packages/gtk2/src/gtk2x11/include/gdkwindow-x11.inc svneol=native#text/plain
packages/gtk2/src/gtk2x11/include/gdkx.inc svneol=native#text/plain
packages/gtk2/src/gtk2x11/include/gxid_proto.inc svneol=native#text/plain
packages/gtk2/src/gtk2x11/include/mwmutil.inc svneol=native#text/plain
packages/gtk2/src/gtk2x11/include/xsettings-client.inc svneol=native#text/plain
packages/gtk2/src/gtk2x11/include/xsettings-common.inc svneol=native#text/plain
packages/gtk2/src/gtk2x11/scripts/gdkx11_h2pas.sh svneol=native#text/plain
packages/gtk2/src/gtkext/gtk2ext.pp svneol=native#text/plain
packages/gtk2/src/gtkext/gtkscalebutton.inc svneol=native#text/plain
packages/gtk2/src/gtkext/gtkscalebuttonh.inc svneol=native#text/plain
packages/gtk2/src/gtkext/gtkstatusicon.inc svneol=native#text/plain
packages/gtk2/src/gtkext/gtkstatusiconh.inc svneol=native#text/plain
packages/gtk2/src/gtkext/gtktextiter.inc svneol=native#text/plain
packages/gtk2/src/gtkext/gtktextiterh.inc svneol=native#text/plain
packages/gtk2/src/gtkext/gtktextmark.inc svneol=native#text/plain
packages/gtk2/src/gtkext/gtktextmarkh.inc svneol=native#text/plain
packages/gtk2/src/gtkext/gtkvolumebutton.inc svneol=native#text/plain
packages/gtk2/src/gtkext/gtkvolumebuttonh.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gdkglconfig.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gdkglcontext.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gdkgldefs.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gdkgldrawable.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gdkglenumtypes.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gdkglext.pas svneol=native#text/plain
packages/gtk2/src/gtkglext/gdkglext_includes.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gdkglfont.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gdkglinit.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gdkglpixmap.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gdkglquery.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gdkglshapes.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gdkgltokens.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gdkgltypes.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gdkglversion.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gdkglwindow.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gtkgldefs.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gtkglext.pas svneol=native#text/plain
packages/gtk2/src/gtkglext/gtkglext_includes.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gtkglinit.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gtkglversion.inc svneol=native#text/plain
packages/gtk2/src/gtkglext/gtkglwidget.inc svneol=native#text/plain
packages/gtk2/src/gtkhtml/dom-document.inc svneol=native#text/plain
packages/gtk2/src/gtkhtml/dom-node.inc svneol=native#text/plain
packages/gtk2/src/gtkhtml/dom-types.inc svneol=native#text/plain
packages/gtk2/src/gtkhtml/gtkhtml.pas svneol=native#text/plain
packages/gtk2/src/gtkhtml/gtkhtmlcontext.inc svneol=native#text/plain
packages/gtk2/src/gtkhtml/gtkhtmlincludes.inc svneol=native#text/plain
packages/gtk2/src/gtkhtml/htmldocument.inc svneol=native#text/plain
packages/gtk2/src/gtkhtml/htmlevent.inc svneol=native#text/plain
packages/gtk2/src/gtkhtml/htmlfocusiterator.inc svneol=native#text/plain
packages/gtk2/src/gtkhtml/htmlfontspecification.inc svneol=native#text/plain
packages/gtk2/src/gtkhtml/htmlparser.inc svneol=native#text/plain
packages/gtk2/src/gtkhtml/htmlselection.inc svneol=native#text/plain
packages/gtk2/src/gtkhtml/htmlstream.inc svneol=native#text/plain
packages/gtk2/src/gtkhtml/htmlstreambuffer.inc svneol=native#text/plain
packages/gtk2/src/gtkhtml/htmlview.inc svneol=native#text/plain
packages/gtk2/src/libglade/glade-init.inc svneol=native#text/plain
packages/gtk2/src/libglade/glade-xml.inc svneol=native#text/plain
packages/gtk2/src/libglade/libglade2.pas svneol=native#text/plain
packages/gtk2/src/pango/pango-attributes.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-break.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-context.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-coverage.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-engine.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-font.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-fontmap.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-fontset.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-glyph-item.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-glyph.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-item.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-layout.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-matrix.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-renderer.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-tabs.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-types.inc svneol=native#text/plain
packages/gtk2/src/pango/pango.pas svneol=native#text/plain
packages/gtk2/src/pango/pangoincludes.inc svneol=native#text/plain
packages/gtk2/src/pango/pangoutils.pas svneol=native#text/plain
packages/gtk2/src/pangocairo/pangocairo.pas svneol=native#text/plain
packages/hash/Makefile svneol=native#text/plain
packages/hash/Makefile.fpc svneol=native#text/plain
packages/hash/Makefile.fpc.fpcmake svneol=native#text/plain
packages/hash/examples/Makefile svneol=native#text/plain
packages/hash/examples/Makefile.fpc svneol=native#text/plain
packages/hash/examples/crctest.pas svneol=native#text/plain
packages/hash/examples/md5.ref svneol=native#text/plain
packages/hash/examples/mdtest.pas svneol=native#text/plain
packages/hash/examples/sha1test.pp svneol=native#text/plain
packages/hash/fpmake.pp svneol=native#text/plain
packages/hash/src/crc.pas svneol=native#text/plain
packages/hash/src/md5.pp svneol=native#text/plain
packages/hash/src/ntlm.pas svneol=native#text/plain
packages/hash/src/sha1.pp svneol=native#text/plain
packages/hash/src/unixcrypt.pas svneol=native#text/plain
packages/hash/src/uuid.pas svneol=native#text/plain
packages/hermes/Makefile svneol=native#text/plain
packages/hermes/Makefile.fpc svneol=native#text/plain
packages/hermes/Makefile.fpc.fpcmake svneol=native#text/plain
packages/hermes/fpmake.pp svneol=native#text/plain
packages/hermes/src/d_32.inc svneol=native#text/plain
packages/hermes/src/factconv.inc svneol=native#text/plain
packages/hermes/src/headp.inc svneol=native#text/plain
packages/hermes/src/hermconf.inc svneol=native#text/plain
packages/hermes/src/hermdef.inc svneol=native#text/plain
packages/hermes/src/hermes.pp svneol=native#text/plain
packages/hermes/src/hermes_clearer.inc svneol=native#text/plain
packages/hermes/src/hermes_converter.inc svneol=native#text/plain
packages/hermes/src/hermes_debug.inc svneol=native#text/plain
packages/hermes/src/hermes_dither.inc svneol=native#text/plain
packages/hermes/src/hermes_factory.inc svneol=native#text/plain
packages/hermes/src/hermes_format.inc svneol=native#text/plain
packages/hermes/src/hermes_list.inc svneol=native#text/plain
packages/hermes/src/hermes_palette.inc svneol=native#text/plain
packages/hermes/src/hermes_utility.inc svneol=native#text/plain
packages/hermes/src/i386/headi386.inc svneol=native#text/plain
packages/hermes/src/i386/headmmx.inc svneol=native#text/plain
packages/hermes/src/i386/mmx_clr.inc svneol=native#text/plain
packages/hermes/src/i386/mmx_main.inc svneol=native#text/plain
packages/hermes/src/i386/mmxp2_32.inc svneol=native#text/plain
packages/hermes/src/i386/mmxp_32.inc svneol=native#text/plain
packages/hermes/src/i386/x8616lut.inc svneol=native#text/plain
packages/hermes/src/i386/x86_clr.inc svneol=native#text/plain
packages/hermes/src/i386/x86_main.inc svneol=native#text/plain
packages/hermes/src/i386/x86p_16.inc svneol=native#text/plain
packages/hermes/src/i386/x86p_32.inc svneol=native#text/plain
packages/hermes/src/i386/x86p_cpy.inc svneol=native#text/plain
packages/hermes/src/i386/x86p_i8.inc svneol=native#text/plain
packages/hermes/src/i386/x86p_s32.inc svneol=native#text/plain
packages/hermes/src/i386/x86pscpy.inc svneol=native#text/plain
packages/hermes/src/p_16.inc svneol=native#text/plain
packages/hermes/src/p_24.inc svneol=native#text/plain
packages/hermes/src/p_32.inc svneol=native#text/plain
packages/hermes/src/p_clr.inc svneol=native#text/plain
packages/hermes/src/p_cnv.inc svneol=native#text/plain
packages/hermes/src/p_cpy.inc svneol=native#text/plain
packages/hermes/src/p_g.inc svneol=native#text/plain
packages/hermes/src/p_ga.inc svneol=native#text/plain
packages/hermes/src/p_gac.inc svneol=native#text/plain
packages/hermes/src/p_gca.inc svneol=native#text/plain
packages/hermes/src/p_gcc.inc svneol=native#text/plain
packages/hermes/src/p_i8.inc svneol=native#text/plain
packages/hermes/src/p_muhmu.inc svneol=native#text/plain
packages/httpd13/Makefile svneol=native#text/plain
packages/httpd13/Makefile.fpc svneol=native#text/plain
packages/httpd13/Makefile.fpc.fpcmake svneol=native#text/plain
packages/httpd13/fpmake.pp svneol=native#text/plain
packages/httpd13/src/ap.inc svneol=native#text/plain
packages/httpd13/src/ap_alloc.inc svneol=native#text/plain
packages/httpd13/src/ap_config.inc svneol=native#text/plain
packages/httpd13/src/ap_mmn.inc svneol=native#text/plain
packages/httpd13/src/buff.inc svneol=native#text/plain
packages/httpd13/src/hsregex.inc svneol=native#text/plain
packages/httpd13/src/http_config.inc svneol=native#text/plain
packages/httpd13/src/http_core.inc svneol=native#text/plain
packages/httpd13/src/http_log.inc svneol=native#text/plain
packages/httpd13/src/http_main.inc svneol=native#text/plain
packages/httpd13/src/http_protocol.inc svneol=native#text/plain
packages/httpd13/src/http_request.inc svneol=native#text/plain
packages/httpd13/src/http_vhost.inc svneol=native#text/plain
packages/httpd13/src/httpd.inc svneol=native#text/plain
packages/httpd13/src/httpd.pas svneol=native#text/plain
packages/httpd13/src/readdir.inc svneol=native#text/plain
packages/httpd13/src/util_uri.inc svneol=native#text/plain
packages/httpd13/src/win32_os.inc svneol=native#text/plain
packages/httpd20/Makefile svneol=native#text/plain
packages/httpd20/Makefile.fpc svneol=native#text/plain
packages/httpd20/Makefile.fpc.fpcmake svneol=native#text/plain
packages/httpd20/examples/Makefile svneol=native#text/plain
packages/httpd20/examples/Makefile.fpc svneol=native#text/plain
packages/httpd20/examples/define.inc svneol=native#text/plain
packages/httpd20/examples/minimain.pas svneol=native#text/plain
packages/httpd20/examples/mod_example.pp svneol=native#text/plain
packages/httpd20/examples/mod_hello.pp svneol=native#text/plain
packages/httpd20/examples/mod_spelling.pp svneol=native#text/plain
packages/httpd20/examples/testmodule.pp svneol=native#text/plain
packages/httpd20/fpmake.pp svneol=native#text/plain
packages/httpd20/src/ap_config.inc svneol=native#text/plain
packages/httpd20/src/ap_mmn.inc svneol=native#text/plain
packages/httpd20/src/ap_mpm.inc svneol=native#text/plain
packages/httpd20/src/ap_provider.inc svneol=native#text/plain
packages/httpd20/src/ap_release.inc svneol=native#text/plain
packages/httpd20/src/apr/apr.pas svneol=native#text/plain
packages/httpd20/src/apr/apr_allocator.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_buckets.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_dso.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_errno.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_file_info.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_file_io.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_general.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_hash.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_lib.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_network_io.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_poll.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_pools.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_portable.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_signal.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_strings.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_tables.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_thread_proc.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_time.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_user.inc svneol=native#text/plain
packages/httpd20/src/apr/apr_version.inc svneol=native#text/plain
packages/httpd20/src/apriconv/api_version.inc svneol=native#text/plain
packages/httpd20/src/apriconv/apr_iconv.inc svneol=native#text/plain
packages/httpd20/src/apriconv/apriconv.pas svneol=native#text/plain
packages/httpd20/src/aprutil/apr_md5.inc svneol=native#text/plain
packages/httpd20/src/aprutil/apr_uri.inc svneol=native#text/plain
packages/httpd20/src/aprutil/apr_xlate.inc svneol=native#text/plain
packages/httpd20/src/aprutil/apr_xml.inc svneol=native#text/plain
packages/httpd20/src/aprutil/aprutil.pas svneol=native#text/plain
packages/httpd20/src/http_config.inc svneol=native#text/plain
packages/httpd20/src/http_connection.inc svneol=native#text/plain
packages/httpd20/src/http_core.inc svneol=native#text/plain
packages/httpd20/src/http_log.inc svneol=native#text/plain
packages/httpd20/src/http_main.inc svneol=native#text/plain
packages/httpd20/src/http_protocol.inc svneol=native#text/plain
packages/httpd20/src/http_request.inc svneol=native#text/plain
packages/httpd20/src/http_vhost.inc svneol=native#text/plain
packages/httpd20/src/httpd.inc svneol=native#text/plain
packages/httpd20/src/httpd.pas svneol=native#text/plain
packages/httpd20/src/pcreposix.inc svneol=native#text/plain
packages/httpd20/src/util_cfgtree.inc svneol=native#text/plain
packages/httpd20/src/util_filter.inc svneol=native#text/plain
packages/httpd20/src/util_md5.inc svneol=native#text/plain
packages/httpd20/src/util_script.inc svneol=native#text/plain
packages/httpd20/src/util_time.inc svneol=native#text/plain
packages/httpd22/Makefile svneol=native#text/plain
packages/httpd22/Makefile.fpc svneol=native#text/plain
packages/httpd22/Makefile.fpc.fpcmake svneol=native#text/plain
packages/httpd22/examples/Makefile svneol=native#text/plain
packages/httpd22/examples/Makefile.fpc svneol=native#text/plain
packages/httpd22/examples/define.inc svneol=native#text/plain
packages/httpd22/examples/minimain.pas svneol=native#text/plain
packages/httpd22/examples/mod_example.pp svneol=native#text/plain
packages/httpd22/examples/mod_hello.pp svneol=native#text/plain
packages/httpd22/examples/mod_spelling.pp svneol=native#text/plain
packages/httpd22/examples/testmodule.pp svneol=native#text/plain
packages/httpd22/fpmake.pp svneol=native#text/plain
packages/httpd22/src/ap_config.inc svneol=native#text/plain
packages/httpd22/src/ap_mmn.inc svneol=native#text/plain
packages/httpd22/src/ap_mpm.inc svneol=native#text/plain
packages/httpd22/src/ap_provider.inc svneol=native#text/plain
packages/httpd22/src/ap_regex.inc svneol=native#text/plain
packages/httpd22/src/ap_release.inc svneol=native#text/plain
packages/httpd22/src/apr/apr.pas svneol=native#text/plain
packages/httpd22/src/apr/apr_allocator.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_buckets.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_dso.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_errno.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_file_info.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_file_io.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_general.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_hash.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_lib.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_network_io.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_poll.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_pools.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_portable.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_signal.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_strings.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_tables.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_thread_proc.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_time.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_user.inc svneol=native#text/plain
packages/httpd22/src/apr/apr_version.inc svneol=native#text/plain
packages/httpd22/src/apriconv/api_version.inc svneol=native#text/plain
packages/httpd22/src/apriconv/apr_iconv.inc svneol=native#text/plain
packages/httpd22/src/apriconv/apriconv.pas svneol=native#text/plain
packages/httpd22/src/aprutil/apr_md5.inc svneol=native#text/plain
packages/httpd22/src/aprutil/apr_uri.inc svneol=native#text/plain
packages/httpd22/src/aprutil/apr_xlate.inc svneol=native#text/plain
packages/httpd22/src/aprutil/apr_xml.inc svneol=native#text/plain
packages/httpd22/src/aprutil/aprutil.pas svneol=native#text/plain
packages/httpd22/src/http_config.inc svneol=native#text/plain
packages/httpd22/src/http_connection.inc svneol=native#text/plain
packages/httpd22/src/http_core.inc svneol=native#text/plain
packages/httpd22/src/http_log.inc svneol=native#text/plain
packages/httpd22/src/http_main.inc svneol=native#text/plain
packages/httpd22/src/http_protocol.inc svneol=native#text/plain
packages/httpd22/src/http_request.inc svneol=native#text/plain
packages/httpd22/src/http_vhost.inc svneol=native#text/plain
packages/httpd22/src/httpd.inc svneol=native#text/plain
packages/httpd22/src/httpd.pas svneol=native#text/plain
packages/httpd22/src/util_cfgtree.inc svneol=native#text/plain
packages/httpd22/src/util_filter.inc svneol=native#text/plain
packages/httpd22/src/util_md5.inc svneol=native#text/plain
packages/httpd22/src/util_script.inc svneol=native#text/plain
packages/httpd22/src/util_time.inc svneol=native#text/plain
packages/ibase/Makefile svneol=native#text/plain
packages/ibase/Makefile.fpc svneol=native#text/plain
packages/ibase/Makefile.fpc.fpcmake svneol=native#text/plain
packages/ibase/README.txt svneol=native#text/plain
packages/ibase/examples/Makefile svneol=native#text/plain
packages/ibase/examples/Makefile.fpc svneol=native#text/plain
packages/ibase/examples/testib40.pp svneol=native#text/plain
packages/ibase/examples/testib60.pp svneol=native#text/plain
packages/ibase/fpmake.pp svneol=native#text/plain
packages/ibase/scripts/mkdb svneol=native#text/plain
packages/ibase/scripts/mkdb.bat svneol=native#text/plain
packages/ibase/scripts/mkdb.sqd svneol=native#text/plain
packages/ibase/src/ibase40.pp svneol=native#text/plain
packages/ibase/src/ibase60.inc svneol=native#text/plain
packages/ibase/src/ibase60.pp svneol=native#text/plain
packages/ibase/src/ibase60dyn.pp svneol=native#text/plain
packages/iconvenc/Makefile svneol=native#text/plain
packages/iconvenc/Makefile.fpc svneol=native#text/plain
packages/iconvenc/Makefile.fpc.fpcmake svneol=native#text/plain
packages/iconvenc/examples/Makefile svneol=native#text/plain
packages/iconvenc/examples/Makefile.fpc svneol=native#text/plain
packages/iconvenc/examples/iconvtest.pp svneol=native#text/plain
packages/iconvenc/fpmake.pp svneol=native#text/plain
packages/iconvenc/src/iconvenc.pas svneol=native#text/plain
packages/iconvenc/src/iconvenc_dyn.pas svneol=native#text/plain
packages/iconvenc/src/iconvert.inc svneol=native#text/plain
packages/imagemagick/Makefile svneol=native#text/plain
packages/imagemagick/Makefile.fpc svneol=native#text/plain
packages/imagemagick/Makefile.fpc.fpcmake svneol=native#text/plain
packages/imagemagick/examples/image.png -text svneol=unset#image/png
packages/imagemagick/examples/screenshot.lpr svneol=native#text/plain
packages/imagemagick/examples/wanddemo.dpr svneol=native#text/plain
packages/imagemagick/examples/wanddemo.lpr svneol=native#text/plain
packages/imagemagick/examples/wandpixelaccess.pas svneol=native#text/plain
packages/imagemagick/fpmake.pp svneol=native#text/plain
packages/imagemagick/src/buildim.pp svneol=native#text/plain
packages/imagemagick/src/cache.inc svneol=native#text/plain
packages/imagemagick/src/cache_view.inc svneol=native#text/plain
packages/imagemagick/src/compare.inc svneol=native#text/plain
packages/imagemagick/src/constitute.inc svneol=native#text/plain
packages/imagemagick/src/draw.inc svneol=native#text/plain
packages/imagemagick/src/drawing_wand.inc svneol=native#text/plain
packages/imagemagick/src/effect.inc svneol=native#text/plain
packages/imagemagick/src/fx.inc svneol=native#text/plain
packages/imagemagick/src/imagemagick.pas svneol=native#text/plain
packages/imagemagick/src/magick_attribute.inc svneol=native#text/plain
packages/imagemagick/src/magick_image.inc svneol=native#text/plain
packages/imagemagick/src/magick_type.inc svneol=native#text/plain
packages/imagemagick/src/magick_wand.pas svneol=native#text/plain
packages/imagemagick/src/pixel.inc svneol=native#text/plain
packages/imagemagick/src/pixel_iterator.inc svneol=native#text/plain
packages/imagemagick/src/pixel_wand.inc svneol=native#text/plain
packages/imagemagick/src/quantize.inc svneol=native#text/plain
packages/imagemagick/src/semaphore.inc svneol=native#text/plain
packages/imagemagick/src/statistic.inc svneol=native#text/plain
packages/imagemagick/src/type.inc svneol=native#text/plain
packages/imlib/Makefile svneol=native#text/plain
packages/imlib/Makefile.fpc svneol=native#text/plain
packages/imlib/Makefile.fpc.fpcmake svneol=native#text/plain
packages/imlib/fpmake.pp svneol=native#text/plain
packages/imlib/src/gdk_imlib.pp svneol=native#text/plain
packages/imlib/src/imlib.pp svneol=native#text/plain
packages/ldap/Makefile svneol=native#text/plain
packages/ldap/Makefile.fpc svneol=native#text/plain
packages/ldap/Makefile.fpc.fpcmake svneol=native#text/plain
packages/ldap/fpmake.pp svneol=native#text/plain
packages/ldap/src/lber.pas svneol=native#text/plain
packages/ldap/src/lber_typesh.inc svneol=native#text/plain
packages/ldap/src/lberh.inc svneol=native#text/plain
packages/ldap/src/ldap.pas svneol=native#text/plain
packages/ldap/src/ldap_featuresh.inc svneol=native#text/plain
packages/ldap/src/ldap_schemah.inc svneol=native#text/plain
packages/ldap/src/ldaph.inc svneol=native#text/plain
packages/libc/Makefile svneol=native#text/plain
packages/libc/Makefile.fpc svneol=native#text/plain
packages/libc/Makefile.fpc.fpcmake svneol=native#text/plain
packages/libc/README.txt svneol=native#text/plain
packages/libc/fpmake.pp svneol=native#text/plain
packages/libc/scripts/h2p svneol=native#text/plain
packages/libc/scripts/h2p1.sed svneol=native#text/plain
packages/libc/scripts/h2p2.sed svneol=native#text/plain
packages/libc/src/aineth.inc svneol=native#text/plain
packages/libc/src/aioh.inc svneol=native#text/plain
packages/libc/src/aliasesh.inc svneol=native#text/plain
packages/libc/src/allocah.inc svneol=native#text/plain
packages/libc/src/argph.inc svneol=native#text/plain
packages/libc/src/argzh.inc svneol=native#text/plain
packages/libc/src/asocketh.inc svneol=native#text/plain
packages/libc/src/asockiosh.inc svneol=native#text/plain
packages/libc/src/bconfnameh.inc svneol=native#text/plain
packages/libc/src/bdirenth.inc svneol=native#text/plain
packages/libc/src/bdlfcnh.inc svneol=native#text/plain
packages/libc/src/bfcntlh.inc svneol=native#text/plain
packages/libc/src/bfenvh.inc svneol=native#text/plain
packages/libc/src/binh.inc svneol=native#text/plain
packages/libc/src/bipch.inc svneol=native#text/plain
packages/libc/src/bmmanh.inc svneol=native#text/plain
packages/libc/src/bmsqh.inc svneol=native#text/plain
packages/libc/src/bnetdbh.inc svneol=native#text/plain
packages/libc/src/bpollh.inc svneol=native#text/plain
packages/libc/src/bresourceh.inc svneol=native#text/plain
packages/libc/src/bschedh.inc svneol=native#text/plain
packages/libc/src/bselecth.inc svneol=native#text/plain
packages/libc/src/bsemh.inc svneol=native#text/plain
packages/libc/src/bshmh.inc svneol=native#text/plain
packages/libc/src/bsockaddrh.inc svneol=native#text/plain
packages/libc/src/bsocket.inc svneol=native#text/plain
packages/libc/src/bsocketh.inc svneol=native#text/plain
packages/libc/src/bstatfsh.inc svneol=native#text/plain
packages/libc/src/bstath.inc svneol=native#text/plain
packages/libc/src/bstatvfsh.inc svneol=native#text/plain
packages/libc/src/bstroptsh.inc svneol=native#text/plain
packages/libc/src/btermiosh.inc svneol=native#text/plain
packages/libc/src/btimeh.inc svneol=native#text/plain
packages/libc/src/buioh.inc svneol=native#text/plain
packages/libc/src/bustath.inc svneol=native#text/plain
packages/libc/src/butmph.inc svneol=native#text/plain
packages/libc/src/butmpxh.inc svneol=native#text/plain
packages/libc/src/butsnameh.inc svneol=native#text/plain
packages/libc/src/bwaitflags.inc svneol=native#text/plain
packages/libc/src/bwaitflagsh.inc svneol=native#text/plain
packages/libc/src/bwaitstatus.inc svneol=native#text/plain
packages/libc/src/bwaitstatush.inc svneol=native#text/plain
packages/libc/src/cerrno.inc svneol=native#text/plain
packages/libc/src/crypth.inc svneol=native#text/plain
packages/libc/src/ctypeh.inc svneol=native#text/plain
packages/libc/src/dirent.inc svneol=native#text/plain
packages/libc/src/direnth.inc svneol=native#text/plain
packages/libc/src/dlfcnh.inc svneol=native#text/plain
packages/libc/src/endianh.inc svneol=native#text/plain
packages/libc/src/envzh.inc svneol=native#text/plain
packages/libc/src/errh.inc svneol=native#text/plain
packages/libc/src/errnoh.inc svneol=native#text/plain
packages/libc/src/errorh.inc svneol=native#text/plain
packages/libc/src/fcntlh.inc svneol=native#text/plain
packages/libc/src/fenvh.inc svneol=native#text/plain
packages/libc/src/fileh.inc svneol=native#text/plain
packages/libc/src/fmtmsgh.inc svneol=native#text/plain
packages/libc/src/fnmatchh.inc svneol=native#text/plain
packages/libc/src/fpmake.inc svneol=native#text/plain
packages/libc/src/fpmake.pp svneol=native#text/plain
packages/libc/src/fstabh.inc svneol=native#text/plain
packages/libc/src/gconfigh.inc svneol=native#text/plain
packages/libc/src/gconvh.inc svneol=native#text/plain
packages/libc/src/getopth.inc svneol=native#text/plain
packages/libc/src/glibc_versionh.inc svneol=native#text/plain
packages/libc/src/globh.inc svneol=native#text/plain
packages/libc/src/glue.inc svneol=native#text/plain
packages/libc/src/grph.inc svneol=native#text/plain
packages/libc/src/iconvh.inc svneol=native#text/plain
packages/libc/src/igmph.inc svneol=native#text/plain
packages/libc/src/inttypesh.inc svneol=native#text/plain
packages/libc/src/ioctl_typesh.inc svneol=native#text/plain
packages/libc/src/ioctlsh.inc svneol=native#text/plain
packages/libc/src/kerneldefs.pp svneol=native#text/plain
packages/libc/src/kernelioctl.pp svneol=native#text/plain
packages/libc/src/kioctlsh.inc svneol=native#text/plain
packages/libc/src/langinfoh.inc svneol=native#text/plain
packages/libc/src/lib_namesh.inc svneol=native#text/plain
packages/libc/src/libc.pp svneol=native#text/plain
packages/libc/src/libgenh.inc svneol=native#text/plain
packages/libc/src/libintlh.inc svneol=native#text/plain
packages/libc/src/libio.inc svneol=native#text/plain
packages/libc/src/libioh.inc svneol=native#text/plain
packages/libc/src/limitsh.inc svneol=native#text/plain
packages/libc/src/local_limh.inc svneol=native#text/plain
packages/libc/src/localeh.inc svneol=native#text/plain
packages/libc/src/malloch.inc svneol=native#text/plain
packages/libc/src/mcheckh.inc svneol=native#text/plain
packages/libc/src/mntenth.inc svneol=native#text/plain
packages/libc/src/monetaryh.inc svneol=native#text/plain
packages/libc/src/nashh.inc svneol=native#text/plain
packages/libc/src/nath.inc svneol=native#text/plain
packages/libc/src/nax25h.inc svneol=native#text/plain
packages/libc/src/nech.inc svneol=native#text/plain
packages/libc/src/netdbh.inc svneol=native#text/plain
packages/libc/src/netherh.inc svneol=native#text/plain
packages/libc/src/nethernet.inc svneol=native#text/plain
packages/libc/src/netherneth.inc svneol=native#text/plain
packages/libc/src/nicmp6.inc svneol=native#text/plain
packages/libc/src/nicmp6h.inc svneol=native#text/plain
packages/libc/src/nif_arph.inc svneol=native#text/plain
packages/libc/src/nif_ether.inc svneol=native#text/plain
packages/libc/src/nif_etherh.inc svneol=native#text/plain
packages/libc/src/nif_fddih.inc svneol=native#text/plain
packages/libc/src/nif_packeth.inc svneol=native#text/plain
packages/libc/src/nif_ppp.inc svneol=native#text/plain
packages/libc/src/nif_ppph.inc svneol=native#text/plain
packages/libc/src/nif_shaperh.inc svneol=native#text/plain
packages/libc/src/nif_trh.inc svneol=native#text/plain
packages/libc/src/nifh.inc svneol=native#text/plain
packages/libc/src/nigmph.inc svneol=native#text/plain
packages/libc/src/nin.inc svneol=native#text/plain
packages/libc/src/nin_systmh.inc svneol=native#text/plain
packages/libc/src/ninh.inc svneol=native#text/plain
packages/libc/src/nip.inc svneol=native#text/plain
packages/libc/src/nip6h.inc svneol=native#text/plain
packages/libc/src/nip_icmp.inc svneol=native#text/plain
packages/libc/src/nip_icmph.inc svneol=native#text/plain
packages/libc/src/niph.inc svneol=native#text/plain
packages/libc/src/nipxh.inc svneol=native#text/plain
packages/libc/src/nl_typesh.inc svneol=native#text/plain
packages/libc/src/nnetromh.inc svneol=native#text/plain
packages/libc/src/npacketh.inc svneol=native#text/plain
packages/libc/src/nroseh.inc svneol=native#text/plain
packages/libc/src/nroute.inc svneol=native#text/plain
packages/libc/src/nrouteh.inc svneol=native#text/plain
packages/libc/src/nssh.inc svneol=native#text/plain
packages/libc/src/ntcph.inc svneol=native#text/plain
packages/libc/src/nudph.inc svneol=native#text/plain
packages/libc/src/nupdh.inc svneol=native#text/plain
packages/libc/src/pathsh.inc svneol=native#text/plain
packages/libc/src/posix1_limh.inc svneol=native#text/plain
packages/libc/src/posix2_limh.inc svneol=native#text/plain
packages/libc/src/posixopth.inc svneol=native#text/plain
packages/libc/src/printfh.inc svneol=native#text/plain
packages/libc/src/proutedh.inc svneol=native#text/plain
packages/libc/src/prwhodh.inc svneol=native#text/plain
packages/libc/src/ptalkdh.inc svneol=native#text/plain
packages/libc/src/pthread.inc svneol=native#text/plain
packages/libc/src/pthreadh.inc svneol=native#text/plain
packages/libc/src/pthreadtypesh.inc svneol=native#text/plain
packages/libc/src/ptimedh.inc svneol=native#text/plain
packages/libc/src/ptyh.inc svneol=native#text/plain
packages/libc/src/pwdh.inc svneol=native#text/plain
packages/libc/src/regexh.inc svneol=native#text/plain
packages/libc/src/regexph.inc svneol=native#text/plain
packages/libc/src/saccth.inc svneol=native#text/plain
packages/libc/src/schedh.inc svneol=native#text/plain
packages/libc/src/searchh.inc svneol=native#text/plain
packages/libc/src/semaphoreh.inc svneol=native#text/plain
packages/libc/src/sfsuidh.inc svneol=native#text/plain
packages/libc/src/sgttyh.inc svneol=native#text/plain
packages/libc/src/shadowh.inc svneol=native#text/plain
packages/libc/src/sigactionh.inc svneol=native#text/plain
packages/libc/src/sigcontexth.inc svneol=native#text/plain
packages/libc/src/siginfoh.inc svneol=native#text/plain
packages/libc/src/signalh.inc svneol=native#text/plain
packages/libc/src/signumh.inc svneol=native#text/plain
packages/libc/src/sigseth.inc svneol=native#text/plain
packages/libc/src/sigstackh.inc svneol=native#text/plain
packages/libc/src/sigthreadh.inc svneol=native#text/plain
packages/libc/src/sioctlh.inc svneol=native#text/plain
packages/libc/src/sipch.inc svneol=native#text/plain
packages/libc/src/skdaemonh.inc svneol=native#text/plain
packages/libc/src/sklogh.inc svneol=native#text/plain
packages/libc/src/smmaph.inc svneol=native#text/plain
packages/libc/src/smounth.inc svneol=native#text/plain
packages/libc/src/smsgh.inc svneol=native#text/plain
packages/libc/src/spawnh.inc svneol=native#text/plain
packages/libc/src/spermh.inc svneol=native#text/plain
packages/libc/src/spollh.inc svneol=native#text/plain
packages/libc/src/sptraceh.inc svneol=native#text/plain
packages/libc/src/squota.inc svneol=native#text/plain
packages/libc/src/squotah.inc svneol=native#text/plain
packages/libc/src/sraw.inc svneol=native#text/plain
packages/libc/src/srawh.inc svneol=native#text/plain
packages/libc/src/srebooth.inc svneol=native#text/plain
packages/libc/src/sresourceh.inc svneol=native#text/plain
packages/libc/src/sscsi_ioctlh.inc svneol=native#text/plain
packages/libc/src/sscsih.inc svneol=native#text/plain
packages/libc/src/sselect.inc svneol=native#text/plain
packages/libc/src/sselecth.inc svneol=native#text/plain
packages/libc/src/ssemh.inc svneol=native#text/plain
packages/libc/src/ssendfileh.inc svneol=native#text/plain
packages/libc/src/ssgh.inc svneol=native#text/plain
packages/libc/src/sshmh.inc svneol=native#text/plain
packages/libc/src/ssocketh.inc svneol=native#text/plain
packages/libc/src/sstat.inc svneol=native#text/plain
packages/libc/src/sstatfsh.inc svneol=native#text/plain
packages/libc/src/sstath.inc svneol=native#text/plain
packages/libc/src/sstatvfsh.inc svneol=native#text/plain
packages/libc/src/sswaph.inc svneol=native#text/plain
packages/libc/src/ssysctlh.inc svneol=native#text/plain
packages/libc/src/ssysinfoh.inc svneol=native#text/plain
packages/libc/src/ssyslog.inc svneol=native#text/plain
packages/libc/src/ssyslogh.inc svneol=native#text/plain
packages/libc/src/stdinth.inc svneol=native#text/plain
packages/libc/src/stdio_exth.inc svneol=native#text/plain
packages/libc/src/stdio_limh.inc svneol=native#text/plain
packages/libc/src/stdioh.inc svneol=native#text/plain
packages/libc/src/stdlib.inc svneol=native#text/plain
packages/libc/src/stdlibh.inc svneol=native#text/plain
packages/libc/src/stime.inc svneol=native#text/plain
packages/libc/src/stimebh.inc svneol=native#text/plain
packages/libc/src/stimeh.inc svneol=native#text/plain
packages/libc/src/stringh.inc svneol=native#text/plain
packages/libc/src/stroptsh.inc svneol=native#text/plain
packages/libc/src/sttydefaults.inc svneol=native#text/plain
packages/libc/src/sttydefaultsh.inc svneol=native#text/plain
packages/libc/src/sucontexth.inc svneol=native#text/plain
packages/libc/src/suioh.inc svneol=native#text/plain
packages/libc/src/sun.inc svneol=native#text/plain
packages/libc/src/sunh.inc svneol=native#text/plain
packages/libc/src/suserh.inc svneol=native#text/plain
packages/libc/src/sustath.inc svneol=native#text/plain
packages/libc/src/sutsnameh.inc svneol=native#text/plain
packages/libc/src/svlimith.inc svneol=native#text/plain
packages/libc/src/svtimesh.inc svneol=native#text/plain
packages/libc/src/swaith.inc svneol=native#text/plain
packages/libc/src/sysexitsh.inc svneol=native#text/plain
packages/libc/src/syslogh.inc svneol=native#text/plain
packages/libc/src/systypeshh.inc svneol=native#text/plain
packages/libc/src/termios.inc svneol=native#text/plain
packages/libc/src/termiosh.inc svneol=native#text/plain
packages/libc/src/time.inc svneol=native#text/plain
packages/libc/src/timeh.inc svneol=native#text/plain
packages/libc/src/timesh.inc svneol=native#text/plain
packages/libc/src/timexh.inc svneol=native#text/plain
packages/libc/src/ttyenth.inc svneol=native#text/plain
packages/libc/src/types.inc svneol=native#text/plain
packages/libc/src/typesh.inc svneol=native#text/plain
packages/libc/src/ucontexth.inc svneol=native#text/plain
packages/libc/src/ulimith.inc svneol=native#text/plain
packages/libc/src/unistdh.inc svneol=native#text/plain
packages/libc/src/utimeh.inc svneol=native#text/plain
packages/libc/src/utmph.inc svneol=native#text/plain
packages/libc/src/utmpxh.inc svneol=native#text/plain
packages/libc/src/wcharh.inc svneol=native#text/plain
packages/libc/src/wctypeh.inc svneol=native#text/plain
packages/libc/src/wordexph.inc svneol=native#text/plain
packages/libc/src/wordsizeh.inc svneol=native#text/plain
packages/libc/src/xlocaleh.inc svneol=native#text/plain
packages/libc/src/xopen_limh.inc svneol=native#text/plain
packages/libcurl/Makefile svneol=native#text/plain
packages/libcurl/Makefile.fpc svneol=native#text/plain
packages/libcurl/Makefile.fpc.fpcmake svneol=native#text/plain
packages/libcurl/examples/Makefile svneol=native#text/plain
packages/libcurl/examples/Makefile.fpc svneol=native#text/plain
packages/libcurl/examples/testcurl.pp svneol=native#text/plain
packages/libcurl/examples/teststream.pp svneol=native#text/plain
packages/libcurl/fpmake.pp svneol=native#text/plain
packages/libcurl/src/libcurl.pp svneol=native#text/plain
packages/libgbafpc/Makefile svneol=native#text/plain
packages/libgbafpc/Makefile.fpc svneol=native#text/plain
packages/libgbafpc/Makefile.fpc.fpcmake svneol=native#text/plain
packages/libgbafpc/examples/Makefile svneol=native#text/plain
packages/libgbafpc/examples/Makefile.fpc svneol=native#text/plain
packages/libgbafpc/examples/audio/Makefile svneol=native#text/plain
packages/libgbafpc/examples/audio/Makefile.fpc svneol=native#text/plain
packages/libgbafpc/examples/audio/PlayBoyScout/Makefile svneol=native#text/plain
packages/libgbafpc/examples/audio/PlayBoyScout/Makefile.fpc svneol=native#text/plain
packages/libgbafpc/examples/audio/PlayBoyScout/PlayBoyScout.pp svneol=native#text/plain
packages/libgbafpc/examples/audio/PlayBoyScout/data/ScoutSplash.pcx -text
packages/libgbafpc/examples/audio/PlayBoyScout/data/tune.bgf -text
packages/libgbafpc/examples/graphics/Makefile svneol=native#text/plain
packages/libgbafpc/examples/graphics/Makefile.fpc svneol=native#text/plain
packages/libgbafpc/examples/graphics/PCXView/Makefile svneol=native#text/plain
packages/libgbafpc/examples/graphics/PCXView/Makefile.fpc svneol=native#text/plain
packages/libgbafpc/examples/graphics/PCXView/PcxView.pp svneol=native#text/plain
packages/libgbafpc/examples/graphics/PCXView/data/ScoutSplash.pcx -text
packages/libgbafpc/examples/graphics/PCXView/data/splash.pcx -text
packages/libgbafpc/examples/graphics/SimpleBGScroll/Makefile svneol=native#text/plain
packages/libgbafpc/examples/graphics/SimpleBGScroll/Makefile.fpc svneol=native#text/plain
packages/libgbafpc/examples/graphics/SimpleBGScroll/SimpleBGScroll.pp svneol=native#text/plain
packages/libgbafpc/examples/graphics/SimpleBGScroll/data/r6502_portfont.bin -text
packages/libgbafpc/examples/graphics/SimpleBGScroll/readme.txt svneol=native#text/plain
packages/libgbafpc/examples/graphics/ansi_console/Makefile svneol=native#text/plain
packages/libgbafpc/examples/graphics/ansi_console/Makefile.fpc svneol=native#text/plain
packages/libgbafpc/examples/graphics/ansi_console/console.pp svneol=native#text/plain
packages/libgbafpc/examples/template/Makefile svneol=native#text/plain
packages/libgbafpc/examples/template/Makefile.fpc svneol=native#text/plain
packages/libgbafpc/examples/template/template.pp svneol=native#text/plain
packages/libgbafpc/fpmake.pp svneol=native#text/plain
packages/libgbafpc/src/gba.pp svneol=native#text/plain
packages/libgbafpc/src/gba/BoyScout.inc svneol=native#text/plain
packages/libgbafpc/src/gba/core_asm.as svneol=native#text/plain
packages/libgbafpc/src/gba/disc.inc svneol=native#text/plain
packages/libgbafpc/src/gba/disc_io.inc svneol=native#text/plain
packages/libgbafpc/src/gba/dldi.inc svneol=native#text/plain
packages/libgbafpc/src/gba/fade.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba_affine.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba_base.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba_compression.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba_console.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba_dma.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba_helper.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba_input.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba_interrupt.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba_multiboot.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba_sio.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba_sound.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba_sprites.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba_systemcalls.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba_timers.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba_types.inc svneol=native#text/plain
packages/libgbafpc/src/gba/gba_video.inc svneol=native#text/plain
packages/libgbafpc/src/gba/helper.inc svneol=native#text/plain
packages/libgbafpc/src/gba/mappy.inc svneol=native#text/plain
packages/libgbafpc/src/gba/mbv2.inc svneol=native#text/plain
packages/libgbafpc/src/gba/pcx.inc svneol=native#text/plain
packages/libgbafpc/src/maxmod/inc/maxmod.inc svneol=native#text/plain
packages/libgbafpc/src/maxmod/inc/mm_types.inc svneol=native#text/plain
packages/libgbafpc/src/maxmod/maxmod.pp svneol=native#text/plain
packages/libgd/Makefile svneol=native#text/plain
packages/libgd/Makefile.fpc svneol=native#text/plain
packages/libgd/Makefile.fpc.fpcmake svneol=native#text/plain
packages/libgd/README.txt svneol=native#text/plain
packages/libgd/examples/Makefile svneol=native#text/plain
packages/libgd/examples/Makefile.fpc svneol=native#text/plain
packages/libgd/examples/gdtest.pp svneol=native#text/plain
packages/libgd/examples/gdtestcgi.pp svneol=native#text/plain
packages/libgd/fpmake.pp svneol=native#text/plain
packages/libgd/src/gd.pas svneol=native#text/plain
packages/libndsfpc/Makefile svneol=native#text/plain
packages/libndsfpc/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/Makefile.fpc.fpcmake svneol=native#text/plain
packages/libndsfpc/examples/Makefile svneol=native#text/plain
packages/libndsfpc/examples/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/audio/Makefile svneol=native#text/plain
packages/libndsfpc/examples/audio/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/Makefile svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/audio_modes/Makefile svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/audio_modes/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/audio_modes/audio/keyg-subtonal.xm -text
packages/libndsfpc/examples/audio/maxmod/audio_modes/audio/purple_motion-inspiration.s3m -text
packages/libndsfpc/examples/audio/maxmod/audio_modes/audio/rez-monday.mod -text
packages/libndsfpc/examples/audio/maxmod/audio_modes/audio_modes.pp svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/basic_sound/Makefile svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/basic_sound/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/basic_sound/audio/Ambulance.wav -text
packages/libndsfpc/examples/audio/maxmod/basic_sound/audio/Boom.wav -text
packages/libndsfpc/examples/audio/maxmod/basic_sound/audio/FlatOutLies.mod -text
packages/libndsfpc/examples/audio/maxmod/basic_sound/basic_sound.pp svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/reverb/Makefile svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/reverb/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/reverb/audio/tempest-zen_bowling.mod -text
packages/libndsfpc/examples/audio/maxmod/reverb/reverb.pp svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/song_events_example/Makefile svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/song_events_example/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/song_events_example/gfx/ball.grit svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/song_events_example/gfx/ball.png -text
packages/libndsfpc/examples/audio/maxmod/song_events_example/music/example.it -text
packages/libndsfpc/examples/audio/maxmod/song_events_example/song_events_example.pp svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/song_events_example2/Makefile svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/song_events_example2/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/audio/maxmod/song_events_example2/audio/example2.it -text
packages/libndsfpc/examples/audio/maxmod/song_events_example2/song_events_example2.pp svneol=native#text/plain
packages/libndsfpc/examples/audio/micrecord/Makefile svneol=native#text/plain
packages/libndsfpc/examples/audio/micrecord/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/audio/micrecord/micrecord.pp svneol=native#text/plain
packages/libndsfpc/examples/card/Makefile svneol=native#text/plain
packages/libndsfpc/examples/card/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/card/eeprom/Makefile svneol=native#text/plain
packages/libndsfpc/examples/card/eeprom/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/card/eeprom/eeprom.pp svneol=native#text/plain
packages/libndsfpc/examples/debugging/Makefile svneol=native#text/plain
packages/libndsfpc/examples/debugging/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/debugging/exceptionTest/Makefile svneol=native#text/plain
packages/libndsfpc/examples/debugging/exceptionTest/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/debugging/exceptionTest/exceptionTest.pp svneol=native#text/plain
packages/libndsfpc/examples/ds_motion/Makefile svneol=native#text/plain
packages/libndsfpc/examples/ds_motion/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/ds_motion/dsMotion.pp svneol=native#text/plain
packages/libndsfpc/examples/dswifi/Makefile svneol=native#text/plain
packages/libndsfpc/examples/dswifi/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/dswifi/ap_search/Makefile svneol=native#text/plain
packages/libndsfpc/examples/dswifi/ap_search/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/dswifi/ap_search/apSearch.pp svneol=native#text/plain
packages/libndsfpc/examples/dswifi/autoconnect/Makefile svneol=native#text/plain
packages/libndsfpc/examples/dswifi/autoconnect/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/dswifi/autoconnect/autoconnect.pp svneol=native#text/plain
packages/libndsfpc/examples/dswifi/httpget/Makefile svneol=native#text/plain
packages/libndsfpc/examples/dswifi/httpget/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/dswifi/httpget/httpget.pp svneol=native#text/plain
packages/libndsfpc/examples/filesystem/Makefile svneol=native#text/plain
packages/libndsfpc/examples/filesystem/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/filesystem/embedded_gbfs/GBFS/Mud.pcx -text
packages/libndsfpc/examples/filesystem/embedded_gbfs/GBFS/World.txt svneol=native#text/plain
packages/libndsfpc/examples/filesystem/embedded_gbfs/Makefile svneol=native#text/plain
packages/libndsfpc/examples/filesystem/embedded_gbfs/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/filesystem/embedded_gbfs/embedded_gbfs.pp svneol=native#text/plain
packages/libndsfpc/examples/filesystem/libfat/Makefile svneol=native#text/plain
packages/libndsfpc/examples/filesystem/libfat/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/filesystem/libfat/access_dir/Makefile svneol=native#text/plain
packages/libndsfpc/examples/filesystem/libfat/access_dir/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/filesystem/libfat/access_dir/access_dir.pp svneol=native#text/plain
packages/libndsfpc/examples/filesystem/libfat/access_file/Makefile svneol=native#text/plain
packages/libndsfpc/examples/filesystem/libfat/access_file/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/filesystem/libfat/access_file/access_file.pp svneol=native#text/plain
packages/libndsfpc/examples/filesystem/libfat/access_file/test1.txt svneol=native#text/plain
packages/libndsfpc/examples/filesystem/libfat/libfatdir/Makefile svneol=native#text/plain
packages/libndsfpc/examples/filesystem/libfat/libfatdir/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/filesystem/libfat/libfatdir/libfatdir.pp svneol=native#text/plain
packages/libndsfpc/examples/filesystem/nitrofs/Makefile svneol=native#text/plain
packages/libndsfpc/examples/filesystem/nitrofs/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/filesystem/nitrofs/nitrodir/Makefile svneol=native#text/plain
packages/libndsfpc/examples/filesystem/nitrofs/nitrodir/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/filesystem/nitrofs/nitrodir/nitrodir.pp svneol=native#text/plain
packages/libndsfpc/examples/filesystem/nitrofs/nitrodir/nitrofiles/dir1/test.txt svneol=native#text/plain
packages/libndsfpc/examples/filesystem/nitrofs/nitrodir/nitrofiles/dir2/subdir1/subsubdir1/file2.txt svneol=native#text/plain
packages/libndsfpc/examples/filesystem/nitrofs/nitrodir/nitrofiles/dir2/subdir1/test2.txt svneol=native#text/plain
packages/libndsfpc/examples/filesystem/nitrofs/nitrodir/nitrofiles/file1.txt svneol=native#text/plain
packages/libndsfpc/examples/gl2d/2Dplus3D/2Dplus3D.pp svneol=native#text/plain
packages/libndsfpc/examples/gl2d/2Dplus3D/Makefile svneol=native#text/plain
packages/libndsfpc/examples/gl2d/2Dplus3D/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/gl2d/2Dplus3D/cearn_atan.pas svneol=native#text/plain
packages/libndsfpc/examples/gl2d/2Dplus3D/gfx/enemies.bmp -text
packages/libndsfpc/examples/gl2d/2Dplus3D/gfx/enemies.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/2Dplus3D/gfx/flyer.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/2Dplus3D/gfx/flyer.png -text
packages/libndsfpc/examples/gl2d/2Dplus3D/gfx/organ16.bmp -text
packages/libndsfpc/examples/gl2d/2Dplus3D/gfx/organ16.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/2Dplus3D/gfx/shuttle.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/2Dplus3D/gfx/shuttle.png -text
packages/libndsfpc/examples/gl2d/2Dplus3D/uvcoord_enemies.pas svneol=native#text/plain
packages/libndsfpc/examples/gl2d/2Dplus3D/vbuffer.pas svneol=native#text/plain
packages/libndsfpc/examples/gl2d/Makefile svneol=native#text/plain
packages/libndsfpc/examples/gl2d/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/gl2d/dual_screen/Makefile svneol=native#text/plain
packages/libndsfpc/examples/gl2d/dual_screen/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/gl2d/dual_screen/dual_screen.pp svneol=native#text/plain
packages/libndsfpc/examples/gl2d/fonts/Makefile svneol=native#text/plain
packages/libndsfpc/examples/gl2d/fonts/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/gl2d/fonts/fonts.pp svneol=native#text/plain
packages/libndsfpc/examples/gl2d/fonts/gfx/font_16x16.bmp -text
packages/libndsfpc/examples/gl2d/fonts/gfx/font_16x16.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/fonts/gfx/font_si.bmp -text
packages/libndsfpc/examples/gl2d/fonts/gfx/font_si.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/fonts/uvcoord_font_16x16.pas svneol=native#text/plain
packages/libndsfpc/examples/gl2d/fonts/uvcoord_font_si.pas svneol=native#text/plain
packages/libndsfpc/examples/gl2d/primitives/Makefile svneol=native#text/plain
packages/libndsfpc/examples/gl2d/primitives/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/gl2d/primitives/primitives.pp svneol=native#text/plain
packages/libndsfpc/examples/gl2d/scrolling/Makefile svneol=native#text/plain
packages/libndsfpc/examples/gl2d/scrolling/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/gl2d/scrolling/gfx/crono.bmp -text
packages/libndsfpc/examples/gl2d/scrolling/gfx/crono.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/scrolling/gfx/tiles.bmp -text
packages/libndsfpc/examples/gl2d/scrolling/gfx/tiles.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/scrolling/scrolling.pp svneol=native#text/plain
packages/libndsfpc/examples/gl2d/scrolling/uvcoord_crono.pas svneol=native#text/plain
packages/libndsfpc/examples/gl2d/sprites/Makefile svneol=native#text/plain
packages/libndsfpc/examples/gl2d/sprites/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/gl2d/sprites/cearn_atan.pas svneol=native#text/plain
packages/libndsfpc/examples/gl2d/sprites/gfx/anya.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/sprites/gfx/anya.png -text
packages/libndsfpc/examples/gl2d/sprites/gfx/blob_sprite.bmp -text
packages/libndsfpc/examples/gl2d/sprites/gfx/blob_sprite.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/sprites/gfx/enemies.bmp -text
packages/libndsfpc/examples/gl2d/sprites/gfx/enemies.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/sprites/gfx/flyer.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/sprites/gfx/flyer.png -text
packages/libndsfpc/examples/gl2d/sprites/gfx/font.bmp -text
packages/libndsfpc/examples/gl2d/sprites/gfx/font.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/sprites/gfx/fontbubble.bmp -text
packages/libndsfpc/examples/gl2d/sprites/gfx/fontbubble.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/sprites/gfx/shuttle.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/sprites/gfx/shuttle.png -text
packages/libndsfpc/examples/gl2d/sprites/gfx/test_sprite.bmp -text
packages/libndsfpc/examples/gl2d/sprites/gfx/test_sprite.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/sprites/gfx/tiles.bmp -text
packages/libndsfpc/examples/gl2d/sprites/gfx/tiles.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/sprites/gfx/zero.bmp -text
packages/libndsfpc/examples/gl2d/sprites/gfx/zero.grit svneol=native#text/plain
packages/libndsfpc/examples/gl2d/sprites/sprites.pp svneol=native#text/plain
packages/libndsfpc/examples/gl2d/sprites/uvcoord_enemies.pas svneol=native#text/plain
packages/libndsfpc/examples/gl2d/sprites/uvcoord_zero.pas svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/3D_Both_Screens/3DBothScreens.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/3D_Both_Screens/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/3D_Both_Screens/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/BoxTest/BoxTest.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/BoxTest/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/BoxTest/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Display_List/DisplayList.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Display_List/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Display_List/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Display_List_2/DisplayList2.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Display_List_2/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Display_List_2/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Display_List_2/data/teapot.bin -text
packages/libndsfpc/examples/graphics/3D/Env_Mapping/EnvMapping.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Env_Mapping/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Env_Mapping/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Env_Mapping/data/cafe.bin -text
packages/libndsfpc/examples/graphics/3D/Env_Mapping/data/teapot.bin -text
packages/libndsfpc/examples/graphics/3D/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Mixed_Text_3D/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Mixed_Text_3D/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Mixed_Text_3D/MixedText3D.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Ortho/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Ortho/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Ortho/Ortho.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Ortho/data/drunkenlogo.pcx -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/PalettedCube.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture.bin -text svneol=unset#application/octet-stream
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture10_COMP_pal.bin -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture10_COMP_tex.bin -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture10_COMP_texExt.bin -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture1_RGB16_pal.bin -text svneol=unset#application/octet-stream
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture1_RGB16_tex.bin -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture2_RGB16_pal.bin -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture2_RGB16_tex.bin -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture3_RGB16_pal.bin -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture3_RGB16_tex.bin -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture4_RGB16_pal.bin -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture4_RGB16_tex.bin -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture5_RGB16_pal.bin -text svneol=unset#application/octet-stream
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture5_RGB16_tex.bin -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture6_RGB4_pal.bin -text svneol=unset#application/octet-stream
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture6_RGB4_tex.bin -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture7_RGB4_pal.bin -text svneol=unset#application/octet-stream
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture7_RGB4_tex.bin -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture8_RGB32_A3_pal.bin -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture8_RGB32_A3_tex.bin -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture9_RGB32_A3_pal.bin -text
packages/libndsfpc/examples/graphics/3D/Paletted_Cube/data/texture9_RGB32_A3_tex.bin -text
packages/libndsfpc/examples/graphics/3D/Picking/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Picking/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Picking/Picking.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Picking/data/cone.bin -text
packages/libndsfpc/examples/graphics/3D/Picking/data/cylinder.bin -text
packages/libndsfpc/examples/graphics/3D/Picking/data/sphere.bin -text
packages/libndsfpc/examples/graphics/3D/Simple_Quad/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Simple_Quad/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Simple_Quad/SimpleQuad.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Simple_Tri/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Simple_Tri/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Simple_Tri/SimpleTri.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Textured_Cube/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Textured_Cube/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Textured_Cube/TexturedCube.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Textured_Cube/data/texture.bin -text svneol=unset#application/octet-stream
packages/libndsfpc/examples/graphics/3D/Textured_Quad/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Textured_Quad/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Textured_Quad/TexturedQuad.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Textured_Quad/data/texture.bin -text svneol=unset#application/octet-stream
packages/libndsfpc/examples/graphics/3D/Toon_Shading/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Toon_Shading/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Toon_Shading/ToonShading.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/Toon_Shading/data/statue.bin -text
packages/libndsfpc/examples/graphics/3D/nehe/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson01/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson01/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson01/lesson01.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson02/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson02/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson02/lesson02.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson03/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson03/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson03/lesson03.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson04/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson04/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson04/lesson04.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson05/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson05/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson05/lesson05.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson06/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson06/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson06/data/drunkenlogo.pcx -text
packages/libndsfpc/examples/graphics/3D/nehe/lesson06/lesson06.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson07/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson07/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson07/data/drunkenlogo.pcx -text
packages/libndsfpc/examples/graphics/3D/nehe/lesson07/lesson07.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson08/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson08/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson08/data/drunkenlogo.pcx -text
packages/libndsfpc/examples/graphics/3D/nehe/lesson08/lesson08.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson09/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson09/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson09/data/Star.pcx -text
packages/libndsfpc/examples/graphics/3D/nehe/lesson09/lesson09.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson10/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson10/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson10/data/Mud.pcx -text
packages/libndsfpc/examples/graphics/3D/nehe/lesson10/data/World.txt svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson10/data/drunkenlogo.pcx -text
packages/libndsfpc/examples/graphics/3D/nehe/lesson10/lesson10.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson10b/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson10b/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson10b/data/Mud.pcx -text
packages/libndsfpc/examples/graphics/3D/nehe/lesson10b/data/World.txt svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson10b/lesson10b.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson11/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson11/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/3D/nehe/lesson11/data/drunkenlogo.pcx -text
packages/libndsfpc/examples/graphics/3D/nehe/lesson11/lesson11.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/16bit_color_bmp/16bitColorBmp.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/16bit_color_bmp/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/16bit_color_bmp/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/16bit_color_bmp/gfx/drunkenlogo.grit svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/16bit_color_bmp/gfx/drunkenlogo.png -text svneol=unset#image/png
packages/libndsfpc/examples/graphics/Backgrounds/256_color_bmp/256ColorBmp.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/256_color_bmp/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/256_color_bmp/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/256_color_bmp/gfx/drunkenlogo.grit svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/256_color_bmp/gfx/drunkenlogo.png -text svneol=unset#image/png
packages/libndsfpc/examples/graphics/Backgrounds/Double_Buffer/DoubleBuffer.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/Double_Buffer/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/Double_Buffer/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/all_in_one/Advanced.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/all_in_one/BackgroundAllInOne.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/all_in_one/Basic.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/all_in_one/Handmade.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/all_in_one/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/all_in_one/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/all_in_one/Multilayer.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/all_in_one/RotBackgrounds.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/all_in_one/Scrolling.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/all_in_one/TextBackgrounds.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/all_in_one/asm/Multilayer.s svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/all_in_one/asm/RotBackgrounds.s svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/all_in_one/asm/TextBackgrounds.s svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/all_in_one/gfx/layers.pew -text
packages/libndsfpc/examples/graphics/Backgrounds/all_in_one/gfx/readme.txt svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/all_in_one/gfx/tiles.png -text svneol=unset#image/png
packages/libndsfpc/examples/graphics/Backgrounds/rotation/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/rotation/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/rotation/Rotation.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Backgrounds/rotation/data/drunkenlogo.bin -text svneol=unset#application/octet-stream
packages/libndsfpc/examples/graphics/Backgrounds/rotation/data/palette.bin -text
packages/libndsfpc/examples/graphics/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/ansi_console/AnsiConsole.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/ansi_console/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/ansi_console/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/console_windows/ConsoleWindows.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/console_windows/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/console_windows/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/custom_font/CustomFont.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/custom_font/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/custom_font/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/custom_font/gfx/font.bmp -text
packages/libndsfpc/examples/graphics/Printing/custom_font/gfx/font.grit svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/print_both_screens/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/print_both_screens/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/print_both_screens/printBothScreens.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/rotscale_text/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/rotscale_text/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/rotscale_text/RotscaleText.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Printing/rotscale_text/gfx/font.bmp -text
packages/libndsfpc/examples/graphics/Printing/rotscale_text/gfx/font.grit svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/allocation_test/AllocationTest.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/allocation_test/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/allocation_test/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/animate_simple/AnimateSimple.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/animate_simple/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/animate_simple/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/animate_simple/sprites/man.png -text svneol=unset#image/png
packages/libndsfpc/examples/graphics/Sprites/animate_simple/sprites/sprite.grit svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/animate_simple/sprites/woman.png -text svneol=unset#image/png
packages/libndsfpc/examples/graphics/Sprites/bitmap_sprites/BitmapSprites.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/bitmap_sprites/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/bitmap_sprites/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/fire_and_sprites/FireAndSprites.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/fire_and_sprites/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/fire_and_sprites/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/fire_and_sprites/data/ball.pcx -text
packages/libndsfpc/examples/graphics/Sprites/simple/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/simple/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/simple/Simple.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/sprite_extended_palettes/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/sprite_extended_palettes/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/sprite_extended_palettes/SpriteExtendedPalettes.pp svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/sprite_rotate/Makefile svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/sprite_rotate/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/graphics/Sprites/sprite_rotate/SpriteRotate.pp svneol=native#text/plain
packages/libndsfpc/examples/hello_world/Makefile svneol=native#text/plain
packages/libndsfpc/examples/hello_world/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/hello_world/helloWorld.pp svneol=native#text/plain
packages/libndsfpc/examples/input/Makefile svneol=native#text/plain
packages/libndsfpc/examples/input/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/input/Touch_Pad/Makefile svneol=native#text/plain
packages/libndsfpc/examples/input/Touch_Pad/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/input/Touch_Pad/touch_area/Makefile svneol=native#text/plain
packages/libndsfpc/examples/input/Touch_Pad/touch_area/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/input/Touch_Pad/touch_area/touchArea.pp svneol=native#text/plain
packages/libndsfpc/examples/input/Touch_Pad/touch_look/Makefile svneol=native#text/plain
packages/libndsfpc/examples/input/Touch_Pad/touch_look/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/input/Touch_Pad/touch_look/data/Mud.pcx -text
packages/libndsfpc/examples/input/Touch_Pad/touch_look/data/World.txt svneol=native#text/plain
packages/libndsfpc/examples/input/Touch_Pad/touch_look/touchLook.pp svneol=native#text/plain
packages/libndsfpc/examples/input/Touch_Pad/touch_test/Makefile svneol=native#text/plain
packages/libndsfpc/examples/input/Touch_Pad/touch_test/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/input/Touch_Pad/touch_test/data/balldata.bin -text
packages/libndsfpc/examples/input/Touch_Pad/touch_test/data/ballpalette.bin -text
packages/libndsfpc/examples/input/Touch_Pad/touch_test/touchTest.pp svneol=native#text/plain
packages/libndsfpc/examples/input/keyboard/Makefile svneol=native#text/plain
packages/libndsfpc/examples/input/keyboard/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/input/keyboard/keyboard_async/Makefile svneol=native#text/plain
packages/libndsfpc/examples/input/keyboard/keyboard_async/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/input/keyboard/keyboard_async/keyboardAsync.pp svneol=native#text/plain
packages/libndsfpc/examples/input/keyboard/keyboard_stdin/Makefile svneol=native#text/plain
packages/libndsfpc/examples/input/keyboard/keyboard_stdin/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/input/keyboard/keyboard_stdin/keyboardStdin.pp svneol=native#text/plain
packages/libndsfpc/examples/time/Makefile svneol=native#text/plain
packages/libndsfpc/examples/time/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/time/RealTimeClock/Makefile svneol=native#text/plain
packages/libndsfpc/examples/time/RealTimeClock/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/time/RealTimeClock/realtimeclock.pp svneol=native#text/plain
packages/libndsfpc/examples/time/stopwatch/Makefile svneol=native#text/plain
packages/libndsfpc/examples/time/stopwatch/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/time/stopwatch/stopwatch.pp svneol=native#text/plain
packages/libndsfpc/examples/time/timercallback/Makefile svneol=native#text/plain
packages/libndsfpc/examples/time/timercallback/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/time/timercallback/timercallback.pp svneol=native#text/plain
packages/libndsfpc/fpmake.pp svneol=native#text/plain
packages/libndsfpc/src/dswifi/dswifi7.pp svneol=native#text/plain
packages/libndsfpc/src/dswifi/dswifi9.pp svneol=native#text/plain
packages/libndsfpc/src/dswifi/inc/dswifi7.inc svneol=native#text/plain
packages/libndsfpc/src/dswifi/inc/dswifi9.inc svneol=native#text/plain
packages/libndsfpc/src/dswifi/inc/dswifi_version.inc svneol=native#text/plain
packages/libndsfpc/src/dswifi/inc/netdb.inc svneol=native#text/plain
packages/libndsfpc/src/dswifi/inc/netinet/in.inc svneol=native#text/plain
packages/libndsfpc/src/dswifi/inc/sgIP_errno.inc svneol=native#text/plain
packages/libndsfpc/src/dswifi/inc/sys/socket.inc svneol=native#text/plain
packages/libndsfpc/src/fat/fat.inc svneol=native#text/plain
packages/libndsfpc/src/fat/fat.pp svneol=native#text/plain
packages/libndsfpc/src/fat/fathelper.inc svneol=native#text/plain
packages/libndsfpc/src/fat/filesystem.inc svneol=native#text/plain
packages/libndsfpc/src/fat/filesystem.pp svneol=native#text/plain
packages/libndsfpc/src/fat/gbfs.inc svneol=native#text/plain
packages/libndsfpc/src/fat/gbfs.pp svneol=native#text/plain
packages/libndsfpc/src/gl2d/gl2d.pp svneol=native#text/plain
packages/libndsfpc/src/maxmod/inc/maxmod.inc svneol=native#text/plain
packages/libndsfpc/src/maxmod/inc/maxmod7.inc svneol=native#text/plain
packages/libndsfpc/src/maxmod/inc/maxmod9.inc svneol=native#text/plain
packages/libndsfpc/src/maxmod/inc/mm_mas.inc svneol=native#text/plain
packages/libndsfpc/src/maxmod/inc/mm_msl.inc svneol=native#text/plain
packages/libndsfpc/src/maxmod/inc/mm_types.inc svneol=native#text/plain
packages/libndsfpc/src/maxmod/maxmod7.pp svneol=native#text/plain
packages/libndsfpc/src/maxmod/maxmod9.pp svneol=native#text/plain
packages/libndsfpc/src/nds/arm7/audio.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm7/clock.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm7/i2c.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm7/input.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm7/sdmmc.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm7/serial.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm7/touch.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/background.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/boxtest.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/cache.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/console.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/decompress.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/dldi.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/dynamicArray.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/exceptions.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/guitarGrip.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/image.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/input.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/keyboard.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/linkedlist.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/math.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/ndsmotion.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/paddle.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/pcx.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/piano.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/postest.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/rumble.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/sassert.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/sound.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/sprite.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/trig_lut.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/video.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/videoGL.inc svneol=native#text/plain
packages/libndsfpc/src/nds/bios.inc svneol=native#text/plain
packages/libndsfpc/src/nds/card.inc svneol=native#text/plain
packages/libndsfpc/src/nds/debug.inc svneol=native#text/plain
packages/libndsfpc/src/nds/disc_io.inc svneol=native#text/plain
packages/libndsfpc/src/nds/dma.inc svneol=native#text/plain
packages/libndsfpc/src/nds/fifocommon.inc svneol=native#text/plain
packages/libndsfpc/src/nds/fifomessages.inc svneol=native#text/plain
packages/libndsfpc/src/nds/helper.inc svneol=native#text/plain
packages/libndsfpc/src/nds/input.inc svneol=native#text/plain
packages/libndsfpc/src/nds/interrupts.inc svneol=native#text/plain
packages/libndsfpc/src/nds/ipc.inc svneol=native#text/plain
packages/libndsfpc/src/nds/jtypes.inc svneol=native#text/plain
packages/libndsfpc/src/nds/memory.inc svneol=native#text/plain
packages/libndsfpc/src/nds/nds.inc svneol=native#text/plain
packages/libndsfpc/src/nds/ndsinclude.inc svneol=native#text/plain
packages/libndsfpc/src/nds/ndstypes.inc svneol=native#text/plain
packages/libndsfpc/src/nds/registers_alt.inc svneol=native#text/plain
packages/libndsfpc/src/nds/system.inc svneol=native#text/plain
packages/libndsfpc/src/nds/timers.inc svneol=native#text/plain
packages/libndsfpc/src/nds/touch.inc svneol=native#text/plain
packages/libndsfpc/src/nds7.pp svneol=native#text/plain
packages/libndsfpc/src/nds9.pp svneol=native#text/plain
packages/libogcfpc/Makefile svneol=native#text/plain
packages/libogcfpc/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/Makefile.fpc.fpcmake svneol=native#text/plain
packages/libogcfpc/examples/Makefile svneol=native#text/plain
packages/libogcfpc/examples/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/audio/Makefile svneol=native#text/plain
packages/libogcfpc/examples/audio/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/audio/modplay/Makefile svneol=native#text/plain
packages/libogcfpc/examples/audio/modplay/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/audio/modplay/data/technique.mod -text
packages/libogcfpc/examples/audio/modplay/modplay.pp svneol=native#text/plain
packages/libogcfpc/examples/audio/mp3player/Makefile svneol=native#text/plain
packages/libogcfpc/examples/audio/mp3player/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/audio/mp3player/data/sample.mp3 -text
packages/libogcfpc/examples/audio/mp3player/playmp3.pp svneol=native#text/plain
packages/libogcfpc/examples/devices/Makefile svneol=native#text/plain
packages/libogcfpc/examples/devices/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/devices/network/Makefile svneol=native#text/plain
packages/libogcfpc/examples/devices/network/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/devices/network/sockettest/Makefile svneol=native#text/plain
packages/libogcfpc/examples/devices/network/sockettest/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/devices/network/sockettest/sockettest.pp svneol=native#text/plain
packages/libogcfpc/examples/devices/usbgecko/Makefile svneol=native#text/plain
packages/libogcfpc/examples/devices/usbgecko/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/devices/usbgecko/gdbstub/Makefile svneol=native#text/plain
packages/libogcfpc/examples/devices/usbgecko/gdbstub/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/devices/usbgecko/gdbstub/gdb.txt svneol=native#text/plain
packages/libogcfpc/examples/devices/usbgecko/gdbstub/gdbstub.pp svneol=native#text/plain
packages/libogcfpc/examples/devices/usbkeyboard/Makefile svneol=native#text/plain
packages/libogcfpc/examples/devices/usbkeyboard/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/devices/usbkeyboard/basic_stdin/Makefile svneol=native#text/plain
packages/libogcfpc/examples/devices/usbkeyboard/basic_stdin/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/devices/usbkeyboard/basic_stdin/basic_stdin.pp svneol=native#text/plain
packages/libogcfpc/examples/filesystem/Makefile svneol=native#text/plain
packages/libogcfpc/examples/filesystem/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/filesystem/directory/Makefile svneol=native#text/plain
packages/libogcfpc/examples/filesystem/directory/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/filesystem/directory/directory.pp svneol=native#text/plain
packages/libogcfpc/examples/graphics/Makefile svneol=native#text/plain
packages/libogcfpc/examples/graphics/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/Makefile svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/gxSprites/Makefile svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/gxSprites/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/gxSprites/gxsprites.pp svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/gxSprites/textures/ballsprites.png -text
packages/libogcfpc/examples/graphics/gx/gxSprites/textures/textures.scf svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/Makefile svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson1/Makefile svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson1/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson1/lesson1.pp svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson2/Makefile svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson2/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson2/lesson2.pp svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson3/Makefile svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson3/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson3/lesson3.pp svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson4/Makefile svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson4/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson4/lesson4.pp svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson5/Makefile svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson5/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson5/lesson5.pp svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson6/Makefile svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson6/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson6/lesson6.pp svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson6/textures/NeHe.bmp -text
packages/libogcfpc/examples/graphics/gx/neheGX/lesson6/textures/NeHe.scf svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson7/Makefile svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson7/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson7/lesson7.pp svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson7/textures/crate.bmp -text
packages/libogcfpc/examples/graphics/gx/neheGX/lesson7/textures/crate.scf svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson8/Makefile svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson8/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson8/lesson8.pp svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson8/textures/Glass.bmp -text
packages/libogcfpc/examples/graphics/gx/neheGX/lesson8/textures/glass.scf svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson9/Makefile svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson9/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson9/lesson9.pp svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/neheGX/lesson9/textures/Star.bmp -text
packages/libogcfpc/examples/graphics/gx/neheGX/lesson9/textures/startex.scf svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/triangle/Makefile svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/triangle/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/graphics/gx/triangle/triangle.pp svneol=native#text/plain
packages/libogcfpc/examples/template/Makefile svneol=native#text/plain
packages/libogcfpc/examples/template/Makefile.fpc svneol=native#text/plain
packages/libogcfpc/examples/template/template.pp svneol=native#text/plain
packages/libogcfpc/fpmake.pp svneol=native#text/plain
packages/libogcfpc/src/aesndlib.pp svneol=native#text/plain
packages/libogcfpc/src/asndlib.pp svneol=native#text/plain
packages/libogcfpc/src/bte/bd_addr.inc svneol=native#text/plain
packages/libogcfpc/src/bte/bte.inc svneol=native#text/plain
packages/libogcfpc/src/debug.inc svneol=native#text/plain
packages/libogcfpc/src/debug.pp svneol=native#text/plain
packages/libogcfpc/src/di/di.inc svneol=native#text/plain
packages/libogcfpc/src/fat.pp svneol=native#text/plain
packages/libogcfpc/src/gccore.inc svneol=native#text/plain
packages/libogcfpc/src/gccore.pp svneol=native#text/plain
packages/libogcfpc/src/gcmodplay.pp svneol=native#text/plain
packages/libogcfpc/src/gctypes.pp svneol=native#text/plain
packages/libogcfpc/src/iso9660.pp svneol=native#text/plain
packages/libogcfpc/src/mp3player.pp svneol=native#text/plain
packages/libogcfpc/src/network.pp svneol=native#text/plain
packages/libogcfpc/src/ogc/aram.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/arqmgr.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/arqueue.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/audio.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/cache.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/card.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/cast.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/color.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/cond.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/conf.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/consol.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/context.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/disc_io.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/dsp.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/dvd.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/es.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/exi.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/gu.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/gx.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/gx_struct.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/ios.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/ipc.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/irq.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/isfs.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/lwp.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/lwp_config.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/lwp_heap.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/lwp_messages.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/lwp_mutex.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/lwp_objmgr.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/lwp_priority.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/lwp_queue.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/lwp_sema.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/lwp_stack.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/lwp_states.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/lwp_threadq.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/lwp_threads.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/lwp_tqdata.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/lwp_watchdog.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/lwp_wkspace.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/machine/asm.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/machine/processor.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/machine/spinlock.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/message.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/mutex.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/pad.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/semaphore.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/si.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/stm.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/sys_state.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/system.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/texconv.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/tpl.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/usb.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/usbgecko.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/usbmouse.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/usbstorage.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/video.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/video_types.inc svneol=native#text/plain
packages/libogcfpc/src/ogc/wiilaunch.inc svneol=native#text/plain
packages/libogcfpc/src/ogcsys.inc svneol=native#text/plain
packages/libogcfpc/src/sdcard/card_buf.inc svneol=native#text/plain
packages/libogcfpc/src/sdcard/card_cmn.inc svneol=native#text/plain
packages/libogcfpc/src/sdcard/card_io.inc svneol=native#text/plain
packages/libogcfpc/src/sdcard/gcsd.inc svneol=native#text/plain
packages/libogcfpc/src/sdcard/wiisd_io.inc svneol=native#text/plain
packages/libogcfpc/src/wiikeyboard/keyboard.inc svneol=native#text/plain
packages/libogcfpc/src/wiikeyboard/usbkeyboard.inc svneol=native#text/plain
packages/libogcfpc/src/wiikeyboard/wsksymdef.inc svneol=native#text/plain
packages/libogcfpc/src/wiiuse/wiiuse.inc svneol=native#text/plain
packages/libogcfpc/src/wiiuse/wpad.inc svneol=native#text/plain
packages/libpng/Makefile svneol=native#text/plain
packages/libpng/Makefile.fpc svneol=native#text/plain
packages/libpng/Makefile.fpc.fpcmake svneol=native#text/plain
packages/libpng/fpmake.pp svneol=native#text/plain
packages/libpng/src/png.pp svneol=native#text/plain
packages/librsvg/Makefile svneol=native#text/plain
packages/librsvg/Makefile.fpc svneol=native#text/plain
packages/librsvg/Makefile.fpc.fpcmake svneol=native#text/plain
packages/librsvg/fpmake.pp svneol=native#text/plain
packages/librsvg/src/rsvg.pas svneol=native#text/plain
packages/libsee/Makefile svneol=native#text/plain
packages/libsee/Makefile.fpc svneol=native#text/plain
packages/libsee/Makefile.fpc.fpcmake svneol=native#text/plain
packages/libsee/README.txt svneol=native#text/plain
packages/libsee/examples/Makefile svneol=native#text/plain
packages/libsee/examples/Makefile.fpc svneol=native#text/plain
packages/libsee/examples/mod_stream.pp svneol=native#text/plain
packages/libsee/examples/teststream.pp svneol=native#text/plain
packages/libsee/examples/testwrite.pp svneol=native#text/plain
packages/libsee/examples/tlibsee.pp svneol=native#text/plain
packages/libsee/fpmake.pp svneol=native#text/plain
packages/libsee/src/libsee.pas svneol=native#text/plain
packages/libsee/src/libseewrap.c svneol=native#text/plain
packages/libxml/Makefile svneol=native#text/plain
packages/libxml/Makefile.fpc svneol=native#text/plain
packages/libxml/Makefile.fpc.fpcmake svneol=native#text/plain
packages/libxml/examples/Makefile svneol=native#text/plain
packages/libxml/examples/Makefile.fpc svneol=native#text/plain
packages/libxml/examples/exutils.pas svneol=native#text/plain
packages/libxml/examples/io1.pas svneol=native#text/plain
packages/libxml/examples/io2.pas svneol=native#text/plain
packages/libxml/examples/reader1.pas svneol=native#text/plain
packages/libxml/examples/reader2.pas svneol=native#text/plain
packages/libxml/examples/test1.xml svneol=native#text/plain
packages/libxml/examples/test2.xml svneol=native#text/plain
packages/libxml/examples/tree1.pas svneol=native#text/plain
packages/libxml/examples/tree2.pas svneol=native#text/plain
packages/libxml/fpmake.pp svneol=native#text/plain
packages/libxml/src/HTMLparser.inc svneol=native#text/plain
packages/libxml/src/HTMLtree.inc svneol=native#text/plain
packages/libxml/src/SAX.inc svneol=native#text/plain
packages/libxml/src/SAX2.inc svneol=native#text/plain
packages/libxml/src/c14n.inc svneol=native#text/plain
packages/libxml/src/catalog.inc svneol=native#text/plain
packages/libxml/src/chvalid.inc svneol=native#text/plain
packages/libxml/src/debugXML.inc svneol=native#text/plain
packages/libxml/src/dict.inc svneol=native#text/plain
packages/libxml/src/encoding.inc svneol=native#text/plain
packages/libxml/src/entities.inc svneol=native#text/plain
packages/libxml/src/globals.inc svneol=native#text/plain
packages/libxml/src/hash.inc svneol=native#text/plain
packages/libxml/src/libxmlparser.inc svneol=native#text/plain
packages/libxml/src/list.inc svneol=native#text/plain
packages/libxml/src/nanoftp.inc svneol=native#text/plain
packages/libxml/src/nanohttp.inc svneol=native#text/plain
packages/libxml/src/parserInternals.inc svneol=native#text/plain
packages/libxml/src/pattern.inc svneol=native#text/plain
packages/libxml/src/relaxng.inc svneol=native#text/plain
packages/libxml/src/schemasInternals.inc svneol=native#text/plain
packages/libxml/src/schematron.inc svneol=native#text/plain
packages/libxml/src/threads.inc svneol=native#text/plain
packages/libxml/src/tree.inc svneol=native#text/plain
packages/libxml/src/uri.inc svneol=native#text/plain
packages/libxml/src/valid.inc svneol=native#text/plain
packages/libxml/src/xinclude.inc svneol=native#text/plain
packages/libxml/src/xlink.inc svneol=native#text/plain
packages/libxml/src/xml2.inc svneol=native#text/plain
packages/libxml/src/xml2.pas svneol=native#text/plain
packages/libxml/src/xml2dyn.pas svneol=native#text/plain
packages/libxml/src/xmlIO.inc svneol=native#text/plain
packages/libxml/src/xmlautomata.inc svneol=native#text/plain
packages/libxml/src/xmlerror.inc svneol=native#text/plain
packages/libxml/src/xmlmemory.inc svneol=native#text/plain
packages/libxml/src/xmlmodule.inc svneol=native#text/plain
packages/libxml/src/xmlreader.inc svneol=native#text/plain
packages/libxml/src/xmlregexp.inc svneol=native#text/plain
packages/libxml/src/xmlsave.inc svneol=native#text/plain
packages/libxml/src/xmlschemas.inc svneol=native#text/plain
packages/libxml/src/xmlschemastypes.inc svneol=native#text/plain
packages/libxml/src/xmlstring.inc svneol=native#text/plain
packages/libxml/src/xmlunicode.inc svneol=native#text/plain
packages/libxml/src/xmlversion.inc svneol=native#text/plain
packages/libxml/src/xmlwriter.inc svneol=native#text/plain
packages/libxml/src/xmlxsd.pas svneol=native#text/plain
packages/libxml/src/xmlxsdparser.pas svneol=native#text/plain
packages/libxml/src/xpath.inc svneol=native#text/plain
packages/libxml/src/xpathInternals.inc svneol=native#text/plain
packages/libxml/src/xpointer.inc svneol=native#text/plain
packages/lua/Makefile svneol=native#text/plain
packages/lua/Makefile.fpc svneol=native#text/plain
packages/lua/Makefile.fpc.fpcmake svneol=native#text/plain
packages/lua/fpmake.pp svneol=native#text/plain
packages/lua/src/lauxlib.pas svneol=native#text/plain
packages/lua/src/lua.pas svneol=native#text/plain
packages/lua/src/lualib.pas svneol=native#text/plain
packages/mad/Makefile svneol=native#text/plain
packages/mad/Makefile.fpc svneol=native#text/plain
packages/mad/Makefile.fpc.fpcmake svneol=native#text/plain
packages/mad/fpmake.pp svneol=native#text/plain
packages/mad/src/mad.pas svneol=native#text/plain
packages/matroska/Makefile svneol=native#text/plain
packages/matroska/Makefile.fpc svneol=native#text/plain
packages/matroska/Makefile.fpc.fpcmake svneol=native#text/plain
packages/matroska/fpmake.pp_disabled svneol=native#text/plain
packages/matroska/src/matroska.pas svneol=native#text/plain
packages/modplug/Makefile svneol=native#text/plain
packages/modplug/Makefile.fpc svneol=native#text/plain
packages/modplug/Makefile.fpc.fpcmake svneol=native#text/plain
packages/modplug/fpmake.pp svneol=native#text/plain
packages/modplug/src/modplug.pas svneol=native#text/plain
packages/mysql/Makefile svneol=native#text/plain
packages/mysql/Makefile.fpc svneol=native#text/plain
packages/mysql/Makefile.fpc.fpcmake svneol=native#text/plain
packages/mysql/README.txt svneol=native#text/plain
packages/mysql/examples/Makefile svneol=native#text/plain
packages/mysql/examples/Makefile.fpc svneol=native#text/plain
packages/mysql/examples/mysqls.c svneol=native#text/plain
packages/mysql/examples/mysqls.pp svneol=native#text/plain
packages/mysql/examples/testdb3.pp svneol=native#text/plain
packages/mysql/examples/testdb4.pp svneol=native#text/plain
packages/mysql/fpmake.pp svneol=native#text/plain
packages/mysql/scripts/mkdb svneol=native#text/plain
packages/mysql/scripts/rmdb svneol=native#text/plain
packages/mysql/src/my4_sys.pp svneol=native#text/plain
packages/mysql/src/mysql.inc svneol=native#text/plain
packages/mysql/src/mysql3.pp svneol=native#text/plain
packages/mysql/src/mysql3_com.pp svneol=native#text/plain
packages/mysql/src/mysql3_comdyn.pp svneol=native#text/plain
packages/mysql/src/mysql3_comtypes.inc svneol=native#text/plain
packages/mysql/src/mysql3_version.pp svneol=native#text/plain
packages/mysql/src/mysql3dyn.pp svneol=native#text/plain
packages/mysql/src/mysql3impl.inc svneol=native#text/plain
packages/mysql/src/mysql3types.inc svneol=native#text/plain
packages/mysql/src/mysql4.pp svneol=native#text/plain
packages/mysql/src/mysql40.pp svneol=native#text/plain
packages/mysql/src/mysql40dyn.pp svneol=native#text/plain
packages/mysql/src/mysql41.pp svneol=native#text/plain
packages/mysql/src/mysql41dyn.pp svneol=native#text/plain
packages/mysql/src/mysql4_com.pp svneol=native#text/plain
packages/mysql/src/mysql4_comdyn.pp svneol=native#text/plain
packages/mysql/src/mysql4_comtypes.inc svneol=native#text/plain
packages/mysql/src/mysql4_version.pp svneol=native#text/plain
packages/mysql/src/mysql4dyn.pp svneol=native#text/plain
packages/mysql/src/mysql4impl.inc svneol=native#text/plain
packages/mysql/src/mysql4types.inc svneol=native#text/plain
packages/mysql/src/mysql50.pp svneol=native#text/plain
packages/mysql/src/mysql50dyn.pp svneol=native#text/plain
packages/mysql/src/mysql51.pp svneol=native#text/plain
packages/mysql/src/mysql51dyn.pp svneol=native#text/plain
packages/mysql/src/mysql51emb.pp svneol=native#text/plain
packages/mysql/src/mysql55.pp svneol=native#text/plain
packages/mysql/src/mysql55dyn.pp svneol=native#text/plain
packages/ncurses/Makefile svneol=native#text/plain
packages/ncurses/Makefile.fpc svneol=native#text/plain
packages/ncurses/Makefile.fpc.fpcmake svneol=native#text/plain
packages/ncurses/examples/Makefile svneol=native#text/plain
packages/ncurses/examples/Makefile.fpc svneol=native#text/plain
packages/ncurses/examples/db_demo.pp svneol=native#text/plain
packages/ncurses/examples/edit_demo.pp svneol=native#text/plain
packages/ncurses/examples/firework.pp svneol=native#text/plain
packages/ncurses/examples/menu_demo.pp svneol=native#text/plain
packages/ncurses/examples/ocrt_demo.pp svneol=native#text/plain
packages/ncurses/examples/ru/messages.mo -text
packages/ncurses/examples/screen_demo.pp svneol=native#text/plain
packages/ncurses/examples/t1form.pp svneol=native#text/plain
packages/ncurses/examples/t1menu.pp svneol=native#text/plain
packages/ncurses/examples/t1panel.pp svneol=native#text/plain
packages/ncurses/examples/t2form.pp svneol=native#text/plain
packages/ncurses/examples/t2menu.pp svneol=native#text/plain
packages/ncurses/examples/t2panel.pp svneol=native#text/plain
packages/ncurses/examples/t3form.pp svneol=native#text/plain
packages/ncurses/examples/tbackground.pp svneol=native#text/plain
packages/ncurses/examples/tclock.pp svneol=native#text/plain
packages/ncurses/examples/testn.pp svneol=native#text/plain
packages/ncurses/examples/tevent.pp svneol=native#text/plain
packages/ncurses/examples/tmouse.pp svneol=native#text/plain
packages/ncurses/examples/tnlshello.pp svneol=native#text/plain
packages/ncurses/examples/tnlshello_ru_UTF8.pot svneol=native#text/plain
packages/ncurses/examples/tpad.pp svneol=native#text/plain
packages/ncurses/examples/twindow.pp svneol=native#text/plain
packages/ncurses/fpmake.pp svneol=native#text/plain
packages/ncurses/src/eti.inc svneol=native#text/plain
packages/ncurses/src/form.pp svneol=native#text/plain
packages/ncurses/src/menu.pp svneol=native#text/plain
packages/ncurses/src/ncrt.inc svneol=native#text/plain
packages/ncurses/src/ncrt.pp svneol=native#text/plain
packages/ncurses/src/ncurses.pp svneol=native#text/plain
packages/ncurses/src/ocrt.pp svneol=native#text/plain
packages/ncurses/src/panel.pp svneol=native#text/plain
packages/ncurses/src/pxpic.inc svneol=native#text/plain
packages/ncurses/src/pxpic.txt svneol=native#text/plain
packages/ncurses/tests/cotest.pp svneol=native#text/plain
packages/ncurses/tests/t1form.pp svneol=native#text/plain
packages/ncurses/tests/t1menu.pp svneol=native#text/plain
packages/ncurses/tests/t2form.pp svneol=native#text/plain
packages/ncurses/tests/t2menu.pp svneol=native#text/plain
packages/ncurses/tests/t3form.pp svneol=native#text/plain
packages/ncurses/tests/tbackground.pp svneol=native#text/plain
packages/ncurses/tests/tclock.pp svneol=native#text/plain
packages/ncurses/tests/tevent.pp svneol=native#text/plain
packages/ncurses/tests/tmouse.pp svneol=native#text/plain
packages/ncurses/tests/tnlshello.pp svneol=native#text/plain
packages/newt/Makefile svneol=native#text/plain
packages/newt/Makefile.fpc svneol=native#text/plain
packages/newt/Makefile.fpc.fpcmake svneol=native#text/plain
packages/newt/README.txt svneol=native#text/plain
packages/newt/examples/Makefile svneol=native#text/plain
packages/newt/examples/Makefile.fpc svneol=native#text/plain
packages/newt/examples/newt1.pas svneol=native#text/plain
packages/newt/examples/newt2.pas svneol=native#text/plain
packages/newt/examples/newt3.pas svneol=native#text/plain
packages/newt/fpmake.pp svneol=native#text/plain
packages/newt/src/newt.pp svneol=native#text/plain
packages/numlib/Makefile svneol=native#text/plain
packages/numlib/Makefile.fpc svneol=native#text/plain
packages/numlib/Makefile.fpc.fpcmake svneol=native#text/plain
packages/numlib/doc/inv.tex svneol=native#text/plain
packages/numlib/doc/iom.tex svneol=native#text/plain
packages/numlib/examples/Makefile svneol=native#text/plain
packages/numlib/examples/Makefile.fpc svneol=native#text/plain
packages/numlib/examples/invgenex.dat svneol=native#text/plain
packages/numlib/examples/invgenex.pas svneol=native#text/plain
packages/numlib/examples/invgpdex.dat svneol=native#text/plain
packages/numlib/examples/invgpdex.pas svneol=native#text/plain
packages/numlib/examples/invgsyex.dat svneol=native#text/plain
packages/numlib/examples/invgsyex.pas svneol=native#text/plain
packages/numlib/examples/iomremex.dat svneol=native#text/plain
packages/numlib/examples/iomremex.pas svneol=native#text/plain
packages/numlib/examples/iomrevex.dat svneol=native#text/plain
packages/numlib/examples/iomrevex.pas svneol=native#text/plain
packages/numlib/examples/iomrewrsex.pas svneol=native#text/plain
packages/numlib/examples/iomwrmex.dat svneol=native#text/plain
packages/numlib/examples/iomwrmex.pas svneol=native#text/plain
packages/numlib/examples/iomwrvex.pas svneol=native#text/plain
packages/numlib/fpmake.pp svneol=native#text/plain
packages/numlib/numlib.txt svneol=native#text/plain
packages/numlib/src/det.pas svneol=native#text/plain
packages/numlib/src/direct.inc svneol=native#text/plain
packages/numlib/src/dsl.pas svneol=native#text/plain
packages/numlib/src/eig.pas svneol=native#text/plain
packages/numlib/src/eigh1.pas svneol=native#text/plain
packages/numlib/src/eigh2.pas svneol=native#text/plain
packages/numlib/src/int.pas svneol=native#text/plain
packages/numlib/src/inv.pas svneol=native#text/plain
packages/numlib/src/iom.pas svneol=native#text/plain
packages/numlib/src/ipf.pas svneol=native#text/plain
packages/numlib/src/mdt.pas svneol=native#text/plain
packages/numlib/src/numlib.pas svneol=native#text/plain
packages/numlib/src/ode.pas svneol=native#text/plain
packages/numlib/src/omv.pas svneol=native#text/plain
packages/numlib/src/roo.pas svneol=native#text/plain
packages/numlib/src/sle.pas svneol=native#text/plain
packages/numlib/src/spe.pas svneol=native#text/plain
packages/numlib/src/spl.pas svneol=native#text/plain
packages/numlib/src/timer.pas svneol=native#text/plain
packages/numlib/src/tpnumlib.pas svneol=native#text/plain
packages/numlib/src/typ.pas svneol=native#text/plain
packages/numlib/tests/detgpbte.dat svneol=native#text/plain
packages/numlib/tests/detgpbte.pas svneol=native#text/plain
packages/numlib/tests/detgpdte.dat svneol=native#text/plain
packages/numlib/tests/detgpdte.pas svneol=native#text/plain
packages/numlib/tests/detgsyte.dat svneol=native#text/plain
packages/numlib/tests/detgsyte.pas svneol=native#text/plain
packages/numlib/tests/detgtrte.dat svneol=native#text/plain
packages/numlib/tests/detgtrte.pas svneol=native#text/plain
packages/numlib/tests/eigbs1te.dat svneol=native#text/plain
packages/numlib/tests/eigbs1te.pas svneol=native#text/plain
packages/numlib/tests/eigbs2te.dat svneol=native#text/plain
packages/numlib/tests/eigbs2te.pas svneol=native#text/plain
packages/numlib/tests/eigbs3te.dat svneol=native#text/plain
packages/numlib/tests/eigbs3te.pas svneol=native#text/plain
packages/numlib/tests/eigbs4te.dat svneol=native#text/plain
packages/numlib/tests/eigbs4te.pas svneol=native#text/plain
packages/numlib/tests/eigge1te.dat svneol=native#text/plain
packages/numlib/tests/eigge1te.pas svneol=native#text/plain
packages/numlib/tests/eigge3te.dat svneol=native#text/plain
packages/numlib/tests/eigge3te.pas svneol=native#text/plain
packages/numlib/tests/eiggg1te.dat svneol=native#text/plain
packages/numlib/tests/eiggg1te.pas svneol=native#text/plain
packages/numlib/tests/eiggg2te.dat svneol=native#text/plain
packages/numlib/tests/eiggg2te.pas svneol=native#text/plain
packages/numlib/tests/eiggg3te.dat svneol=native#text/plain
packages/numlib/tests/eiggg3te.pas svneol=native#text/plain
packages/numlib/tests/eiggg4te.dat svneol=native#text/plain
packages/numlib/tests/eiggg4te.pas svneol=native#text/plain
packages/numlib/tests/eiggs1te.dat svneol=native#text/plain
packages/numlib/tests/eiggs1te.pas svneol=native#text/plain
packages/numlib/tests/eiggs2te.dat svneol=native#text/plain
packages/numlib/tests/eiggs2te.pas svneol=native#text/plain
packages/numlib/tests/eiggs3te.dat svneol=native#text/plain
packages/numlib/tests/eiggs3te.pas svneol=native#text/plain
packages/numlib/tests/eiggs4te.dat svneol=native#text/plain
packages/numlib/tests/eiggs4te.pas svneol=native#text/plain
packages/numlib/tests/eigsv1te.dat svneol=native#text/plain
packages/numlib/tests/eigsv1te.pas svneol=native#text/plain
packages/numlib/tests/eigsv3te.dat svneol=native#text/plain
packages/numlib/tests/eigsv3te.pas svneol=native#text/plain
packages/numlib/tests/eigts1te.dat svneol=native#text/plain
packages/numlib/tests/eigts1te.pas svneol=native#text/plain
packages/numlib/tests/eigts2te.dat svneol=native#text/plain
packages/numlib/tests/eigts2te.pas svneol=native#text/plain
packages/numlib/tests/eigts3te.dat svneol=native#text/plain
packages/numlib/tests/eigts3te.pas svneol=native#text/plain
packages/numlib/tests/eigts4te.dat svneol=native#text/plain
packages/numlib/tests/eigts4te.pas svneol=native#text/plain
packages/numlib/tests/intge1te.pas svneol=native#text/plain
packages/numlib/tests/intge2te.pas svneol=native#text/plain
packages/numlib/tests/intge3te.pas svneol=native#text/plain
packages/numlib/tests/invgente.dat svneol=native#text/plain
packages/numlib/tests/invgente.pas svneol=native#text/plain
packages/numlib/tests/invgpdte.dat svneol=native#text/plain
packages/numlib/tests/invgpdte.pas svneol=native#text/plain
packages/numlib/tests/invgsyte.dat svneol=native#text/plain
packages/numlib/tests/invgsyte.pas svneol=native#text/plain
packages/numlib/tests/iomwrmte.pas svneol=native#text/plain
packages/numlib/tests/odeiv1te.dat svneol=native#text/plain
packages/numlib/tests/odeiv1te.pas svneol=native#text/plain
packages/numlib/tests/odeiv2te.dat svneol=native#text/plain
packages/numlib/tests/odeiv2te.pas svneol=native#text/plain
packages/numlib/tests/roof1rte.dat svneol=native#text/plain
packages/numlib/tests/roof1rte.pas svneol=native#text/plain
packages/numlib/tests/roofnrt1.pas svneol=native#text/plain
packages/numlib/tests/roofnrte.dat svneol=native#text/plain
packages/numlib/tests/roofnrte.pas svneol=native#text/plain
packages/numlib/tests/roopolte.dat svneol=native#text/plain
packages/numlib/tests/roopolte.pas svneol=native#text/plain
packages/numlib/tests/sledtrte.dat svneol=native#text/plain
packages/numlib/tests/sledtrte.pas svneol=native#text/plain
packages/numlib/tests/slegbalt.dat svneol=native#text/plain
packages/numlib/tests/slegbalt.pas svneol=native#text/plain
packages/numlib/tests/slegbate.dat svneol=native#text/plain
packages/numlib/tests/slegbate.pas svneol=native#text/plain
packages/numlib/tests/slegenlt.dat svneol=native#text/plain
packages/numlib/tests/slegenlt.pas svneol=native#text/plain
packages/numlib/tests/slegente.dat svneol=native#text/plain
packages/numlib/tests/slegente.pas svneol=native#text/plain
packages/numlib/tests/sleglslt.dat svneol=native#text/plain
packages/numlib/tests/sleglslt.pas svneol=native#text/plain
packages/numlib/tests/sleglste.dat svneol=native#text/plain
packages/numlib/tests/sleglste.pas svneol=native#text/plain
packages/numlib/tests/slegpblt.dat svneol=native#text/plain
packages/numlib/tests/slegpblt.pas svneol=native#text/plain
packages/numlib/tests/slegpbte.dat svneol=native#text/plain
packages/numlib/tests/slegpbte.pas svneol=native#text/plain
packages/numlib/tests/slegpdlt.dat svneol=native#text/plain
packages/numlib/tests/slegpdlt.pas svneol=native#text/plain
packages/numlib/tests/slegpdte.dat svneol=native#text/plain
packages/numlib/tests/slegpdte.pas svneol=native#text/plain
packages/numlib/tests/slegsylt.dat svneol=native#text/plain
packages/numlib/tests/slegsylt.pas svneol=native#text/plain
packages/numlib/tests/slegsyte.dat svneol=native#text/plain
packages/numlib/tests/slegsyte.pas svneol=native#text/plain
packages/numlib/tests/slegtrte.dat svneol=native#text/plain
packages/numlib/tests/slegtrte.pas svneol=native#text/plain
packages/numlib/tests/speachte.dat svneol=native#text/plain
packages/numlib/tests/spearcte.dat svneol=native#text/plain
packages/numlib/tests/spearste.dat svneol=native#text/plain
packages/numlib/tests/speashte.dat svneol=native#text/plain
packages/numlib/tests/speathte.dat svneol=native#text/plain
packages/numlib/tests/spebi0te.dat svneol=native#text/plain
packages/numlib/tests/spebi1te.dat svneol=native#text/plain
packages/numlib/tests/spebj0te.dat svneol=native#text/plain
packages/numlib/tests/spebj1te.dat svneol=native#text/plain
packages/numlib/tests/spebk0te.dat svneol=native#text/plain
packages/numlib/tests/spebk1te.dat svneol=native#text/plain
packages/numlib/tests/speby0te.dat svneol=native#text/plain
packages/numlib/tests/speby1te.dat svneol=native#text/plain
packages/numlib/tests/specohte.dat svneol=native#text/plain
packages/numlib/tests/speefcte.dat svneol=native#text/plain
packages/numlib/tests/speentte.dat svneol=native#text/plain
packages/numlib/tests/speentte.pas svneol=native#text/plain
packages/numlib/tests/speerfte.dat svneol=native#text/plain
packages/numlib/tests/spegamte.dat svneol=native#text/plain
packages/numlib/tests/spege1te.pas svneol=native#text/plain
packages/numlib/tests/spemaxte.dat svneol=native#text/plain
packages/numlib/tests/spemaxte.pas svneol=native#text/plain
packages/numlib/tests/spepolte.dat svneol=native#text/plain
packages/numlib/tests/spepolte.pas svneol=native#text/plain
packages/numlib/tests/spepowte.dat svneol=native#text/plain
packages/numlib/tests/spepowte.pas svneol=native#text/plain
packages/numlib/tests/spesgnte.dat svneol=native#text/plain
packages/numlib/tests/spesgnte.pas svneol=native#text/plain
packages/numlib/tests/spesihte.dat svneol=native#text/plain
packages/numlib/tests/spetahte.dat svneol=native#text/plain
packages/numlib/tests/test.bat svneol=native#text/plain
packages/numlib/tests/test.pas svneol=native#text/plain
packages/numlib/tests/timer.pas svneol=native#text/plain
packages/numlib/tests/turte.pas svneol=native#text/plain
packages/nvapi/Makefile svneol=native#text/plain
packages/nvapi/Makefile.fpc svneol=native#text/plain
packages/nvapi/Makefile.fpc.fpcmake svneol=native#text/plain
packages/nvapi/examples/nvapitest.pas svneol=native#text/pascal
packages/nvapi/fpmake.pp svneol=native#text/pascal
packages/nvapi/src/nvapi.pas svneol=native#text/pascal
packages/objcrtl/Makefile svneol=native#text/plain
packages/objcrtl/Makefile.fpc svneol=native#text/plain
packages/objcrtl/Makefile.fpc.fpcmake svneol=native#text/plain
packages/objcrtl/examples/objcrtltest.pas svneol=native#text/plain
packages/objcrtl/fpmake.pp svneol=native#text/plain
packages/objcrtl/src/objcrtl.pas svneol=native#text/plain
packages/objcrtl/src/objcrtl10.pas svneol=native#text/plain
packages/objcrtl/src/objcrtl20.pas svneol=native#text/plain
packages/objcrtl/src/objcrtliphoneos.pas svneol=native#text/plain
packages/objcrtl/src/objcrtlmacosx.pas svneol=native#text/plain
packages/objcrtl/src/objcrtlutils.pas svneol=native#text/plain
packages/odbc/Makefile svneol=native#text/plain
packages/odbc/Makefile.fpc svneol=native#text/plain
packages/odbc/Makefile.fpc.fpcmake svneol=native#text/plain
packages/odbc/README.txt svneol=native#text/plain
packages/odbc/examples/Makefile svneol=native#text/plain
packages/odbc/examples/Makefile.fpc svneol=native#text/plain
packages/odbc/examples/testodbc.mdb -text
packages/odbc/examples/testodbc.pp svneol=native#text/plain
packages/odbc/fpmake.pp svneol=native#text/plain
packages/odbc/src/odbcsql.inc svneol=native#text/plain
packages/odbc/src/odbcsql.pas svneol=native#text/plain
packages/odbc/src/odbcsqldyn.pas svneol=native#text/plain
packages/oggvorbis/Makefile svneol=native#text/plain
packages/oggvorbis/Makefile.fpc svneol=native#text/plain
packages/oggvorbis/Makefile.fpc.fpcmake svneol=native#text/plain
packages/oggvorbis/fpmake.pp svneol=native#text/plain
packages/oggvorbis/src/ogg.pas svneol=native#text/plain
packages/oggvorbis/src/vorbis.pas svneol=native#text/plain
packages/openal/Makefile svneol=native#text/plain
packages/openal/Makefile.fpc svneol=native#text/plain
packages/openal/Makefile.fpc.fpcmake svneol=native#text/plain
packages/openal/examples/Makefile svneol=native#text/plain
packages/openal/examples/Makefile.fpc svneol=native#text/plain
packages/openal/examples/captureplaybackopenal.pas svneol=native#text/plain
packages/openal/examples/madopenal.pas svneol=native#text/plain
packages/openal/examples/wavopenal.pas svneol=native#text/plain
packages/openal/fpmake.pp svneol=native#text/plain
packages/openal/src/alch.inc svneol=native#text/plain
packages/openal/src/alexth.inc svneol=native#text/plain
packages/openal/src/alh.inc svneol=native#text/plain
packages/openal/src/openal.pas svneol=native#text/plain
packages/opencl/Makefile svneol=native#text/plain
packages/opencl/Makefile.fpc svneol=native#text/plain
packages/opencl/Makefile.fpc.fpcmake svneol=native#text/plain
packages/opencl/examples/basicsample.pas svneol=native#text/pascal
packages/opencl/examples/clinfo.pp svneol=native#text/pascal
packages/opencl/fpmake.pp svneol=native#text/pascal
packages/opencl/readme.txt svneol=native#text/plain
packages/opencl/src/cl.pp svneol=native#text/pascal
packages/opencl/src/cl_gl.pp svneol=native#text/pascal
packages/opengl/Makefile svneol=native#text/plain
packages/opengl/Makefile.fpc svneol=native#text/plain
packages/opengl/Makefile.fpc.fpcmake svneol=native#text/plain
packages/opengl/examples/Makefile svneol=native#text/plain
packages/opengl/examples/Makefile.fpc svneol=native#text/plain
packages/opengl/examples/bounce.pp svneol=native#text/plain
packages/opengl/examples/freeglutdemo.pp svneol=native#text/plain
packages/opengl/examples/glutdemo.pp svneol=native#text/plain
packages/opengl/examples/glutdemova.pp svneol=native#text/plain
packages/opengl/examples/glxtest.pp svneol=native#text/plain
packages/opengl/examples/morph3d.pp svneol=native#text/plain
packages/opengl/examples/radblur.pp svneol=native#text/plain
packages/opengl/fpmake.pp svneol=native#text/plain
packages/opengl/glunits.txt svneol=native#text/plain
packages/opengl/readme svneol=native#text/plain
packages/opengl/src/freeglut.pp svneol=native#text/plain
packages/opengl/src/gl.pp svneol=native#text/plain
packages/opengl/src/glext.pp svneol=native#text/plain
packages/opengl/src/glu.pp svneol=native#text/plain
packages/opengl/src/glut.pp svneol=native#text/plain
packages/opengl/src/glx.pp svneol=native#text/plain
packages/opengl/src/tinygl.inc svneol=native#text/plain
packages/opengl/src/tinyglh.inc svneol=native#text/plain
packages/opengles/Makefile svneol=native#text/plain
packages/opengles/Makefile.fpc svneol=native#text/plain
packages/opengles/Makefile.fpc.fpcmake svneol=native#text/plain
packages/opengles/examples/Makefile svneol=native#text/plain
packages/opengles/examples/Makefile.fpc svneol=native#text/plain
packages/opengles/examples/es2example1.pas svneol=native#text/pascal
packages/opengles/examples/glutdemoes.pp svneol=native#text/plain
packages/opengles/fpmake.pp svneol=native#text/plain
packages/opengles/src/gles11.pp svneol=native#text/plain
packages/opengles/src/gles20.pas svneol=native#text/pascal
packages/openssl/Makefile svneol=native#text/plain
packages/openssl/Makefile.fpc svneol=native#text/plain
packages/openssl/Makefile.fpc.fpcmake svneol=native#text/plain
packages/openssl/examples/Makefile svneol=native#text/plain
packages/openssl/examples/test1.pas svneol=native#text/plain
packages/openssl/fpmake.pp svneol=native#text/plain
packages/openssl/src/openssl.pas svneol=native#text/plain
packages/oracle/Makefile svneol=native#text/plain
packages/oracle/Makefile.fpc svneol=native#text/plain
packages/oracle/Makefile.fpc.fpcmake svneol=native#text/plain
packages/oracle/README.txt svneol=native#text/plain
packages/oracle/examples/Makefile svneol=native#text/plain
packages/oracle/examples/Makefile.fpc svneol=native#text/plain
packages/oracle/examples/oraclew.pp svneol=native#text/plain
packages/oracle/examples/test01.pp svneol=native#text/plain
packages/oracle/fpmake.pp svneol=native#text/plain
packages/oracle/src/nzerror.inc svneol=native#text/plain
packages/oracle/src/nzt.inc svneol=native#text/plain
packages/oracle/src/oci.inc svneol=native#text/plain
packages/oracle/src/oci.pp svneol=native#text/plain
packages/oracle/src/oci1.inc svneol=native#text/plain
packages/oracle/src/ociap.inc svneol=native#text/plain
packages/oracle/src/ocidfn.inc svneol=native#text/plain
packages/oracle/src/ocidyn.pp svneol=native#text/plain
packages/oracle/src/oraoci.pp svneol=native#text/plain
packages/oracle/src/oratypes.pp svneol=native#text/plain
packages/oracle/src/orl.inc svneol=native#text/plain
packages/oracle/src/oro_implementation.inc svneol=native#text/plain
packages/oracle/src/oro_interface.inc svneol=native#text/plain
packages/oracle/src/ort.inc svneol=native#text/plain
packages/os2units/Makefile svneol=native#text/plain
packages/os2units/Makefile.fpc svneol=native#text/plain
packages/os2units/Makefile.fpc.fpcmake svneol=native#text/plain
packages/os2units/examples/Makefile svneol=native#text/plain
packages/os2units/examples/Makefile.fpc svneol=native#text/plain
packages/os2units/examples/clktest.pas svneol=native#text/plain
packages/os2units/examples/ftptest.pas svneol=native#text/plain
packages/os2units/examples/lvmtest.pas svneol=native#text/plain
packages/os2units/examples/mciapi1.pas svneol=native#text/plain
packages/os2units/examples/mciapi2.pas svneol=native#text/plain
packages/os2units/fpmake.pp svneol=native#text/plain
packages/os2units/readme.txt svneol=native#text/plain
packages/os2units/src/buildall.pas svneol=native#text/plain
packages/os2units/src/clkdll.pas svneol=native#text/plain
packages/os2units/src/dive.pas svneol=native#text/plain
packages/os2units/src/ftpapi.pas svneol=native#text/plain
packages/os2units/src/hwvideo.pas svneol=native#text/plain
packages/os2units/src/lvm.pas svneol=native#text/plain
packages/os2units/src/mci.pas svneol=native#text/plain
packages/os2units/src/mciapi.pas svneol=native#text/plain
packages/os2units/src/mcidrv.pas svneol=native#text/plain
packages/os2units/src/mmbase.pas svneol=native#text/plain
packages/os2units/src/mmio.pas svneol=native#text/plain
packages/os2units/src/som.pas svneol=native#text/plain
packages/os2units/src/sw.pas svneol=native#text/plain
packages/os2units/src/wpstk.pp svneol=native#text/plain
packages/palmunits/Makefile svneol=native#text/plain
packages/palmunits/Makefile.fpc svneol=native#text/plain
packages/palmunits/Makefile.fpc.fpcmake svneol=native#text/plain
packages/palmunits/fpmake.pp svneol=native#text/plain
packages/palmunits/src/aboutbox.pp svneol=native#text/plain
packages/palmunits/src/alarmmgr.pp svneol=native#text/plain
packages/palmunits/src/applaunchcmd.pp svneol=native#text/plain
packages/palmunits/src/attentionmgr.pp svneol=native#text/plain
packages/palmunits/src/bitmap.pp svneol=native#text/plain
packages/palmunits/src/category.pp svneol=native#text/plain
packages/palmunits/src/chars.pp svneol=native#text/plain
packages/palmunits/src/clipboard.pp svneol=native#text/plain
packages/palmunits/src/connectionmgr.pp svneol=native#text/plain
packages/palmunits/src/consolemgr.pp svneol=native#text/plain
packages/palmunits/src/control.pp svneol=native#text/plain
packages/palmunits/src/coretraps.pp svneol=native#text/plain
packages/palmunits/src/crc.pp svneol=native#text/plain
packages/palmunits/src/datamgr.pp svneol=native#text/plain
packages/palmunits/src/datetime.pp svneol=native#text/plain
packages/palmunits/src/day.pp svneol=native#text/plain
packages/palmunits/src/dlserver.pp svneol=native#text/plain
packages/palmunits/src/encrypt.pp svneol=native#text/plain
packages/palmunits/src/errorbase.pp svneol=native#text/plain
packages/palmunits/src/event_.pp svneol=native#text/plain
packages/palmunits/src/exglib.pp svneol=native#text/plain
packages/palmunits/src/exgmgr.pp svneol=native#text/plain
packages/palmunits/src/expansionmgr.pp svneol=native#text/plain
packages/palmunits/src/fatalalert.pp svneol=native#text/plain
packages/palmunits/src/featuremgr.pp svneol=native#text/plain
packages/palmunits/src/field.pp svneol=native#text/plain
packages/palmunits/src/filestream.pp svneol=native#text/plain
packages/palmunits/src/find_.pp svneol=native#text/plain
packages/palmunits/src/floatmgr.pp svneol=native#text/plain
packages/palmunits/src/font.pp svneol=native#text/plain
packages/palmunits/src/fontselect_.pp svneol=native#text/plain
packages/palmunits/src/form.pp svneol=native#text/plain
packages/palmunits/src/fslib.pp svneol=native#text/plain
packages/palmunits/src/graffiti.pp svneol=native#text/plain
packages/palmunits/src/graffitireference.pp svneol=native#text/plain
packages/palmunits/src/graffitishift.pp svneol=native#text/plain
packages/palmunits/src/hal.pp svneol=native#text/plain
packages/palmunits/src/helper.pp svneol=native#text/plain
packages/palmunits/src/helperserviceclass.pp svneol=native#text/plain
packages/palmunits/src/hwrmiscflags.pp svneol=native#text/plain
packages/palmunits/src/imcutils.pp svneol=native#text/plain
packages/palmunits/src/inetmgr.pp svneol=native#text/plain
packages/palmunits/src/inspoint.pp svneol=native#text/plain
packages/palmunits/src/intlmgr.pp svneol=native#text/plain
packages/palmunits/src/irlib.pp svneol=native#text/plain
packages/palmunits/src/keyboard.pp svneol=native#text/plain
packages/palmunits/src/keymgr.pp svneol=native#text/plain
packages/palmunits/src/launcher.pp svneol=native#text/plain
packages/palmunits/src/libtraps.pp svneol=native#text/plain
packages/palmunits/src/list.pp svneol=native#text/plain
packages/palmunits/src/localemgr.pp svneol=native#text/plain
packages/palmunits/src/localize.pp svneol=native#text/plain
packages/palmunits/src/lz77mgr.pp svneol=native#text/plain
packages/palmunits/src/m68khwr.pp svneol=native#text/plain
packages/palmunits/src/memorymgr.pp svneol=native#text/plain
packages/palmunits/src/menu_.pp svneol=native#text/plain
packages/palmunits/src/modemmgr.pp svneol=native#text/plain
packages/palmunits/src/netbitutils.pp svneol=native#text/plain
packages/palmunits/src/netmgr.pp svneol=native#text/plain
packages/palmunits/src/notifymgr.pp svneol=native#text/plain
packages/palmunits/src/overlaymgr.pp svneol=native#text/plain
packages/palmunits/src/palmcompatibility.pp svneol=native#text/plain
packages/palmunits/src/palmlocale.pp svneol=native#text/plain
packages/palmunits/src/palmos.pp svneol=native#text/plain
packages/palmunits/src/password.pp svneol=native#text/plain
packages/palmunits/src/pdiconst.pp svneol=native#text/plain
packages/palmunits/src/pdilib.pp svneol=native#text/plain
packages/palmunits/src/penmgr.pp svneol=native#text/plain
packages/palmunits/src/phonelookup.pp svneol=native#text/plain
packages/palmunits/src/preferences.pp svneol=native#text/plain
packages/palmunits/src/privaterecords.pp svneol=native#text/plain
packages/palmunits/src/progress.pp svneol=native#text/plain
packages/palmunits/src/rect.pp svneol=native#text/plain
packages/palmunits/src/scrollbar.pp svneol=native#text/plain
packages/palmunits/src/selday.pp svneol=native#text/plain
packages/palmunits/src/seltime.pp svneol=native#text/plain
packages/palmunits/src/seltimezone.pp svneol=native#text/plain
packages/palmunits/src/seriallinkmgr.pp svneol=native#text/plain
packages/palmunits/src/serialmgr.pp svneol=native#text/plain
packages/palmunits/src/serialmgrold.pp svneol=native#text/plain
packages/palmunits/src/slotdrvrlib.pp svneol=native#text/plain
packages/palmunits/src/smslib.pp svneol=native#text/plain
packages/palmunits/src/soundmgr.pp svneol=native#text/plain
packages/palmunits/src/stringmgr.pp svneol=native#text/plain
packages/palmunits/src/sysevent.pp svneol=native#text/plain
packages/palmunits/src/sysevtmgr.pp svneol=native#text/plain
packages/palmunits/src/systemmgr.pp svneol=native#text/plain
packages/palmunits/src/systemresources.pp svneol=native#text/plain
packages/palmunits/src/sysutil.pp svneol=native#text/plain
packages/palmunits/src/table.pp svneol=native#text/plain
packages/palmunits/src/telephonymgr.pp svneol=native#text/plain
packages/palmunits/src/telephonymgrtypes.pp svneol=native#text/plain
packages/palmunits/src/telephonymgrui.pp svneol=native#text/plain
packages/palmunits/src/textmgr.pp svneol=native#text/plain
packages/palmunits/src/textservicesmgr.pp svneol=native#text/plain
packages/palmunits/src/timemgr.pp svneol=native#text/plain
packages/palmunits/src/udamgr.pp svneol=native#text/plain
packages/palmunits/src/uicolor.pp svneol=native#text/plain
packages/palmunits/src/uicontrols.pp svneol=native#text/plain
packages/palmunits/src/uiresources.pp svneol=native#text/plain
packages/palmunits/src/vfsmgr.pp svneol=native#text/plain
packages/palmunits/src/window.pp svneol=native#text/plain
packages/pasjpeg/Makefile svneol=native#text/plain
packages/pasjpeg/Makefile.fpc svneol=native#text/plain
packages/pasjpeg/Makefile.fpc.fpcmake svneol=native#text/plain
packages/pasjpeg/examples/cderror.pas svneol=native#text/plain
packages/pasjpeg/examples/cdjpeg.pas svneol=native#text/plain
packages/pasjpeg/examples/cjpeg.pas svneol=native#text/plain
packages/pasjpeg/examples/cjpeg.res svneol=native#text/plain
packages/pasjpeg/examples/demo.pas svneol=native#text/plain
packages/pasjpeg/examples/demo.res svneol=native#text/plain
packages/pasjpeg/examples/djpeg.pas svneol=native#text/plain
packages/pasjpeg/examples/djpeg.res svneol=native#text/plain
packages/pasjpeg/examples/example.pas svneol=native#text/plain
packages/pasjpeg/examples/fcache.pas svneol=native#text/plain
packages/pasjpeg/examples/jpegtran.drc svneol=native#text/plain
packages/pasjpeg/examples/jpegtran.pas svneol=native#text/plain
packages/pasjpeg/examples/jpegtran.res svneol=native#text/plain
packages/pasjpeg/examples/qtable1.ijg svneol=native#text/plain
packages/pasjpeg/examples/rdbmp.pas svneol=native#text/plain
packages/pasjpeg/examples/rdcolmap.pas svneol=native#text/plain
packages/pasjpeg/examples/rdjpgcom.pas svneol=native#text/plain
packages/pasjpeg/examples/rdppm.pas svneol=native#text/plain
packages/pasjpeg/examples/rdswitch.pas svneol=native#text/plain
packages/pasjpeg/examples/rdtarga.pas svneol=native#text/plain
packages/pasjpeg/examples/script0.ijg svneol=native#text/plain
packages/pasjpeg/examples/script1.ijg svneol=native#text/plain
packages/pasjpeg/examples/script2.ijg svneol=native#text/plain
packages/pasjpeg/examples/test.pas svneol=native#text/plain
packages/pasjpeg/examples/test1.dfm svneol=native#text/plain
packages/pasjpeg/examples/test1.pas svneol=native#text/plain
packages/pasjpeg/examples/testproj.dpr svneol=native#text/plain
packages/pasjpeg/examples/testproj.res svneol=native#text/plain
packages/pasjpeg/examples/transupp.pas svneol=native#text/plain
packages/pasjpeg/examples/wrbmp.pas svneol=native#text/plain
packages/pasjpeg/examples/wrjpgcom.pas svneol=native#text/plain
packages/pasjpeg/examples/wrppm.pas svneol=native#text/plain
packages/pasjpeg/examples/wrtarga.pas svneol=native#text/plain
packages/pasjpeg/fpmake.pp svneol=native#text/plain
packages/pasjpeg/readme.txt svneol=native#text/plain
packages/pasjpeg/src/buildpasjpeg.pp svneol=native#text/plain
packages/pasjpeg/src/jcapimin.pas svneol=native#text/plain
packages/pasjpeg/src/jcapistd.pas svneol=native#text/plain
packages/pasjpeg/src/jccoefct.pas svneol=native#text/plain
packages/pasjpeg/src/jccolor.pas svneol=native#text/plain
packages/pasjpeg/src/jcdctmgr.pas svneol=native#text/plain
packages/pasjpeg/src/jchuff.pas svneol=native#text/plain
packages/pasjpeg/src/jcinit.pas svneol=native#text/plain
packages/pasjpeg/src/jcmainct.pas svneol=native#text/plain
packages/pasjpeg/src/jcmarker.pas svneol=native#text/plain
packages/pasjpeg/src/jcmaster.pas svneol=native#text/plain
packages/pasjpeg/src/jcomapi.pas svneol=native#text/plain
packages/pasjpeg/src/jconfig.inc svneol=native#text/plain
packages/pasjpeg/src/jconsts.pas svneol=native#text/plain
packages/pasjpeg/src/jcparam.pas svneol=native#text/plain
packages/pasjpeg/src/jcphuff.pas svneol=native#text/plain
packages/pasjpeg/src/jcprepct.pas svneol=native#text/plain
packages/pasjpeg/src/jcsample.pas svneol=native#text/plain
packages/pasjpeg/src/jctrans.pas svneol=native#text/plain
packages/pasjpeg/src/jdapimin.pas svneol=native#text/plain
packages/pasjpeg/src/jdapistd.pas svneol=native#text/plain
packages/pasjpeg/src/jdatadst.pas svneol=native#text/plain
packages/pasjpeg/src/jdatasrc.pas svneol=native#text/plain
packages/pasjpeg/src/jdcoefct.pas svneol=native#text/plain
packages/pasjpeg/src/jdcolor.pas svneol=native#text/plain
packages/pasjpeg/src/jdct.pas svneol=native#text/plain
packages/pasjpeg/src/jddctmgr.pas svneol=native#text/plain
packages/pasjpeg/src/jdeferr.pas svneol=native#text/plain
packages/pasjpeg/src/jdhuff.pas svneol=native#text/plain
packages/pasjpeg/src/jdinput.pas svneol=native#text/plain
packages/pasjpeg/src/jdmainct.pas svneol=native#text/plain
packages/pasjpeg/src/jdmarker.pas svneol=native#text/plain
packages/pasjpeg/src/jdmaster.pas svneol=native#text/plain
packages/pasjpeg/src/jdmerge.pas svneol=native#text/plain
packages/pasjpeg/src/jdphuff.pas svneol=native#text/plain
packages/pasjpeg/src/jdpostct.pas svneol=native#text/plain
packages/pasjpeg/src/jdsample.pas svneol=native#text/plain
packages/pasjpeg/src/jdtrans.pas svneol=native#text/plain
packages/pasjpeg/src/jerror.pas svneol=native#text/plain
packages/pasjpeg/src/jfdctflt.pas svneol=native#text/plain
packages/pasjpeg/src/jfdctfst.pas svneol=native#text/plain
packages/pasjpeg/src/jfdctint.pas svneol=native#text/plain
packages/pasjpeg/src/jidct2d.pas svneol=native#text/plain
packages/pasjpeg/src/jidctasm.pas svneol=native#text/plain
packages/pasjpeg/src/jidctflt.pas svneol=native#text/plain
packages/pasjpeg/src/jidctfst.pas svneol=native#text/plain
packages/pasjpeg/src/jidctint.pas svneol=native#text/plain
packages/pasjpeg/src/jidctred.pas svneol=native#text/plain
packages/pasjpeg/src/jinclude.pas svneol=native#text/plain
packages/pasjpeg/src/jmemdos.pas svneol=native#text/plain
packages/pasjpeg/src/jmemdosa.pas svneol=native#text/plain
packages/pasjpeg/src/jmemmgr.pas svneol=native#text/plain
packages/pasjpeg/src/jmemnobs.pas svneol=native#text/plain
packages/pasjpeg/src/jmemsys.pas svneol=native#text/plain
packages/pasjpeg/src/jmorecfg.pas svneol=native#text/plain
packages/pasjpeg/src/jpeglib.pas svneol=native#text/plain
packages/pasjpeg/src/jquant1.pas svneol=native#text/plain
packages/pasjpeg/src/jquant2.pas svneol=native#text/plain
packages/pasjpeg/src/jutils.pas svneol=native#text/plain
packages/pasjpeg/src/pasjpeg.pas svneol=native#text/plain
packages/paszlib/Makefile svneol=native#text/plain
packages/paszlib/Makefile.fpc svneol=native#text/plain
packages/paszlib/Makefile.fpc.fpcmake svneol=native#text/plain
packages/paszlib/examples/Makefile svneol=native#text/plain
packages/paszlib/examples/Makefile.fpc svneol=native#text/plain
packages/paszlib/examples/example.pas svneol=native#text/plain
packages/paszlib/examples/example2.pas svneol=native#text/plain
packages/paszlib/examples/extractodt.pas svneol=native#text/plain
packages/paszlib/examples/minigzip.pas svneol=native#text/plain
packages/paszlib/examples/miniunz.pas svneol=native#text/plain
packages/paszlib/examples/minizip.pas svneol=native#text/plain
packages/paszlib/fpmake.pp svneol=native#text/plain
packages/paszlib/readme.txt svneol=native#text/plain
packages/paszlib/src/adler.pas svneol=native#text/plain
packages/paszlib/src/gzio.pas svneol=native#text/plain
packages/paszlib/src/infblock.pas svneol=native#text/plain
packages/paszlib/src/infcodes.pas svneol=native#text/plain
packages/paszlib/src/inffast.pas svneol=native#text/plain
packages/paszlib/src/inftrees.pas svneol=native#text/plain
packages/paszlib/src/infutil.pas svneol=native#text/plain
packages/paszlib/src/paszlib.pas svneol=native#text/plain
packages/paszlib/src/trees.pas svneol=native#text/plain
packages/paszlib/src/unzip.pas svneol=native#text/plain
packages/paszlib/src/zbase.pas svneol=native#text/plain
packages/paszlib/src/zcompres.pas svneol=native#text/plain
packages/paszlib/src/zconf.inc svneol=native#text/plain
packages/paszlib/src/zdeflate.pas svneol=native#text/plain
packages/paszlib/src/zinflate.pas svneol=native#text/plain
packages/paszlib/src/zip.pas svneol=native#text/plain
packages/paszlib/src/zipper.pp svneol=native#text/plain
packages/paszlib/src/ziputils.pas svneol=native#text/plain
packages/paszlib/src/zstream.pp svneol=native#text/plain
packages/paszlib/src/zuncompr.pas svneol=native#text/plain
packages/paszlib/tests/tconend.pp svneol=native#text/plain
packages/paszlib/tests/tczipper.pp svneol=native#text/plain
packages/pcap/Makefile svneol=native#text/plain
packages/pcap/Makefile.fpc svneol=native#text/plain
packages/pcap/Makefile.fpc.fpcmake svneol=native#text/plain
packages/pcap/fpmake.pp svneol=native#text/plain
packages/pcap/src/pcap.pp svneol=native#text/plain
packages/postgres/Makefile svneol=native#text/plain
packages/postgres/Makefile.fpc svneol=native#text/plain
packages/postgres/Makefile.fpc.fpcmake svneol=native#text/plain
packages/postgres/README.txt svneol=native#text/plain
packages/postgres/examples/Makefile svneol=native#text/plain
packages/postgres/examples/Makefile.fpc svneol=native#text/plain
packages/postgres/examples/testpg1.pp svneol=native#text/plain
packages/postgres/examples/testpg2.pp svneol=native#text/plain
packages/postgres/fpmake.pp svneol=native#text/plain
packages/postgres/scripts/mkdb svneol=native#text/plain
packages/postgres/scripts/rmdb svneol=native#text/plain
packages/postgres/src/dllist.pp svneol=native#text/plain
packages/postgres/src/dllistdyn.pp svneol=native#text/plain
packages/postgres/src/dllisttypes.inc svneol=native#text/plain
packages/postgres/src/postgres.pp svneol=native#text/plain
packages/postgres/src/postgres3.pp svneol=native#text/plain
packages/postgres/src/postgres3dyn.pp svneol=native#text/plain
packages/postgres/src/postgres3types.inc svneol=native#text/plain
packages/proj4/Makefile svneol=native#text/plain
packages/proj4/Makefile.fpc svneol=native#text/plain
packages/proj4/Makefile.fpc.fpcmake svneol=native#text/plain
packages/proj4/fpmake.pp svneol=native#text/plain
packages/proj4/src/proj.pas svneol=native#text/plain
packages/ptc/Makefile svneol=native#text/plain
packages/ptc/Makefile.fpc svneol=native#text/plain
packages/ptc/Makefile.fpc.fpcmake svneol=native#text/plain
packages/ptc/docs/AUTHORS.txt svneol=native#text/plain
packages/ptc/docs/CHANGES.txt svneol=native#text/plain
packages/ptc/docs/INSTALL.txt svneol=native#text/plain
packages/ptc/docs/INTF-CHANGES-0.99.12.txt svneol=native#text/plain
packages/ptc/docs/INTF-CHANGES-FAQ-0.99.12.txt svneol=native#text/plain
packages/ptc/docs/INTRO.txt svneol=native#text/plain
packages/ptc/docs/README.txt svneol=native#text/plain
packages/ptc/docs/TODO.txt svneol=native#text/plain
packages/ptc/docs/lgpl.txt svneol=native#text/plain
packages/ptc/docs/modified_lgpl.txt svneol=native#text/plain
packages/ptc/examples/Makefile svneol=native#text/plain
packages/ptc/examples/Makefile.fpc svneol=native#text/plain
packages/ptc/examples/area.pp svneol=native#text/plain
packages/ptc/examples/buffer.pp svneol=native#text/plain
packages/ptc/examples/clear.pp svneol=native#text/plain
packages/ptc/examples/clip.pp svneol=native#text/plain
packages/ptc/examples/con_info.pp svneol=native#text/plain
packages/ptc/examples/console.pp svneol=native#text/plain
packages/ptc/examples/fire.pp svneol=native#text/plain
packages/ptc/examples/flower.pp svneol=native#text/plain
packages/ptc/examples/hicolor.pp svneol=native#text/plain
packages/ptc/examples/image.pp svneol=native#text/plain
packages/ptc/examples/image.tga -text
packages/ptc/examples/keyboard.pp svneol=native#text/plain
packages/ptc/examples/keyboard2.pp svneol=native#text/plain
packages/ptc/examples/land.pp svneol=native#text/plain
packages/ptc/examples/lights.pp svneol=native#text/plain
packages/ptc/examples/modes.pp svneol=native#text/plain
packages/ptc/examples/mojo.pp svneol=native#text/plain
packages/ptc/examples/mojo.raw -text svneol=unset#raw/binary
packages/ptc/examples/mouse.pp svneol=native#text/plain
packages/ptc/examples/palette.pp svneol=native#text/plain
packages/ptc/examples/pixel.pp svneol=native#text/plain
packages/ptc/examples/random.pp svneol=native#text/plain
packages/ptc/examples/save.pp svneol=native#text/plain
packages/ptc/examples/stretch.pp svneol=native#text/plain
packages/ptc/examples/stretch.tga -text
packages/ptc/examples/texwarp.pp svneol=native#text/plain
packages/ptc/examples/timer.pp svneol=native#text/plain
packages/ptc/examples/tunnel.pp svneol=native#text/plain
packages/ptc/examples/tunnel3d.pp svneol=native#text/plain
packages/ptc/examples/tunnel3d.raw -text svneol=unset#raw/binary
packages/ptc/fpmake.pp svneol=native#text/plain
packages/ptc/src/c_api/capi_area.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_aread.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_clear.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_cleard.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_clipper.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_clipperd.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_color.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_colord.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_console.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_consoled.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_copy.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_copyd.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_error.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_errord.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_except.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_exceptd.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_format.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_formatd.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_index.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_key.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_keyd.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_mode.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_moded.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_palette.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_paletted.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_surface.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_surfaced.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_timer.inc svneol=native#text/plain
packages/ptc/src/c_api/capi_timerd.inc svneol=native#text/plain
packages/ptc/src/core/aread.inc svneol=native#text/plain
packages/ptc/src/core/areai.inc svneol=native#text/plain
packages/ptc/src/core/baseconsoled.inc svneol=native#text/plain
packages/ptc/src/core/baseconsolei.inc svneol=native#text/plain
packages/ptc/src/core/basesurfaced.inc svneol=native#text/plain
packages/ptc/src/core/basesurfacei.inc svneol=native#text/plain
packages/ptc/src/core/cleard.inc svneol=native#text/plain
packages/ptc/src/core/cleari.inc svneol=native#text/plain
packages/ptc/src/core/clipperd.inc svneol=native#text/plain
packages/ptc/src/core/clipperi.inc svneol=native#text/plain
packages/ptc/src/core/colord.inc svneol=native#text/plain
packages/ptc/src/core/colori.inc svneol=native#text/plain
packages/ptc/src/core/consoled.inc svneol=native#text/plain
packages/ptc/src/core/consolei.inc svneol=native#text/plain
packages/ptc/src/core/copyd.inc svneol=native#text/plain
packages/ptc/src/core/copyi.inc svneol=native#text/plain
packages/ptc/src/core/coreimplementation.inc svneol=native#text/plain
packages/ptc/src/core/coreinterface.inc svneol=native#text/plain
packages/ptc/src/core/errord.inc svneol=native#text/plain
packages/ptc/src/core/errori.inc svneol=native#text/plain
packages/ptc/src/core/eventd.inc svneol=native#text/plain
packages/ptc/src/core/eventi.inc svneol=native#text/plain
packages/ptc/src/core/formatd.inc svneol=native#text/plain
packages/ptc/src/core/formati.inc svneol=native#text/plain
packages/ptc/src/core/keyeventd.inc svneol=native#text/plain
packages/ptc/src/core/keyeventi.inc svneol=native#text/plain
packages/ptc/src/core/log.inc svneol=native#text/plain
packages/ptc/src/core/moded.inc svneol=native#text/plain
packages/ptc/src/core/modei.inc svneol=native#text/plain
packages/ptc/src/core/mouseeventd.inc svneol=native#text/plain
packages/ptc/src/core/mouseeventi.inc svneol=native#text/plain
packages/ptc/src/core/paletted.inc svneol=native#text/plain
packages/ptc/src/core/palettei.inc svneol=native#text/plain
packages/ptc/src/core/surfaced.inc svneol=native#text/plain
packages/ptc/src/core/surfacei.inc svneol=native#text/plain
packages/ptc/src/core/timerd.inc svneol=native#text/plain
packages/ptc/src/core/timeri.inc svneol=native#text/plain
packages/ptc/src/dos/base/go32fix.pp svneol=native#text/plain
packages/ptc/src/dos/base/kbd.inc svneol=native#text/plain
packages/ptc/src/dos/base/kbdd.inc svneol=native#text/plain
packages/ptc/src/dos/base/mouse33h.pp svneol=native#text/plain
packages/ptc/src/dos/base/moused.inc svneol=native#text/plain
packages/ptc/src/dos/base/mousei.inc svneol=native#text/plain
packages/ptc/src/dos/cga/cga.pp svneol=native#text/plain
packages/ptc/src/dos/cga/cgaconsoled.inc svneol=native#text/plain
packages/ptc/src/dos/cga/cgaconsolei.inc svneol=native#text/plain
packages/ptc/src/dos/includes.inc svneol=native#text/plain
packages/ptc/src/dos/textfx2/textfx2.pp svneol=native#text/plain
packages/ptc/src/dos/textfx2/textfx2consoled.inc svneol=native#text/plain
packages/ptc/src/dos/textfx2/textfx2consolei.inc svneol=native#text/plain
packages/ptc/src/dos/timeunit/timeunit.pp svneol=native#text/plain
packages/ptc/src/dos/vesa/vesa.pp svneol=native#text/plain
packages/ptc/src/dos/vesa/vesaconsoled.inc svneol=native#text/plain
packages/ptc/src/dos/vesa/vesaconsolei.inc svneol=native#text/plain
packages/ptc/src/dos/vga/vga.pp svneol=native#text/plain
packages/ptc/src/dos/vga/vgaconsoled.inc svneol=native#text/plain
packages/ptc/src/dos/vga/vgaconsolei.inc svneol=native#text/plain
packages/ptc/src/ptc.pp svneol=native#text/plain
packages/ptc/src/ptcpas.cfg svneol=native#text/plain
packages/ptc/src/ptcwrapper/ptceventqueue.pp svneol=native#text/plain
packages/ptc/src/ptcwrapper/ptcwrapper.pp svneol=native#text/plain
packages/ptc/src/tinyptc/tinyptc.pp svneol=native#text/plain
packages/ptc/src/win32/base/cursor.inc svneol=native#text/plain
packages/ptc/src/win32/base/cursord.inc svneol=native#text/plain
packages/ptc/src/win32/base/cursormoded.inc svneol=native#text/plain
packages/ptc/src/win32/base/event.inc svneol=native#text/plain
packages/ptc/src/win32/base/eventd.inc svneol=native#text/plain
packages/ptc/src/win32/base/hook.inc svneol=native#text/plain
packages/ptc/src/win32/base/hookd.inc svneol=native#text/plain
packages/ptc/src/win32/base/kbd.inc svneol=native#text/plain
packages/ptc/src/win32/base/kbdd.inc svneol=native#text/plain
packages/ptc/src/win32/base/monitor.inc svneol=native#text/plain
packages/ptc/src/win32/base/monitord.inc svneol=native#text/plain
packages/ptc/src/win32/base/moused.inc svneol=native#text/plain
packages/ptc/src/win32/base/mousei.inc svneol=native#text/plain
packages/ptc/src/win32/base/ptcres.rc -text
packages/ptc/src/win32/base/ptcres.res -text
packages/ptc/src/win32/base/window.inc svneol=native#text/plain
packages/ptc/src/win32/base/windowd.inc svneol=native#text/plain
packages/ptc/src/win32/base/windows.ico -text
packages/ptc/src/win32/directx/check.inc svneol=native#text/plain
packages/ptc/src/win32/directx/directxconsoled.inc svneol=native#text/plain
packages/ptc/src/win32/directx/directxconsolei.inc svneol=native#text/plain
packages/ptc/src/win32/directx/display.inc svneol=native#text/plain
packages/ptc/src/win32/directx/displayd.inc svneol=native#text/plain
packages/ptc/src/win32/directx/hook.inc svneol=native#text/plain
packages/ptc/src/win32/directx/hookd.inc svneol=native#text/plain
packages/ptc/src/win32/directx/library.inc svneol=native#text/plain
packages/ptc/src/win32/directx/libraryd.inc svneol=native#text/plain
packages/ptc/src/win32/directx/p_ddraw.pp svneol=native#text/plain
packages/ptc/src/win32/directx/primary.inc svneol=native#text/plain
packages/ptc/src/win32/directx/primaryd.inc svneol=native#text/plain
packages/ptc/src/win32/directx/translate.inc svneol=native#text/plain
packages/ptc/src/win32/gdi/gdiconsoled.inc svneol=native#text/plain
packages/ptc/src/win32/gdi/gdiconsolei.inc svneol=native#text/plain
packages/ptc/src/win32/gdi/win32dibd.inc svneol=native#text/plain
packages/ptc/src/win32/gdi/win32dibi.inc svneol=native#text/plain
packages/ptc/src/wince/base/wincekeyboardd.inc svneol=native#text/plain
packages/ptc/src/wince/base/wincekeyboardi.inc svneol=native#text/plain
packages/ptc/src/wince/base/wincemoused.inc svneol=native#text/plain
packages/ptc/src/wince/base/wincemousei.inc svneol=native#text/plain
packages/ptc/src/wince/base/wincewindowd.inc svneol=native#text/plain
packages/ptc/src/wince/base/wincewindowi.inc svneol=native#text/plain
packages/ptc/src/wince/directx/ddraw.pas svneol=native#text/plain
packages/ptc/src/wince/gapi/p_gx.pp svneol=native#text/plain
packages/ptc/src/wince/gapi/wincegapiconsoled.inc svneol=native#text/plain
packages/ptc/src/wince/gapi/wincegapiconsolei.inc svneol=native#text/plain
packages/ptc/src/wince/gdi/wincebitmapinfod.inc svneol=native#text/plain
packages/ptc/src/wince/gdi/wincebitmapinfoi.inc svneol=native#text/plain
packages/ptc/src/wince/gdi/wincegdiconsoled.inc svneol=native#text/plain
packages/ptc/src/wince/gdi/wincegdiconsolei.inc svneol=native#text/plain
packages/ptc/src/wince/includes.inc svneol=native#text/plain
packages/ptc/src/x11/check.inc svneol=native#text/plain
packages/ptc/src/x11/extensions.inc svneol=native#text/plain
packages/ptc/src/x11/includes.inc svneol=native#text/plain
packages/ptc/src/x11/x11consoled.inc svneol=native#text/plain
packages/ptc/src/x11/x11consolei.inc svneol=native#text/plain
packages/ptc/src/x11/x11dga1displayd.inc svneol=native#text/plain
packages/ptc/src/x11/x11dga1displayi.inc svneol=native#text/plain
packages/ptc/src/x11/x11dga2displayd.inc svneol=native#text/plain
packages/ptc/src/x11/x11dga2displayi.inc svneol=native#text/plain
packages/ptc/src/x11/x11displayd.inc svneol=native#text/plain
packages/ptc/src/x11/x11displayi.inc svneol=native#text/plain
packages/ptc/src/x11/x11imaged.inc svneol=native#text/plain
packages/ptc/src/x11/x11imagei.inc svneol=native#text/plain
packages/ptc/src/x11/x11modesd.inc svneol=native#text/plain
packages/ptc/src/x11/x11modesi.inc svneol=native#text/plain
packages/ptc/src/x11/x11windowdisplayd.inc svneol=native#text/plain
packages/ptc/src/x11/x11windowdisplayi.inc svneol=native#text/plain
packages/ptc/src/x11/xunikey.inc svneol=native#text/plain
packages/ptc/tests/convtest.pp svneol=native#text/plain
packages/ptc/tests/endian.inc svneol=native#text/plain
packages/ptc/tests/view.pp svneol=native#text/plain
packages/pthreads/Makefile svneol=native#text/plain
packages/pthreads/Makefile.fpc svneol=native#text/plain
packages/pthreads/Makefile.fpc.fpcmake svneol=native#text/plain
packages/pthreads/fpmake.pp svneol=native#text/plain
packages/pthreads/src/pthraix.inc svneol=native#text/plain
packages/pthreads/src/pthrbeos.inc svneol=native#text/plain
packages/pthreads/src/pthrbsd.inc svneol=native#text/plain
packages/pthreads/src/pthreads.pp svneol=native#text/plain
packages/pthreads/src/pthrhaiku.inc svneol=native#text/plain
packages/pthreads/src/pthrlinux.inc svneol=native#text/plain
packages/pthreads/src/pthrsnos.inc svneol=native#text/plain
packages/pxlib/Makefile svneol=native#text/plain
packages/pxlib/Makefile.fpc svneol=native#text/plain
packages/pxlib/Makefile.fpc.fpcmake svneol=native#text/plain
packages/pxlib/examples/Makefile svneol=native#text/plain
packages/pxlib/examples/Makefile.fpc svneol=native#text/plain
packages/pxlib/examples/ppxview.pp svneol=native#text/plain
packages/pxlib/fpmake.pp svneol=native#text/plain
packages/pxlib/src/pxlib.pp svneol=native#text/plain
packages/regexpr/Makefile svneol=native#text/plain
packages/regexpr/Makefile.fpc svneol=native#text/plain
packages/regexpr/Makefile.fpc.fpcmake svneol=native#text/plain
packages/regexpr/examples/Makefile svneol=native#text/plain
packages/regexpr/examples/Makefile.fpc svneol=native#text/plain
packages/regexpr/examples/testreg1.pp svneol=native#text/plain
packages/regexpr/fpmake.pp svneol=native#text/plain
packages/regexpr/src/old/regexpr.pp svneol=native#text/plain
packages/regexpr/src/oldregexpr.pp svneol=native#text/pascal
packages/regexpr/src/regex.pp svneol=native#text/plain
packages/regexpr/src/regexpr.pas svneol=native#text/pascal
packages/rexx/Makefile svneol=native#text/plain
packages/rexx/Makefile.fpc svneol=native#text/plain
packages/rexx/Makefile.fpc.fpcmake svneol=native#text/plain
packages/rexx/examples/Makefile svneol=native#text/plain
packages/rexx/examples/Makefile.fpc svneol=native#text/plain
packages/rexx/examples/backward.fnc svneol=native#text/plain
packages/rexx/examples/callrexx.pas svneol=native#text/plain
packages/rexx/fpmake.pp svneol=native#text/plain
packages/rexx/readme.txt svneol=native#text/plain
packages/rexx/src/rexxsaa.pp svneol=native#text/plain
packages/sdl/LGPL svneol=native#text/plain
packages/sdl/LGPL.addon svneol=native#text/plain
packages/sdl/MPL-1.1 svneol=native#text/plain
packages/sdl/Makefile svneol=native#text/plain
packages/sdl/Makefile.fpc svneol=native#text/plain
packages/sdl/Makefile.fpc.fpcmake svneol=native#text/plain
packages/sdl/README.txt svneol=native#text/plain
packages/sdl/fpmake.pp svneol=native#text/plain
packages/sdl/src/jedi-sdl.inc svneol=native#text/plain
packages/sdl/src/libxmlparser.pas svneol=native#text/plain
packages/sdl/src/logger.pas svneol=native#text/plain
packages/sdl/src/powersdl.inc svneol=native#text/plain
packages/sdl/src/powersdl_gfx.inc svneol=native#text/plain
packages/sdl/src/powersdl_image.inc svneol=native#text/plain
packages/sdl/src/powersdl_mixer.inc svneol=native#text/plain
packages/sdl/src/powersdl_net.inc svneol=native#text/plain
packages/sdl/src/powersdl_smpeg.inc svneol=native#text/plain
packages/sdl/src/powersdl_ttf.inc svneol=native#text/plain
packages/sdl/src/sdl.pas svneol=native#text/plain
packages/sdl/src/sdl_gfx.pas svneol=native#text/plain
packages/sdl/src/sdl_image.pas svneol=native#text/plain
packages/sdl/src/sdl_mixer.pas svneol=native#text/plain
packages/sdl/src/sdl_mixer_nosmpeg.pas svneol=native#text/plain
packages/sdl/src/sdl_net.pas svneol=native#text/plain
packages/sdl/src/sdl_ttf.pas svneol=native#text/plain
packages/sdl/src/sdlutils.pas svneol=native#text/plain
packages/sdl/src/smpeg.pas svneol=native#text/plain
packages/sndfile/Makefile svneol=native#text/plain
packages/sndfile/Makefile.fpc svneol=native#text/plain
packages/sndfile/Makefile.fpc.fpcmake svneol=native#text/plain
packages/sndfile/README.txt svneol=native#text/plain
packages/sndfile/examples/sfplay.pp svneol=native#text/plain
packages/sndfile/fpmake_disabled.pp svneol=native#text/plain
packages/sndfile/scripts/testc.c svneol=native#text/plain
packages/sndfile/src/sndfile.pp svneol=native#text/plain
packages/sqlite/Makefile svneol=native#text/plain
packages/sqlite/Makefile.fpc svneol=native#text/plain
packages/sqlite/Makefile.fpc.fpcmake svneol=native#text/plain
packages/sqlite/fpmake.pp svneol=native#text/plain
packages/sqlite/src/sqlite.pp svneol=native#text/plain
packages/sqlite/src/sqlite3.inc svneol=native#text/plain
packages/sqlite/src/sqlite3.pp svneol=native#text/plain
packages/sqlite/src/sqlite3db.pas svneol=native#text/x-pascal
packages/sqlite/src/sqlite3dyn.pp svneol=native#text/plain
packages/sqlite/src/sqlitedb.pas svneol=native#text/plain
packages/sqlite/tests/test.pas svneol=native#text/plain
packages/sqlite/tests/testapiv3x.README svneol=native#text/plain
packages/sqlite/tests/testapiv3x.pp svneol=native#text/plain
packages/svgalib/Makefile svneol=native#text/plain
packages/svgalib/Makefile.fpc svneol=native#text/plain
packages/svgalib/Makefile.fpc.fpcmake svneol=native#text/plain
packages/svgalib/README.txt svneol=native#text/plain
packages/svgalib/examples/Makefile svneol=native#text/plain
packages/svgalib/examples/Makefile.fpc svneol=native#text/plain
packages/svgalib/examples/testvga.pp svneol=native#text/plain
packages/svgalib/examples/vgatest.pp svneol=native#text/plain
packages/svgalib/fpmake.pp svneol=native#text/plain
packages/svgalib/src/svgalib.pp svneol=native#text/plain
packages/svgalib/src/vgamouse.h svneol=native#text/plain
packages/svgalib/src/vgamouse.pp svneol=native#text/plain
packages/symbolic/Makefile svneol=native#text/plain
packages/symbolic/Makefile.fpc svneol=native#text/plain
packages/symbolic/Makefile.fpc.fpcmake svneol=native#text/plain
packages/symbolic/doc/optimization.txt svneol=native#text/plain
packages/symbolic/doc/symbolic.txt svneol=native#text/plain
packages/symbolic/examples/Makefile svneol=native#text/plain
packages/symbolic/examples/Makefile.fpc svneol=native#text/plain
packages/symbolic/examples/easyevalexample.pp svneol=native#text/plain
packages/symbolic/examples/evaltest.pas svneol=native#text/plain
packages/symbolic/examples/rpnthing.pas svneol=native#text/plain
packages/symbolic/fpmake.pp svneol=native#text/plain
packages/symbolic/src/exprstrs.inc svneol=native#text/plain
packages/symbolic/src/parsexpr.inc svneol=native#text/plain
packages/symbolic/src/rearrang.inc svneol=native#text/plain
packages/symbolic/src/symbexpr.inc svneol=native#text/plain
packages/symbolic/src/symbolic.pas svneol=native#text/plain
packages/symbolic/src/teval.inc svneol=native#text/plain
packages/syslog/Makefile svneol=native#text/plain
packages/syslog/Makefile.fpc svneol=native#text/plain
packages/syslog/Makefile.fpc.fpcmake svneol=native#text/plain
packages/syslog/examples/Makefile svneol=native#text/plain
packages/syslog/examples/Makefile.fpc svneol=native#text/plain
packages/syslog/examples/testlog.pp svneol=native#text/plain
packages/syslog/fpmake.pp svneol=native#text/plain
packages/syslog/src/systemlog.pp svneol=native#text/plain
packages/tcl/Makefile svneol=native#text/plain
packages/tcl/Makefile.fpc svneol=native#text/plain
packages/tcl/Makefile.fpc.fpcmake svneol=native#text/plain
packages/tcl/fpmake.pp svneol=native#text/plain
packages/tcl/src/tcl80.pp svneol=native#text/plain
packages/tcl/tests/tcl_demo.pp svneol=native#text/plain
packages/tcl/tests/test.tcl svneol=native#text/plain
packages/univint/Makefile svneol=native#text/plain
packages/univint/Makefile.fpc svneol=native#text/plain
packages/univint/Makefile.fpc.fpcmake svneol=native#text/plain
packages/univint/examples/Makefile svneol=native#text/plain
packages/univint/examples/Makefile.fpc svneol=native#text/plain
packages/univint/examples/controldemo.pas svneol=native#text/plain
packages/univint/fpmake.pp svneol=native#text/plain
packages/univint/src/ABActions.pas svneol=native#text/plain
packages/univint/src/ABAddressBook.pas svneol=native#text/plain
packages/univint/src/ABGlobals.pas svneol=native#text/plain
packages/univint/src/ABPeoplePicker.pas svneol=native#text/plain
packages/univint/src/ABTypedefs.pas svneol=native#text/plain
packages/univint/src/AEDataModel.pas svneol=native#text/plain
packages/univint/src/AEHelpers.pas svneol=native#text/plain
packages/univint/src/AEInteraction.pas svneol=native#text/plain
packages/univint/src/AEMach.pas svneol=native#text/plain
packages/univint/src/AEObjects.pas svneol=native#text/plain
packages/univint/src/AEPackObject.pas svneol=native#text/plain
packages/univint/src/AERegistry.pas svneol=native#text/plain
packages/univint/src/AEUserTermTypes.pas svneol=native#text/plain
packages/univint/src/AIFF.pas svneol=native#text/plain
packages/univint/src/ASDebugging.pas svneol=native#text/plain
packages/univint/src/ASRegistry.pas svneol=native#text/plain
packages/univint/src/ATSFont.pas svneol=native#text/plain
packages/univint/src/ATSLayoutTypes.pas svneol=native#text/plain
packages/univint/src/ATSTypes.pas svneol=native#text/plain
packages/univint/src/ATSUnicodeDirectAccess.pas svneol=native#text/plain
packages/univint/src/ATSUnicodeDrawing.pas svneol=native#text/plain
packages/univint/src/ATSUnicodeFlattening.pas svneol=native#text/plain
packages/univint/src/ATSUnicodeFonts.pas svneol=native#text/plain
packages/univint/src/ATSUnicodeGlyphs.pas svneol=native#text/plain
packages/univint/src/ATSUnicodeObjects.pas svneol=native#text/plain
packages/univint/src/ATSUnicodeTypes.pas svneol=native#text/plain
packages/univint/src/AUComponent.pas svneol=native#text/plain
packages/univint/src/AVLTree.pas svneol=native#text/plain
packages/univint/src/AXActionConstants.pas svneol=native#text/plain
packages/univint/src/AXAttributeConstants.pas svneol=native#text/plain
packages/univint/src/AXConstants.pas svneol=native#text/plain
packages/univint/src/AXErrors.pas svneol=native#text/plain
packages/univint/src/AXNotificationConstants.pas svneol=native#text/plain
packages/univint/src/AXRoleConstants.pas svneol=native#text/plain
packages/univint/src/AXTextAttributedString.pas svneol=native#text/plain
packages/univint/src/AXUIElement.pas svneol=native#text/plain
packages/univint/src/AXValue.pas svneol=native#text/plain
packages/univint/src/AXValueConstants.pas svneol=native#text/plain
packages/univint/src/Accessibility.pas svneol=native#text/plain
packages/univint/src/Aliases.pas svneol=native#text/plain
packages/univint/src/Appearance.pas svneol=native#text/plain
packages/univint/src/AppleDiskPartitions.pas svneol=native#text/plain
packages/univint/src/AppleEvents.pas svneol=native#text/plain
packages/univint/src/AppleHelp.pas svneol=native#text/plain
packages/univint/src/AppleScript.pas svneol=native#text/plain
packages/univint/src/AudioCodecs.pas svneol=native#text/plain
packages/univint/src/AudioComponents.pas svneol=native#text/plain
packages/univint/src/AudioHardware.pas svneol=native#text/plain
packages/univint/src/AudioOutputUnit.pas svneol=native#text/plain
packages/univint/src/AudioUnitCarbonViews.pas svneol=native#text/plain
packages/univint/src/AudioUnitParameters.pas svneol=native#text/plain
packages/univint/src/AudioUnitProperties.pas svneol=native#text/plain
packages/univint/src/AuthSession.pas svneol=native#text/plain
packages/univint/src/Authorization.pas svneol=native#text/plain
packages/univint/src/AuthorizationDB.pas svneol=native#text/plain
packages/univint/src/AuthorizationPlugin.pas svneol=native#text/plain
packages/univint/src/AuthorizationTags.pas svneol=native#text/plain
packages/univint/src/BackupCore.pas svneol=native#text/plain
packages/univint/src/CFArray.pas svneol=native#text/plain
packages/univint/src/CFAttributedString.pas svneol=native#text/plain
packages/univint/src/CFBag.pas svneol=native#text/plain
packages/univint/src/CFBase.pas svneol=native#text/plain
packages/univint/src/CFBinaryHeap.pas svneol=native#text/plain
packages/univint/src/CFBitVector.pas svneol=native#text/plain
packages/univint/src/CFBundle.pas svneol=native#text/plain
packages/univint/src/CFByteOrders.pas svneol=native#text/plain
packages/univint/src/CFCalendar.pas svneol=native#text/plain
packages/univint/src/CFCharacterSet.pas svneol=native#text/plain
packages/univint/src/CFData.pas svneol=native#text/plain
packages/univint/src/CFDate.pas svneol=native#text/plain
packages/univint/src/CFDateFormatter.pas svneol=native#text/plain
packages/univint/src/CFDictionary.pas svneol=native#text/plain
packages/univint/src/CFError.pas svneol=native#text/plain
packages/univint/src/CFFTPStream.pas svneol=native#text/plain
packages/univint/src/CFHTTPAuthentication.pas svneol=native#text/plain
packages/univint/src/CFHTTPMessage.pas svneol=native#text/plain
packages/univint/src/CFHTTPStream.pas svneol=native#text/plain
packages/univint/src/CFHost.pas svneol=native#text/plain
packages/univint/src/CFLocale.pas svneol=native#text/plain
packages/univint/src/CFMachPort.pas svneol=native#text/plain
packages/univint/src/CFMessagePort.pas svneol=native#text/plain
packages/univint/src/CFNetDiagnostics.pas svneol=native#text/plain
packages/univint/src/CFNetServices.pas svneol=native#text/plain
packages/univint/src/CFNetworkErrorss.pas svneol=native#text/plain
packages/univint/src/CFNotificationCenter.pas svneol=native#text/plain
packages/univint/src/CFNumber.pas svneol=native#text/plain
packages/univint/src/CFNumberFormatter.pas svneol=native#text/plain
packages/univint/src/CFPlugIn.pas svneol=native#text/plain
packages/univint/src/CFPlugInCOM.pas svneol=native#text/plain
packages/univint/src/CFPreferences.pas svneol=native#text/plain
packages/univint/src/CFPropertyList.pas svneol=native#text/plain
packages/univint/src/CFProxySupport.pas svneol=native#text/plain
packages/univint/src/CFRunLoop.pas svneol=native#text/plain
packages/univint/src/CFSet.pas svneol=native#text/plain
packages/univint/src/CFSocket.pas svneol=native#text/plain
packages/univint/src/CFSocketStream.pas svneol=native#text/plain
packages/univint/src/CFStream.pas svneol=native#text/plain
packages/univint/src/CFString.pas svneol=native#text/plain
packages/univint/src/CFStringEncodingExt.pas svneol=native#text/plain
packages/univint/src/CFStringTokenizer.pas svneol=native#text/plain
packages/univint/src/CFTimeZone.pas svneol=native#text/plain
packages/univint/src/CFTree.pas svneol=native#text/plain
packages/univint/src/CFURL.pas svneol=native#text/plain
packages/univint/src/CFURLAccess.pas svneol=native#text/plain
packages/univint/src/CFUUID.pas svneol=native#text/plain
packages/univint/src/CFUserNotification.pas svneol=native#text/plain
packages/univint/src/CFXMLNode.pas svneol=native#text/plain
packages/univint/src/CFXMLParser.pas svneol=native#text/plain
packages/univint/src/CGAffineTransforms.pas svneol=native#text/plain
packages/univint/src/CGBase.pas svneol=native#text/plain
packages/univint/src/CGBitmapContext.pas svneol=native#text/plain
packages/univint/src/CGColor.pas svneol=native#text/plain
packages/univint/src/CGColorSpace.pas svneol=native#text/plain
packages/univint/src/CGContext.pas svneol=native#text/plain
packages/univint/src/CGDataConsumer.pas svneol=native#text/plain
packages/univint/src/CGDataProvider.pas svneol=native#text/plain
packages/univint/src/CGDirectDisplay.pas svneol=native#text/plain
packages/univint/src/CGDirectPalette.pas svneol=native#text/plain
packages/univint/src/CGDisplayConfiguration.pas svneol=native#text/plain
packages/univint/src/CGDisplayFades.pas svneol=native#text/plain
packages/univint/src/CGErrors.pas svneol=native#text/plain
packages/univint/src/CGEvent.pas svneol=native#text/plain
packages/univint/src/CGEventSource.pas svneol=native#text/plain
packages/univint/src/CGEventTypes.pas svneol=native#text/plain
packages/univint/src/CGFont.pas svneol=native#text/plain
packages/univint/src/CGFunction.pas svneol=native#text/plain
packages/univint/src/CGGLContext.pas svneol=native#text/plain
packages/univint/src/CGGeometry.pas svneol=native#text/plain
packages/univint/src/CGGradient.pas svneol=native#text/plain
packages/univint/src/CGImage.pas svneol=native#text/plain
packages/univint/src/CGImageDestination.pas svneol=native#text/plain
packages/univint/src/CGImageProperties.pas svneol=native#text/plain
packages/univint/src/CGImageSource.pas svneol=native#text/plain
packages/univint/src/CGLCurrent.pas svneol=native#text/plain
packages/univint/src/CGLDevice.pas svneol=native#text/plain
packages/univint/src/CGLProfiler.pas svneol=native#text/plain
packages/univint/src/CGLProfilerFunctionEnums.pas svneol=native#text/plain
packages/univint/src/CGLRenderers.pas svneol=native#text/plain
packages/univint/src/CGLTypes.pas svneol=native#text/plain
packages/univint/src/CGLayer.pas svneol=native#text/plain
packages/univint/src/CGPDFArray.pas svneol=native#text/plain
packages/univint/src/CGPDFContentStream.pas svneol=native#text/plain
packages/univint/src/CGPDFContext.pas svneol=native#text/plain
packages/univint/src/CGPDFDictionary.pas svneol=native#text/plain
packages/univint/src/CGPDFDocument.pas svneol=native#text/plain
packages/univint/src/CGPDFObject.pas svneol=native#text/plain
packages/univint/src/CGPDFOperatorTable.pas svneol=native#text/plain
packages/univint/src/CGPDFPage.pas svneol=native#text/plain
packages/univint/src/CGPDFScanner.pas svneol=native#text/plain
packages/univint/src/CGPDFStream.pas svneol=native#text/plain
packages/univint/src/CGPDFString.pas svneol=native#text/plain
packages/univint/src/CGPSConverter.pas svneol=native#text/plain
packages/univint/src/CGPath.pas svneol=native#text/plain
packages/univint/src/CGPattern.pas svneol=native#text/plain
packages/univint/src/CGRemoteOperation.pas svneol=native#text/plain
packages/univint/src/CGSession.pas svneol=native#text/plain
packages/univint/src/CGShading.pas svneol=native#text/plain
packages/univint/src/CGWindow.pas svneol=native#text/plain
packages/univint/src/CGWindowLevels.pas svneol=native#text/plain
packages/univint/src/CMCalibrator.pas svneol=native#text/plain
packages/univint/src/CSIdentity.pas svneol=native#text/plain
packages/univint/src/CSIdentityAuthority.pas svneol=native#text/plain
packages/univint/src/CSIdentityQuery.pas svneol=native#text/plain
packages/univint/src/CTFont.pas svneol=native#text/plain
packages/univint/src/CTFontCollection.pas svneol=native#text/plain
packages/univint/src/CTFontDescriptor.pas svneol=native#text/plain
packages/univint/src/CTFontManager.pas svneol=native#text/plain
packages/univint/src/CTFontManagerErrors.pas svneol=native#text/plain
packages/univint/src/CTFontTraits.pas svneol=native#text/plain
packages/univint/src/CTFrame.pas svneol=native#text/plain
packages/univint/src/CTFramesetter.pas svneol=native#text/plain
packages/univint/src/CTGlyphInfo.pas svneol=native#text/plain
packages/univint/src/CTLine.pas svneol=native#text/plain
packages/univint/src/CTParagraphStyle.pas svneol=native#text/plain
packages/univint/src/CTRun.pas svneol=native#text/plain
packages/univint/src/CTStringAttributes.pas svneol=native#text/plain
packages/univint/src/CTTextTab.pas svneol=native#text/plain
packages/univint/src/CTTypesetter.pas svneol=native#text/plain
packages/univint/src/CVBase.pas svneol=native#text/plain
packages/univint/src/CVBuffer.pas svneol=native#text/plain
packages/univint/src/CVDisplayLink.pas svneol=native#text/plain
packages/univint/src/CVHostTime.pas svneol=native#text/plain
packages/univint/src/CVImageBuffer.pas svneol=native#text/plain
packages/univint/src/CVOpenGLBuffer.pas svneol=native#text/plain
packages/univint/src/CVOpenGLBufferPool.pas svneol=native#text/plain
packages/univint/src/CVOpenGLTexture.pas svneol=native#text/plain
packages/univint/src/CVOpenGLTextureCache.pas svneol=native#text/plain
packages/univint/src/CVPixelBuffer.pas svneol=native#text/plain
packages/univint/src/CVPixelBufferPool.pas svneol=native#text/plain
packages/univint/src/CVPixelFormatDescription.pas svneol=native#text/plain
packages/univint/src/CVReturns.pas svneol=native#text/plain
packages/univint/src/CarbonEvents.pas svneol=native#text/plain
packages/univint/src/CarbonEventsCore.pas svneol=native#text/plain
packages/univint/src/CodeFragments.pas svneol=native#text/plain
packages/univint/src/Collections.pas svneol=native#text/plain
packages/univint/src/ColorPicker.pas svneol=native#text/plain
packages/univint/src/ColorSyncCMM.pas svneol=native#text/plain
packages/univint/src/ColorSyncDeprecated.pas svneol=native#text/plain
packages/univint/src/ColorSyncDevice.pas svneol=native#text/plain
packages/univint/src/ColorSyncProfile.pas svneol=native#text/plain
packages/univint/src/ColorSyncTransform.pas svneol=native#text/plain
packages/univint/src/Components.pas svneol=native#text/plain
packages/univint/src/ConditionalMacros.pas svneol=native#text/plain
packages/univint/src/ControlDefinitions.pas svneol=native#text/plain
packages/univint/src/Controls.pas svneol=native#text/plain
packages/univint/src/CoreAudioTypes.pas svneol=native#text/plain
packages/univint/src/CoreFoundation.pas svneol=native#text/plain
packages/univint/src/CoreGraphics.pas svneol=native#text/plain
packages/univint/src/CoreText.pas svneol=native#text/plain
packages/univint/src/DADisk.pas svneol=native#text/plain
packages/univint/src/DASession.pas svneol=native#text/plain
packages/univint/src/DHCPClientPreferences.pas svneol=native#text/plain
packages/univint/src/DateTimeUtils.pas svneol=native#text/plain
packages/univint/src/Debugging.pas svneol=native#text/plain
packages/univint/src/Dialogs.pas svneol=native#text/plain
packages/univint/src/Dictionary.pas svneol=native#text/plain
packages/univint/src/DigitalHubRegistry.pas svneol=native#text/plain
packages/univint/src/Displays.pas svneol=native#text/plain
packages/univint/src/Drag.pas svneol=native#text/plain
packages/univint/src/DrawSprocket.pas svneol=native#text/plain
packages/univint/src/DriverServices.pas svneol=native#text/plain
packages/univint/src/DriverSynchronization.pas svneol=native#text/plain
packages/univint/src/Endian.pas svneol=native#text/plain
packages/univint/src/Events.pas svneol=native#text/plain
packages/univint/src/FSEvents.pas svneol=native#text/plain
packages/univint/src/FileTypesAndCreators.pas svneol=native#text/plain
packages/univint/src/Files.pas svneol=native#text/plain
packages/univint/src/Finder.pas svneol=native#text/plain
packages/univint/src/FinderRegistry.pas svneol=native#text/plain
packages/univint/src/FixMath.pas svneol=native#text/plain
packages/univint/src/Folders.pas svneol=native#text/plain
packages/univint/src/FontPanel.pas svneol=native#text/plain
packages/univint/src/FontSync.pas svneol=native#text/plain
packages/univint/src/Fonts.pas svneol=native#text/plain
packages/univint/src/GPCStrings.pas svneol=native#text/plain
packages/univint/src/GestaltEqu.pas svneol=native#text/plain
packages/univint/src/HFSVolumes.pas svneol=native#text/plain
packages/univint/src/HIAccessibility.pas svneol=native#text/plain
packages/univint/src/HIArchive.pas svneol=native#text/plain
packages/univint/src/HIButtonViews.pas svneol=native#text/plain
packages/univint/src/HIClockView.pas svneol=native#text/plain
packages/univint/src/HIComboBox.pas svneol=native#text/plain
packages/univint/src/HIContainerViews.pas svneol=native#text/plain
packages/univint/src/HIDataBrowser.pas svneol=native#text/plain
packages/univint/src/HIDisclosureViews.pas svneol=native#text/plain
packages/univint/src/HIGeometry.pas svneol=native#text/plain
packages/univint/src/HIImageViews.pas svneol=native#text/plain
packages/univint/src/HILittleArrows.pas svneol=native#text/plain
packages/univint/src/HIMenuView.pas svneol=native#text/plain
packages/univint/src/HIMovieView.pas svneol=native#text/plain
packages/univint/src/HIObject.pas svneol=native#text/plain
packages/univint/src/HIPopupButton.pas svneol=native#text/plain
packages/univint/src/HIProgressViews.pas svneol=native#text/plain
packages/univint/src/HIRelevanceBar.pas svneol=native#text/plain
packages/univint/src/HIScrollView.pas svneol=native#text/plain
packages/univint/src/HISearchField.pas svneol=native#text/plain
packages/univint/src/HISegmentedView.pas svneol=native#text/plain
packages/univint/src/HISeparator.pas svneol=native#text/plain
packages/univint/src/HIShape.pas svneol=native#text/plain
packages/univint/src/HISlider.pas svneol=native#text/plain
packages/univint/src/HITabbedView.pas svneol=native#text/plain
packages/univint/src/HITextLengthFilter.pas svneol=native#text/plain
packages/univint/src/HITextUtils.pas svneol=native#text/plain
packages/univint/src/HITextViews.pas svneol=native#text/plain
packages/univint/src/HITheme.pas svneol=native#text/plain
packages/univint/src/HIToolbar.pas svneol=native#text/plain
packages/univint/src/HIToolbox.pas svneol=native#text/plain
packages/univint/src/HIToolboxDebugging.pas svneol=native#text/plain
packages/univint/src/HIView.pas svneol=native#text/plain
packages/univint/src/HIWindowViews.pas svneol=native#text/plain
packages/univint/src/HTMLRendering.pas svneol=native#text/plain
packages/univint/src/HostTime.pas svneol=native#text/plain
packages/univint/src/IBCarbonRuntime.pas svneol=native#text/plain
packages/univint/src/ICAApplication.pas svneol=native#text/plain
packages/univint/src/ICACamera.pas svneol=native#text/plain
packages/univint/src/ICADevice.pas svneol=native#text/plain
packages/univint/src/IOKitReturn.pas svneol=native#text/plain
packages/univint/src/IOSurfaceAPI.pas svneol=native#text/plain
packages/univint/src/IconStorage.pas svneol=native#text/plain
packages/univint/src/Icons.pas svneol=native#text/plain
packages/univint/src/IconsCore.pas svneol=native#text/plain
packages/univint/src/ImageCodec.pas svneol=native#text/plain
packages/univint/src/ImageCompression.pas svneol=native#text/plain
packages/univint/src/InternetConfig.pas svneol=native#text/plain
packages/univint/src/IntlResources.pas svneol=native#text/plain
packages/univint/src/KeyEvents.pas svneol=native#text/plain
packages/univint/src/Keyboards.pas svneol=native#text/plain
packages/univint/src/KeychainCore.pas svneol=native#text/plain
packages/univint/src/KeychainHI.pas svneol=native#text/plain
packages/univint/src/LSInfo.pas svneol=native#text/plain
packages/univint/src/LSOpen.pas svneol=native#text/plain
packages/univint/src/LSQuarantine.pas svneol=native#text/plain
packages/univint/src/LSSharedFileList.pas svneol=native#text/plain
packages/univint/src/LanguageAnalysis.pas svneol=native#text/plain
packages/univint/src/Lists.pas svneol=native#text/plain
packages/univint/src/LowMem.pas svneol=native#text/plain
packages/univint/src/MDExternalDatastore.pas svneol=native#text/plain
packages/univint/src/MDImporter.pas svneol=native#text/plain
packages/univint/src/MDItem.pas svneol=native#text/plain
packages/univint/src/MDLineage.pas svneol=native#text/plain
packages/univint/src/MDQuery.pas svneol=native#text/plain
packages/univint/src/MDSchema.pas svneol=native#text/plain
packages/univint/src/MIDIDriver.pas svneol=native#text/plain
packages/univint/src/MIDIServices.pas svneol=native#text/plain
packages/univint/src/MIDISetup.pas svneol=native#text/plain
packages/univint/src/MIDIThruConnection.pas svneol=native#text/plain
packages/univint/src/MacApplication.pas svneol=native#text/plain
packages/univint/src/MacErrors.pas svneol=native#text/plain
packages/univint/src/MacHelp.pas svneol=native#text/plain
packages/univint/src/MacLocales.pas svneol=native#text/plain
packages/univint/src/MacMemory.pas svneol=native#text/plain
packages/univint/src/MacOS.pas svneol=native#text/plain
packages/univint/src/MacOSAll.pas svneol=native#text/plain
packages/univint/src/MacOSXPosix.pas svneol=native#text/plain
packages/univint/src/MacOpenGL.pas svneol=native#text/plain
packages/univint/src/MacTextEditor.pas svneol=native#text/plain
packages/univint/src/MacTypes.pas svneol=native#text/plain
packages/univint/src/MacWindows.pas svneol=native#text/plain
packages/univint/src/MachineExceptions.pas svneol=native#text/plain
packages/univint/src/Math64.pas svneol=native#text/plain
packages/univint/src/MediaHandlers.pas svneol=native#text/plain
packages/univint/src/Menus.pas svneol=native#text/plain
packages/univint/src/MixedMode.pas svneol=native#text/plain
packages/univint/src/Movies.pas svneol=native#text/plain
packages/univint/src/MoviesFormat.pas svneol=native#text/plain
packages/univint/src/MultiProcessingInfo.pas svneol=native#text/plain
packages/univint/src/Multiprocessing.pas svneol=native#text/plain
packages/univint/src/MusicDevice.pas svneol=native#text/plain
packages/univint/src/NSL.pas svneol=native#text/plain
packages/univint/src/NSLCore.pas svneol=native#text/plain
packages/univint/src/Navigation.pas svneol=native#text/plain
packages/univint/src/Notification.pas svneol=native#text/plain
packages/univint/src/NumberFormatting.pas svneol=native#text/plain
packages/univint/src/OSA.pas svneol=native#text/plain
packages/univint/src/OSAComp.pas svneol=native#text/plain
packages/univint/src/OSAGeneric.pas svneol=native#text/plain
packages/univint/src/OSUtils.pas svneol=native#text/plain
packages/univint/src/ObjCRuntime.pas svneol=native#text/plain
packages/univint/src/OpenTransport.pas svneol=native#text/plain
packages/univint/src/OpenTransportProtocol.pas svneol=native#text/plain
packages/univint/src/OpenTransportProviders.pas svneol=native#text/plain
packages/univint/src/PEFBinaryFormat.pas svneol=native#text/plain
packages/univint/src/PLStringFuncs.pas svneol=native#text/plain
packages/univint/src/PMApplication.pas svneol=native#text/plain
packages/univint/src/PMApplicationDeprecated.pas svneol=native#text/plain
packages/univint/src/PMCore.pas svneol=native#text/plain
packages/univint/src/PMCoreDeprecated.pas svneol=native#text/plain
packages/univint/src/PMDefinitions.pas svneol=native#text/plain
packages/univint/src/PMDefinitionsDeprecated.pas svneol=native#text/plain
packages/univint/src/PMErrors.pas svneol=native#text/plain
packages/univint/src/PMPrintAETypes.pas svneol=native#text/plain
packages/univint/src/PMPrintSettingsKeys.pas svneol=native#text/plain
packages/univint/src/PMPrintingDialogExtensions.pas svneol=native#text/plain
packages/univint/src/Palettes.pas svneol=native#text/plain
packages/univint/src/Pasteboard.pas svneol=native#text/plain
packages/univint/src/PictUtils.pas svneol=native#text/plain
packages/univint/src/Power.pas svneol=native#text/plain
packages/univint/src/Processes.pas svneol=native#text/plain
packages/univint/src/QDCMCommon.pas svneol=native#text/plain
packages/univint/src/QDOffscreen.pas svneol=native#text/plain
packages/univint/src/QDPictToCGContext.pas svneol=native#text/plain
packages/univint/src/QLBase.pas svneol=native#text/plain
packages/univint/src/QLGenerator.pas svneol=native#text/plain
packages/univint/src/QLThumbnailImage.pas svneol=native#text/plain
packages/univint/src/QTML.pas svneol=native#text/plain
packages/univint/src/QTSMovie.pas svneol=native#text/plain
packages/univint/src/QTStreamingComponents.pas svneol=native#text/plain
packages/univint/src/QuickTimeComponents.pas svneol=native#text/plain
packages/univint/src/QuickTimeErrors.pas svneol=native#text/plain
packages/univint/src/QuickTimeMusic.pas svneol=native#text/plain
packages/univint/src/QuickTimeStreaming.pas svneol=native#text/plain
packages/univint/src/QuickTimeVR.pas svneol=native#text/plain
packages/univint/src/QuickTimeVRFormat.pas svneol=native#text/plain
packages/univint/src/Quickdraw.pas svneol=native#text/plain
packages/univint/src/QuickdrawText.pas svneol=native#text/plain
packages/univint/src/QuickdrawTypes.pas svneol=native#text/plain
packages/univint/src/Resources.pas svneol=native#text/plain
packages/univint/src/SCDynamicStore.pas svneol=native#text/plain
packages/univint/src/SCDynamicStoreCopyDHCPInfos.pas svneol=native#text/plain
packages/univint/src/SCDynamicStoreCopySpecific.pas svneol=native#text/plain
packages/univint/src/SCDynamicStoreKey.pas svneol=native#text/plain
packages/univint/src/SCNetwork.pas svneol=native#text/plain
packages/univint/src/SCNetworkConfiguration.pas svneol=native#text/plain
packages/univint/src/SCNetworkConnection.pas svneol=native#text/plain
packages/univint/src/SCNetworkReachability.pas svneol=native#text/plain
packages/univint/src/SCPreferences.pas svneol=native#text/plain
packages/univint/src/SCPreferencesPath.pas svneol=native#text/plain
packages/univint/src/SCPreferencesSetSpecific.pas svneol=native#text/plain
packages/univint/src/SCSI.pas svneol=native#text/plain
packages/univint/src/SCSchemaDefinitions.pas svneol=native#text/plain
packages/univint/src/SFNTLayoutTypes.pas svneol=native#text/plain
packages/univint/src/SFNTTypes.pas svneol=native#text/plain
packages/univint/src/ScalerStreamTypes.pas svneol=native#text/plain
packages/univint/src/Scrap.pas svneol=native#text/plain
packages/univint/src/Script.pas svneol=native#text/plain
packages/univint/src/SecBase.pas svneol=native#text/plain
packages/univint/src/SecTrust.pas svneol=native#text/plain
packages/univint/src/Sound.pas svneol=native#text/plain
packages/univint/src/SpeechRecognition.pas svneol=native#text/plain
packages/univint/src/SpeechSynthesis.pas svneol=native#text/plain
packages/univint/src/StringCompare.pas svneol=native#text/plain
packages/univint/src/SystemConfiguration.pas svneol=native#text/plain
packages/univint/src/SystemSound.pas svneol=native#text/plain
packages/univint/src/TSMTE.pas svneol=native#text/plain
packages/univint/src/TextCommon.pas svneol=native#text/plain
packages/univint/src/TextEdit.pas svneol=native#text/plain
packages/univint/src/TextEncodingConverter.pas svneol=native#text/plain
packages/univint/src/TextEncodingPlugin.pas svneol=native#text/plain
packages/univint/src/TextInputSources.pas svneol=native#text/plain
packages/univint/src/TextServices.pas svneol=native#text/plain
packages/univint/src/TextUtils.pas svneol=native#text/plain
packages/univint/src/Threads.pas svneol=native#text/plain
packages/univint/src/Timer.pas svneol=native#text/plain
packages/univint/src/ToolUtils.pas svneol=native#text/plain
packages/univint/src/Translation.pas svneol=native#text/plain
packages/univint/src/TranslationExtensions.pas svneol=native#text/plain
packages/univint/src/TranslationServices.pas svneol=native#text/plain
packages/univint/src/TypeSelect.pas svneol=native#text/plain
packages/univint/src/URLAccess.pas svneol=native#text/plain
packages/univint/src/UTCUtils.pas svneol=native#text/plain
packages/univint/src/UTCoreTypes.pas svneol=native#text/plain
packages/univint/src/UTType.pas svneol=native#text/plain
packages/univint/src/UnicodeConverter.pas svneol=native#text/plain
packages/univint/src/UnicodeUtilities.pas svneol=native#text/plain
packages/univint/src/UniversalAccess.pas svneol=native#text/plain
packages/univint/src/Video.pas svneol=native#text/plain
packages/univint/src/WSMethodInvocation.pas svneol=native#text/plain
packages/univint/src/WSProtocolHandler.pas svneol=native#text/plain
packages/univint/src/WSTypes.pas svneol=native#text/plain
packages/univint/src/cblas.pas svneol=native#text/plain
packages/univint/src/certextensions.pas svneol=native#text/plain
packages/univint/src/cssmapple.pas svneol=native#text/plain
packages/univint/src/cssmconfig.pas svneol=native#text/plain
packages/univint/src/cssmerr.pas svneol=native#text/plain
packages/univint/src/cssmkrapi.pas svneol=native#text/plain
packages/univint/src/cssmtype.pas svneol=native#text/plain
packages/univint/src/fenv.pas svneol=native#text/plain
packages/univint/src/fp.pas svneol=native#text/plain
packages/univint/src/gliContexts.pas svneol=native#text/plain
packages/univint/src/gliDispatch.pas svneol=native#text/plain
packages/univint/src/gluContext.pas svneol=native#text/plain
packages/univint/src/kern_return.pas svneol=native#text/plain
packages/univint/src/macgl.pas svneol=native#text/plain
packages/univint/src/macglext.pas svneol=native#text/plain
packages/univint/src/macglu.pas svneol=native#text/plain
packages/univint/src/mach_error.pas svneol=native#text/plain
packages/univint/src/vBLAS.pas svneol=native#text/plain
packages/univint/src/vDSP.pas svneol=native#text/plain
packages/univint/src/x509defs.pas svneol=native#text/plain
packages/univint/src/xattr.pas svneol=native#text/plain
packages/unixutil/Makefile svneol=native#text/plain
packages/unixutil/Makefile.fpc svneol=native#text/plain
packages/unixutil/Makefile.fpc.fpcmake svneol=native#text/plain
packages/unixutil/fpmake.pp svneol=native#text/plain
packages/unixutil/src/unixutils.pp svneol=native#text/plain
packages/unzip/Makefile svneol=native#text/plain
packages/unzip/Makefile.fpc svneol=native#text/plain
packages/unzip/Makefile.fpc.fpcmake svneol=native#text/plain
packages/unzip/fpmake.pp svneol=native#text/plain
packages/unzip/src/unzip51g.pp svneol=native#text/plain
packages/unzip/src/unzipdll.pp svneol=native#text/plain
packages/unzip/src/ziptypes.pp svneol=native#text/plain
packages/users/Makefile svneol=native#text/plain
packages/users/Makefile.fpc svneol=native#text/plain
packages/users/Makefile.fpc.fpcmake svneol=native#text/plain
packages/users/examples/Makefile svneol=native#text/plain
packages/users/examples/Makefile.fpc svneol=native#text/plain
packages/users/examples/testpass.pp svneol=native#text/plain
packages/users/examples/testpass2.pp svneol=native#text/plain
packages/users/examples/testuser.pp svneol=native#text/plain
packages/users/fpmake.pp svneol=native#text/plain
packages/users/src/crypth.pp svneol=native#text/plain
packages/users/src/grp.pp svneol=native#text/plain
packages/users/src/pwd.pp svneol=native#text/plain
packages/users/src/shadow.pp svneol=native#text/plain
packages/users/src/users.pp svneol=native#text/plain
packages/utmp/Makefile svneol=native#text/plain
packages/utmp/Makefile.fpc svneol=native#text/plain
packages/utmp/Makefile.fpc.fpcmake svneol=native#text/plain
packages/utmp/examples/Makefile svneol=native#text/plain
packages/utmp/examples/Makefile.fpc svneol=native#text/plain
packages/utmp/examples/testutmp.pp svneol=native#text/plain
packages/utmp/fpmake.pp svneol=native#text/plain
packages/utmp/src/utmp.pp svneol=native#text/plain
packages/uuid/Makefile svneol=native#text/plain
packages/uuid/Makefile.fpc svneol=native#text/plain
packages/uuid/Makefile.fpc.fpcmake svneol=native#text/plain
packages/uuid/README.txt svneol=native#text/plain
packages/uuid/examples/Makefile svneol=native#text/plain
packages/uuid/examples/Makefile.fpc svneol=native#text/plain
packages/uuid/examples/testlibuid.pp svneol=native#text/plain
packages/uuid/examples/testuid.pp svneol=native#text/plain
packages/uuid/fpmake.pp svneol=native#text/plain
packages/uuid/src/libuuid.pp svneol=native#text/plain
packages/uuid/src/macuuid.pp svneol=native#text/plain
packages/winceunits/Makefile svneol=native#text/plain
packages/winceunits/Makefile.fpc svneol=native#text/plain
packages/winceunits/Makefile.fpc.fpcmake svneol=native#text/plain
packages/winceunits/fpmake.pp svneol=native#text/plain
packages/winceunits/src/aygshell.pp svneol=native#text/plain
packages/winceunits/src/bt_api.pp svneol=native#text/plain
packages/winceunits/src/bt_sdp.pp svneol=native#text/plain
packages/winceunits/src/bthapi.pp svneol=native#text/plain
packages/winceunits/src/bthutil.pp svneol=native#text/plain
packages/winceunits/src/buildwinceunits.pp svneol=native#text/plain
packages/winceunits/src/cesync.pp svneol=native#text/plain
packages/winceunits/src/commctrl.pp svneol=native#text/plain
packages/winceunits/src/commdlg.pp svneol=native#text/plain
packages/winceunits/src/connmgr.pp svneol=native#text/plain
packages/winceunits/src/cpl.pp svneol=native#text/plain
packages/winceunits/src/devload.pp svneol=native#text/plain
packages/winceunits/src/devmgmt.pp svneol=native#text/plain
packages/winceunits/src/extapi.pp svneol=native#text/plain
packages/winceunits/src/gpsapi.pp svneol=native#text/plain
packages/winceunits/src/gx.pp svneol=native#text/plain
packages/winceunits/src/htmlctrl.pp svneol=native#text/plain
packages/winceunits/src/imm.pp svneol=native#text/plain
packages/winceunits/src/iphlpapi.pp svneol=native#text/plain
packages/winceunits/src/keybd.pp svneol=native#text/plain
packages/winceunits/src/mmreg.pp svneol=native#text/plain
packages/winceunits/src/mmsystem.pp svneol=native#text/plain
packages/winceunits/src/msacm.pp svneol=native#text/plain
packages/winceunits/src/msgqueue.pp svneol=native#text/plain
packages/winceunits/src/nled.pp svneol=native#text/plain
packages/winceunits/src/notify.pp svneol=native#text/plain
packages/winceunits/src/oleauto.pp svneol=native#text/plain
packages/winceunits/src/phone.pp svneol=native#text/plain
packages/winceunits/src/pimstore.pp svneol=native#text/plain
packages/winceunits/src/pm.pp svneol=native#text/plain
packages/winceunits/src/pnp.pas svneol=native#text/plain
packages/winceunits/src/power.pp svneol=native#text/plain
packages/winceunits/src/projects.pp svneol=native#text/plain
packages/winceunits/src/rapi.pp svneol=native#text/plain
packages/winceunits/src/rapitypes.pp svneol=native#text/plain
packages/winceunits/src/ras.pp svneol=native#text/plain
packages/winceunits/src/raserror.pp svneol=native#text/plain
packages/winceunits/src/ril.pp svneol=native#text/plain
packages/winceunits/src/service.pp svneol=native#text/plain
packages/winceunits/src/shellapi.pp svneol=native#text/plain
packages/winceunits/src/simmgr.pp svneol=native#text/plain
packages/winceunits/src/sip.pp svneol=native#text/plain
packages/winceunits/src/sipapi.pp svneol=native#text/plain
packages/winceunits/src/sms.pp svneol=native#text/plain
packages/winceunits/src/storemgr.pas svneol=native#text/plain
packages/winceunits/src/tapi.pp svneol=native#text/plain
packages/winceunits/src/tlhelp32.pas svneol=native#text/pascal
packages/winceunits/src/todaycmn.pp svneol=native#text/plain
packages/winceunits/src/tsp.pp svneol=native#text/plain
packages/winceunits/src/wap.pp svneol=native#text/plain
packages/winceunits/src/windbase.pp svneol=native#text/plain
packages/winceunits/src/windbase_edb.inc svneol=native#text/plain
packages/winceunits/src/wininet.pp svneol=native#text/plain
packages/winceunits/src/winioctl.pp svneol=native#text/plain
packages/winceunits/src/ws2bth.pp svneol=native#text/plain
packages/winunits-base/Makefile svneol=native#text/plain
packages/winunits-base/Makefile.fpc svneol=native#text/plain
packages/winunits-base/Makefile.fpc.fpcmake svneol=native#text/plain
packages/winunits-base/fpmake.pp svneol=native#text/plain
packages/winunits-base/src/activex.pp svneol=native#text/plain
packages/winunits-base/src/buildwinutilsbase.pp svneol=native#text/plain
packages/winunits-base/src/comconst.pp svneol=native#text/plain
packages/winunits-base/src/commctrl.pp svneol=native#text/plain
packages/winunits-base/src/commdlg.pp svneol=native#text/plain
packages/winunits-base/src/comobj.pp svneol=native#text/plain
packages/winunits-base/src/comserv.pp svneol=native#text/plain
packages/winunits-base/src/dwmapi.pp svneol=native#text/plain
packages/winunits-base/src/eventsink.pp svneol=native#text/plain
packages/winunits-base/src/flatsb.pp svneol=native#text/plain
packages/winunits-base/src/htmlhelp.pp svneol=native#text/plain
packages/winunits-base/src/imagehlp.pp svneol=native#text/plain
packages/winunits-base/src/imm.pas svneol=native#text/plain
packages/winunits-base/src/imm_dyn.pas svneol=native#text/plain
packages/winunits-base/src/mmsystem.pp svneol=native#text/plain
packages/winunits-base/src/multimon.pp svneol=native#text/plain
packages/winunits-base/src/nb30.pp svneol=native#text/plain
packages/winunits-base/src/ole2.pp svneol=native#text/plain
packages/winunits-base/src/oleserver.pp svneol=native#text/plain
packages/winunits-base/src/richedit.pp svneol=native#text/plain
packages/winunits-base/src/shellapi.pp svneol=native#text/plain
packages/winunits-base/src/shfolder.pp svneol=native#text/plain
packages/winunits-base/src/shlobj.pp svneol=native#text/plain
packages/winunits-base/src/stdole2.pas svneol=native#text/plain
packages/winunits-base/src/tmschema.inc svneol=native#text/plain
packages/winunits-base/src/typelib.pas svneol=native#text/plain
packages/winunits-base/src/uxtheme.pp svneol=native#text/plain
packages/winunits-base/src/win9xwsmanager.pp svneol=native#text/pascal
packages/winunits-base/src/wininet.pp svneol=native#text/plain
packages/winunits-base/src/winspool.pp svneol=native#text/pascal
packages/winunits-base/src/winutils.pp svneol=native#text/pascal
packages/winunits-base/src/winver.pp svneol=native#text/plain
packages/winunits-base/tests/OOHelper.pp svneol=native#text/plain
packages/winunits-base/tests/OOTest.pp svneol=native#text/plain
packages/winunits-base/tests/hhex.pp svneol=native#text/pascal
packages/winunits-base/tests/hhex2.pp svneol=native#text/pascal
packages/winunits-base/tests/testcom1.pp svneol=native#text/plain
packages/winunits-base/tests/testcom2.pp svneol=native#text/plain
packages/winunits-base/tests/testver.pp svneol=native#text/plain
packages/winunits-jedi/Makefile svneol=native#text/plain
packages/winunits-jedi/Makefile.fpc svneol=native#text/plain
packages/winunits-jedi/Makefile.fpc.fpcmake svneol=native#text/plain
packages/winunits-jedi/fpmake.pp svneol=native#text/plain
packages/winunits-jedi/src/ModuleLoader.pas svneol=native#text/plain
packages/winunits-jedi/src/buildjwa.pp svneol=native#text/plain
packages/winunits-jedi/src/jedi.inc svneol=native#text/plain
packages/winunits-jedi/src/jediapilib.inc svneol=native#text/plain
packages/winunits-jedi/src/jwaaccctrl.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaaclapi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaaclui.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaactiveds.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaactivex.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaadsdb.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaadserr.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaadshlp.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaadsnms.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaadsprop.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaadssts.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaadstlb.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaadtgen.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaaf_irda.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaatalkwsh.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaauthif.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaauthz.pas svneol=native#text/plain
packages/winunits-jedi/src/jwabatclass.pas svneol=native#text/plain
packages/winunits-jedi/src/jwabits.pas svneol=native#text/plain
packages/winunits-jedi/src/jwabits1_5.pas svneol=native#text/plain
packages/winunits-jedi/src/jwabitscfg.pas svneol=native#text/plain
packages/winunits-jedi/src/jwabitsmsg.pas svneol=native#text/plain
packages/winunits-jedi/src/jwablberr.pas svneol=native#text/plain
packages/winunits-jedi/src/jwabluetoothapis.pas svneol=native#text/plain
packages/winunits-jedi/src/jwabthdef.pas svneol=native#text/plain
packages/winunits-jedi/src/jwabthsdpdef.pas svneol=native#text/plain
packages/winunits-jedi/src/jwabugcodes.pas svneol=native#text/plain
packages/winunits-jedi/src/jwacarderr.pas svneol=native#text/plain
packages/winunits-jedi/src/jwacderr.pas svneol=native#text/plain
packages/winunits-jedi/src/jwacmnquery.pas svneol=native#text/plain
packages/winunits-jedi/src/jwacolordlg.pas svneol=native#text/plain
packages/winunits-jedi/src/jwacpl.pas svneol=native#text/plain
packages/winunits-jedi/src/jwacplext.pas svneol=native#text/plain
packages/winunits-jedi/src/jwacryptuiapi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwadbt.pas svneol=native#text/plain
packages/winunits-jedi/src/jwadde.pas svneol=native#text/plain
packages/winunits-jedi/src/jwadhcpcsdk.pas svneol=native#text/plain
packages/winunits-jedi/src/jwadhcpsapi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwadhcpssdk.pas svneol=native#text/plain
packages/winunits-jedi/src/jwadlgs.pas svneol=native#text/plain
packages/winunits-jedi/src/jwadsadmin.pas svneol=native#text/plain
packages/winunits-jedi/src/jwadsclient.pas svneol=native#text/plain
packages/winunits-jedi/src/jwadsgetdc.pas svneol=native#text/plain
packages/winunits-jedi/src/jwadskquota.pas svneol=native#text/plain
packages/winunits-jedi/src/jwadsquery.pas svneol=native#text/plain
packages/winunits-jedi/src/jwadsrole.pas svneol=native#text/plain
packages/winunits-jedi/src/jwadssec.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaerrorrep.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaexcpt.pas svneol=native#text/plain
packages/winunits-jedi/src/jwafaxdev.pas svneol=native#text/plain
packages/winunits-jedi/src/jwafaxext.pas svneol=native#text/plain
packages/winunits-jedi/src/jwafaxmmc.pas svneol=native#text/plain
packages/winunits-jedi/src/jwafaxroute.pas svneol=native#text/plain
packages/winunits-jedi/src/jwagpedit.pas svneol=native#text/plain
packages/winunits-jedi/src/jwahherror.pas svneol=native#text/plain
packages/winunits-jedi/src/jwahtmlguid.pas svneol=native#text/plain
packages/winunits-jedi/src/jwahtmlhelp.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaiaccess.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaiadmext.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaicmpapi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaiiscnfg.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaimagehlp.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaimapi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaimapierror.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaime.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaioevent.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaipexport.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaiphlpapi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaipifcons.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaipinfoid.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaiprtrmib.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaiptypes.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaisguids.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaissper16.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalm.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmaccess.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmalert.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmapibuf.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmat.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmaudit.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmconfig.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmcons.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmdfs.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmerr.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmerrlog.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmjoin.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmmsg.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmremutl.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmrepl.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmserver.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmshare.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmsname.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmstats.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmsvc.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmuse.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmuseflg.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalmwksta.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaloadperf.pas svneol=native#text/plain
packages/winunits-jedi/src/jwalpmapi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwamciavi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwamprerror.pas svneol=native#text/plain
packages/winunits-jedi/src/jwamsi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwamsidefs.pas svneol=native#text/plain
packages/winunits-jedi/src/jwamsiquery.pas svneol=native#text/plain
packages/winunits-jedi/src/jwamstask.pas svneol=native#text/plain
packages/winunits-jedi/src/jwamstcpip.pas svneol=native#text/plain
packages/winunits-jedi/src/jwamswsock.pas svneol=native#text/plain
packages/winunits-jedi/src/jwanative.pas svneol=native#text/plain
packages/winunits-jedi/src/jwanb30.pas svneol=native#text/plain
packages/winunits-jedi/src/jwanetsh.pas svneol=native#text/plain
packages/winunits-jedi/src/jwanspapi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwantddpar.pas svneol=native#text/plain
packages/winunits-jedi/src/jwantdsapi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwantdsbcli.pas svneol=native#text/plain
packages/winunits-jedi/src/jwantdsbmsg.pas svneol=native#text/plain
packages/winunits-jedi/src/jwantldap.pas svneol=native#text/plain
packages/winunits-jedi/src/jwantquery.pas svneol=native#text/plain
packages/winunits-jedi/src/jwantsecapi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwantstatus.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaobjsel.pas svneol=native#text/plain
packages/winunits-jedi/src/jwapatchapi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwapatchwiz.pas svneol=native#text/plain
packages/winunits-jedi/src/jwapbt.pas svneol=native#text/plain
packages/winunits-jedi/src/jwapdh.pas svneol=native#text/plain
packages/winunits-jedi/src/jwapdhmsg.pas svneol=native#text/plain
packages/winunits-jedi/src/jwapowrprof.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaprofinfo.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaprotocol.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaprsht.pas svneol=native#text/plain
packages/winunits-jedi/src/jwapsapi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaqos.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaqosname.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaqospol.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaqossp.pas svneol=native#text/plain
packages/winunits-jedi/src/jwareason.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaregstr.pas svneol=native#text/plain
packages/winunits-jedi/src/jwarpc.pas svneol=native#text/plain
packages/winunits-jedi/src/jwarpcasync.pas svneol=native#text/plain
packages/winunits-jedi/src/jwarpcdce.pas svneol=native#text/plain
packages/winunits-jedi/src/jwarpcnsi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwarpcnterr.pas svneol=native#text/plain
packages/winunits-jedi/src/jwarpcssl.pas svneol=native#text/plain
packages/winunits-jedi/src/jwascesvc.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaschedule.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaschemadef.pas svneol=native#text/plain
packages/winunits-jedi/src/jwasddl.pas svneol=native#text/plain
packages/winunits-jedi/src/jwasecext.pas svneol=native#text/plain
packages/winunits-jedi/src/jwasecurity.pas svneol=native#text/plain
packages/winunits-jedi/src/jwasens.pas svneol=native#text/plain
packages/winunits-jedi/src/jwasensapi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwasensevts.pas svneol=native#text/plain
packages/winunits-jedi/src/jwasfc.pas svneol=native#text/plain
packages/winunits-jedi/src/jwashlguid.pas svneol=native#text/plain
packages/winunits-jedi/src/jwasisbkup.pas svneol=native#text/plain
packages/winunits-jedi/src/jwasnmp.pas svneol=native#text/plain
packages/winunits-jedi/src/jwasporder.pas svneol=native#text/plain
packages/winunits-jedi/src/jwasrrestoreptapi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwasspi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwasubauth.pas svneol=native#text/plain
packages/winunits-jedi/src/jwasvcguid.pas svneol=native#text/plain
packages/winunits-jedi/src/jwatlhelp32.pas svneol=native#text/plain
packages/winunits-jedi/src/jwatmschema.pas svneol=native#text/plain
packages/winunits-jedi/src/jwatraffic.pas svneol=native#text/plain
packages/winunits-jedi/src/jwauserenv.pas svneol=native#text/plain
packages/winunits-jedi/src/jwauxtheme.pas svneol=native#text/plain
packages/winunits-jedi/src/jwavista.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawbemcli.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinable.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinbase.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinber.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawincon.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawincpl.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawincred.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawincrypt.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawindllnames.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawindns.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawindows.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinefs.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinerror.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinfax.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawingdi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinioctl.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinldap.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinnetwk.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinnls.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinnt.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinperf.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinreg.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinresrc.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinsafer.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinsock.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinsock2.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinsta.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinsvc.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinternl.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawintype.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinuser.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinver.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawinwlx.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawmistr.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawownt16.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawownt32.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawpapi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawpapimsg.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawpcrsmsg.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawpftpmsg.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawppstmsg.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawpspihlp.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawptypes.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawpwizmsg.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaws2atm.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaws2bth.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaws2dnet.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaws2spi.pas svneol=native#text/plain
packages/winunits-jedi/src/jwaws2tcpip.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawshisotp.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawsipx.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawsnetbs.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawsnwlink.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawsrm.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawsvns.pas svneol=native#text/plain
packages/winunits-jedi/src/jwawtsapi32.pas svneol=native#text/plain
packages/winunits-jedi/src/jwazmouse.pas svneol=native#text/plain
packages/winunits-jedi/tests/tjwapsapi1.pp svneol=native#text/pascal
packages/x11/Makefile svneol=native#text/plain
packages/x11/Makefile.fpc svneol=native#text/plain
packages/x11/Makefile.fpc.fpcmake svneol=native#text/plain
packages/x11/fpmake.pp svneol=native#text/plain
packages/x11/src/cursorfont.pp svneol=native#text/plain
packages/x11/src/fontconfig.pas svneol=native#text/pascal
packages/x11/src/keysym.pp svneol=native#text/plain
packages/x11/src/randr.inc svneol=native#text/plain
packages/x11/src/x.pp svneol=native#text/plain
packages/x11/src/xatom.pp svneol=native#text/plain
packages/x11/src/xcms.pp svneol=native#text/plain
packages/x11/src/xf86dga.pp svneol=native#text/plain
packages/x11/src/xf86dga1.inc svneol=native#text/plain
packages/x11/src/xf86vmode.pp svneol=native#text/plain
packages/x11/src/xft.pas svneol=native#text/pascal
packages/x11/src/xi.pp svneol=native#text/plain
packages/x11/src/xinerama.pp svneol=native#text/plain
packages/x11/src/xkb.pp svneol=native#text/plain
packages/x11/src/xkblib.pp svneol=native#text/plain
packages/x11/src/xlib.pp svneol=native#text/plain
packages/x11/src/xrandr.pp svneol=native#text/plain
packages/x11/src/xrender.pp svneol=native#text/plain
packages/x11/src/xresource.pp svneol=native#text/plain
packages/x11/src/xshm.pp svneol=native#text/plain
packages/x11/src/xutil.pp svneol=native#text/plain
packages/x11/src/xv.pp svneol=native#text/plain
packages/x11/src/xvlib.pp svneol=native#text/plain
packages/xforms/Makefile svneol=native#text/plain
packages/xforms/Makefile.fpc svneol=native#text/plain
packages/xforms/Makefile.fpc.fpcmake svneol=native#text/plain
packages/xforms/README.txt svneol=native#text/plain
packages/xforms/USAGE svneol=native#text/plain
packages/xforms/examples/Makefile svneol=native#text/plain
packages/xforms/examples/Makefile.fpc svneol=native#text/plain
packages/xforms/examples/arrowbutton.pp svneol=native#text/plain
packages/xforms/examples/bm1.xbm svneol=native#text/plain
packages/xforms/examples/bm2.xbm svneol=native#text/plain
packages/xforms/examples/borderwidth.pp svneol=native#text/plain
packages/xforms/examples/boxtype.pp svneol=native#text/plain
packages/xforms/examples/browserall.pp svneol=native#text/plain
packages/xforms/examples/browserop.pp svneol=native#text/plain
packages/xforms/examples/buttonall.pp svneol=native#text/plain
packages/xforms/examples/butttypes.pp svneol=native#text/plain
packages/xforms/examples/canvas.pp svneol=native#text/plain
packages/xforms/examples/chartall.pp svneol=native#text/plain
packages/xforms/examples/chartstrip.pp svneol=native#text/plain
packages/xforms/examples/choice.pp svneol=native#text/plain
packages/xforms/examples/colbrowser.pp svneol=native#text/plain
packages/xforms/examples/colsel.pp svneol=native#text/plain
packages/xforms/examples/colsel1.pp svneol=native#text/plain
packages/xforms/examples/counter.pp svneol=native#text/plain
packages/xforms/examples/crab.xpm svneol=native#text/plain
packages/xforms/examples/crab45.xpm svneol=native#text/plain
packages/xforms/examples/cursor.pp svneol=native#text/plain
packages/xforms/examples/fbrowse.pp svneol=native#text/plain
packages/xforms/examples/fbrowse1.pp svneol=native#text/plain
packages/xforms/examples/fdial.pp svneol=native#text/plain
packages/xforms/examples/flclock.pp svneol=native#text/plain
packages/xforms/examples/fonts.pp svneol=native#text/plain
packages/xforms/examples/free1.pp svneol=native#text/plain
packages/xforms/examples/goodies.pp svneol=native#text/plain
packages/xforms/examples/group.pp svneol=native#text/plain
packages/xforms/examples/iconify.pp svneol=native#text/plain
packages/xforms/examples/inputall.pp svneol=native#text/plain
packages/xforms/examples/invslider.pp svneol=native#text/plain
packages/xforms/examples/lalign.pp svneol=native#text/plain
packages/xforms/examples/ldial.pp svneol=native#text/plain
packages/xforms/examples/ll.pp svneol=native#text/plain
packages/xforms/examples/longlabel.pp svneol=native#text/plain
packages/xforms/examples/menu.pp svneol=native#text/plain
packages/xforms/examples/minput.pp svneol=native#text/plain
packages/xforms/examples/multilabel.pp svneol=native#text/plain
packages/xforms/examples/ndial.pp svneol=native#text/plain
packages/xforms/examples/newbutton.pp svneol=native#text/plain
packages/xforms/examples/nomail.xbm svneol=native#text/plain
packages/xforms/examples/objinactive.pp svneol=native#text/plain
packages/xforms/examples/objpos.pp svneol=native#text/plain
packages/xforms/examples/objreturn.pp svneol=native#text/plain
packages/xforms/examples/porsche.xpm svneol=native#text/plain
packages/xforms/examples/positioner.pp svneol=native#text/plain
packages/xforms/examples/pup.pp svneol=native#text/plain
packages/xforms/examples/pushbutton.pp svneol=native#text/plain
packages/xforms/examples/pushme.pp svneol=native#text/plain
packages/xforms/examples/secretinput.pp svneol=native#text/plain
packages/xforms/examples/sliderall.pp svneol=native#text/plain
packages/xforms/examples/srs.xbm svneol=native#text/plain
packages/xforms/examples/touchbutton.pp svneol=native#text/plain
packages/xforms/examples/xyplotover.pp svneol=native#text/plain
packages/xforms/examples/yesno.pp svneol=native#text/plain
packages/xforms/fpmake.pp svneol=native#text/plain
packages/xforms/scripts/doc2p svneol=native#text/plain
packages/xforms/src/cursorfont.inc svneol=native#text/plain
packages/xforms/src/fd2pascal.pp svneol=native#text/plain
packages/xforms/src/xforms.pp svneol=native#text/plain
packages/zlib/Makefile svneol=native#text/plain
packages/zlib/Makefile.fpc svneol=native#text/plain
packages/zlib/Makefile.fpc.fpcmake svneol=native#text/plain
packages/zlib/fpmake.pp svneol=native#text/plain
packages/zlib/src/zlib.pp svneol=native#text/plain
packages/zorba/Makefile svneol=native#text/plain
packages/zorba/Makefile.fpc svneol=native#text/plain
packages/zorba/Makefile.fpc.fpcmake svneol=native#text/plain
packages/zorba/examples/simple/simple.lpi svneol=native#text/plain
packages/zorba/examples/simple/simple.lpr svneol=native#text/plain
packages/zorba/fpmake.pp svneol=native#text/plain
packages/zorba/src/xqc.pas svneol=native#text/plain
packages/zorba/src/xqc_error.inc svneol=native#text/plain
packages/zorba/src/xqc_static_context_consts.inc svneol=native#text/plain
packages/zorba/src/zorba.inc svneol=native#text/plain
packages/zorba/src/zorba.pas svneol=native#text/plain
packages/zorba/src/zorba_options.inc svneol=native#text/plain
packages/zorba/src/zorbadyn.pas svneol=native#text/plain
rtl/COPYING.FPC -text
rtl/COPYING.txt svneol=native#text/plain
rtl/Makefile svneol=native#text/plain
rtl/Makefile.fpc svneol=native#text/plain
rtl/README.txt svneol=native#text/plain
rtl/aix/Makefile svneol=native#text/plain
rtl/aix/Makefile.fpc svneol=native#text/plain
rtl/aix/clocale.inc svneol=native#text/plain
rtl/aix/dlaix.inc svneol=native#text/plain
rtl/aix/errno.inc svneol=native#text/plain
rtl/aix/errnostr.inc svneol=native#text/plain
rtl/aix/osdefs.inc svneol=native#text/plain
rtl/aix/osmacro.inc svneol=native#text/plain
rtl/aix/ostypes.inc svneol=native#text/plain
rtl/aix/pthread.inc svneol=native#text/plain
rtl/aix/ptypes.inc svneol=native#text/plain
rtl/aix/sighnd.inc svneol=native#text/plain
rtl/aix/sighndh.inc svneol=native#text/plain
rtl/aix/signal.inc svneol=native#text/plain
rtl/aix/suuid.inc svneol=native#text/plain
rtl/aix/sysos.inc svneol=native#text/plain
rtl/aix/sysosh.inc svneol=native#text/plain
rtl/aix/system.pp svneol=native#text/plain
rtl/aix/termio.pp svneol=native#text/plain
rtl/aix/termios.inc svneol=native#text/plain
rtl/aix/termiosproc.inc svneol=native#text/plain
rtl/aix/unxconst.inc svneol=native#text/plain
rtl/aix/unxfunc.inc svneol=native#text/plain
rtl/aix/unxsockh.inc svneol=native#text/plain
rtl/amiga/Makefile svneol=native#text/plain
rtl/amiga/Makefile.fpc svneol=native#text/plain
rtl/amiga/classes.pp svneol=native#text/plain
rtl/amiga/crt.pp svneol=native#text/plain
rtl/amiga/dos.pp svneol=native#text/plain
rtl/amiga/doslibd.inc svneol=native#text/plain
rtl/amiga/m68k/doslibf.inc svneol=native#text/plain
rtl/amiga/m68k/execd.inc svneol=native#text/plain
rtl/amiga/m68k/execf.inc svneol=native#text/plain
rtl/amiga/m68k/prt0.as svneol=native#text/plain
rtl/amiga/m68k/utild1.inc svneol=native#text/plain
rtl/amiga/m68k/utild2.inc svneol=native#text/plain
rtl/amiga/m68k/utilf.inc svneol=native#text/plain
rtl/amiga/powerpc/doslibf.inc svneol=native#text/plain
rtl/amiga/powerpc/execd.inc svneol=native#text/plain
rtl/amiga/powerpc/execf.inc svneol=native#text/plain
rtl/amiga/powerpc/prt0.as svneol=native#text/plain
rtl/amiga/powerpc/utild1.inc svneol=native#text/plain
rtl/amiga/powerpc/utild2.inc svneol=native#text/plain
rtl/amiga/powerpc/utilf.inc svneol=native#text/plain
rtl/amiga/printer.pp svneol=native#text/plain
rtl/amiga/sysdir.inc svneol=native#text/plain
rtl/amiga/sysfile.inc svneol=native#text/plain
rtl/amiga/sysheap.inc svneol=native#text/plain
rtl/amiga/sysos.inc svneol=native#text/plain
rtl/amiga/sysosh.inc svneol=native#text/plain
rtl/amiga/system.pp svneol=native#text/plain
rtl/amiga/sysutils.pp svneol=native#text/plain
rtl/amiga/timerd.inc svneol=native#text/plain
rtl/amiga/tthread.inc svneol=native#text/plain
rtl/amiga/varutils.pp svneol=native#text/plain
rtl/android/jvm/Makefile svneol=native#text/plain
rtl/android/jvm/Makefile.fpc svneol=native#text/plain
rtl/android/jvm/androidr14.inc svneol=native#text/plain
rtl/android/jvm/androidr14.pas svneol=native#text/plain
rtl/android/jvm/java_sys_android.inc svneol=native#text/plain
rtl/android/jvm/java_sysh_android.inc svneol=native#text/plain
rtl/android/jvm/rtl.cfg svneol=native#text/plain
rtl/arm/arm.inc svneol=native#text/plain
rtl/arm/armdefines.inc svneol=native#text/plain
rtl/arm/int64p.inc svneol=native#text/plain
rtl/arm/makefile.cpu svneol=native#text/plain
rtl/arm/math.inc svneol=native#text/plain
rtl/arm/mathu.inc svneol=native#text/plain
rtl/arm/mathuh.inc svneol=native#text/plain
rtl/arm/set.inc svneol=native#text/plain
rtl/arm/setjump.inc svneol=native#text/plain
rtl/arm/setjumph.inc svneol=native#text/plain
rtl/arm/strings.inc svneol=native#text/plain
rtl/arm/stringss.inc svneol=native#text/plain
rtl/arm/thumb2.inc svneol=native#text/plain
rtl/atari/os.inc svneol=native#text/plain
rtl/atari/prt0.as svneol=native#text/plain
rtl/atari/readme -text
rtl/atari/sysatari.pas svneol=native#text/plain
rtl/atari/system.pas svneol=native#text/plain
rtl/avr/avr.inc svneol=native#text/plain
rtl/avr/int64p.inc svneol=native#text/plain
rtl/avr/makefile.cpu svneol=native#text/plain
rtl/avr/math.inc svneol=native#text/plain
rtl/avr/set.inc svneol=native#text/plain
rtl/avr/setjump.inc svneol=native#text/plain
rtl/avr/setjumph.inc svneol=native#text/plain
rtl/beos/Makefile svneol=native#text/plain
rtl/beos/Makefile.fpc svneol=native#text/plain
rtl/beos/baseunix.pp svneol=native#text/plain
rtl/beos/bethreads.pp svneol=native#text/plain
rtl/beos/classes.pp svneol=native#text/plain
rtl/beos/errno.inc svneol=native#text/plain
rtl/beos/errnostr.inc svneol=native#text/plain
rtl/beos/i386/cprt0.as svneol=native#text/plain
rtl/beos/i386/dllprt.as svneol=native#text/plain
rtl/beos/i386/dllprt.cpp -text
rtl/beos/i386/func.as svneol=native#text/plain
rtl/beos/i386/prt0.as svneol=native#text/plain
rtl/beos/i386/sighnd.inc svneol=native#text/plain
rtl/beos/osdefs.inc svneol=native#text/plain
rtl/beos/osmacro.inc svneol=native#text/plain
rtl/beos/ossysc.inc svneol=native#text/plain
rtl/beos/ostypes.inc svneol=native#text/plain
rtl/beos/ptypes.inc svneol=native#text/plain
rtl/beos/settimeo.inc svneol=native#text/plain
rtl/beos/signal.inc svneol=native#text/plain
rtl/beos/suuid.inc svneol=native#text/plain
rtl/beos/syscall.inc svneol=native#text/plain
rtl/beos/syscallh.inc svneol=native#text/plain
rtl/beos/sysconst.inc svneol=native#text/plain
rtl/beos/sysheap.inc svneol=native#text/plain
rtl/beos/sysnr.inc svneol=native#text/plain
rtl/beos/sysos.inc svneol=native#text/plain
rtl/beos/sysosh.inc svneol=native#text/plain
rtl/beos/system.pp svneol=native#text/plain
rtl/beos/termio.pp svneol=native#text/plain
rtl/beos/termios.inc svneol=native#text/plain
rtl/beos/termiosproc.inc svneol=native#text/plain
rtl/beos/tthread.inc svneol=native#text/plain
rtl/beos/unixsock.inc svneol=native#text/plain
rtl/beos/unxconst.inc svneol=native#text/plain
rtl/beos/unxfunc.inc svneol=native#text/plain
rtl/beos/unxsockh.inc svneol=native#text/plain
rtl/bsd/bsd.pas -text svneol=unset#text/plain
rtl/bsd/bunxfunch.inc svneol=native#text/plain
rtl/bsd/bunxsysc.inc svneol=native#text/plain
rtl/bsd/clocale.inc svneol=native#text/plain
rtl/bsd/i386/syscall.inc svneol=native#text/plain
rtl/bsd/i386/syscallh.inc svneol=native#text/plain
rtl/bsd/ipcbsd.inc svneol=native#text/plain
rtl/bsd/osdefs.inc svneol=native#text/plain
rtl/bsd/osmacro.inc svneol=native#text/plain
rtl/bsd/osmain.inc svneol=native#text/plain
rtl/bsd/ossysc.inc svneol=native#text/plain
rtl/bsd/ostypes.inc svneol=native#text/plain
rtl/bsd/powerpc/syscall.inc svneol=native#text/plain
rtl/bsd/powerpc/syscallh.inc svneol=native#text/plain
rtl/bsd/readme.txt svneol=native#text/plain
rtl/bsd/suuid.inc svneol=native#text/plain
rtl/bsd/sysctl.pp svneol=native#text/plain
rtl/bsd/sysos.inc svneol=native#text/plain
rtl/bsd/sysosh.inc svneol=native#text/plain
rtl/bsd/system.pp svneol=native#text/plain
rtl/bsd/unxsysch.inc svneol=native#text/plain
rtl/bsd/x86_64/syscall.inc svneol=native#text/plain
rtl/bsd/x86_64/syscallh.inc svneol=native#text/plain
rtl/darwin/Makefile svneol=native#text/plain
rtl/darwin/Makefile.fpc svneol=native#text/plain
rtl/darwin/arm/sighnd.inc svneol=native#text/plain
rtl/darwin/console.pp svneol=native#text/plain
rtl/darwin/errno.inc svneol=native#text/plain
rtl/darwin/errnostr.inc svneol=native#text/plain
rtl/darwin/extres_multiarch.inc svneol=native#text/plain
rtl/darwin/i386/sig_cpu.inc svneol=native#text/plain
rtl/darwin/i386/sighnd.inc svneol=native#text/plain
rtl/darwin/pmutext.inc svneol=native#text/plain
rtl/darwin/powerpc/sig_cpu.inc svneol=native#text/plain
rtl/darwin/powerpc/sighnd.inc svneol=native#text/plain
rtl/darwin/powerpc64/sig_cpu.inc svneol=native#text/plain
rtl/darwin/powerpc64/sighnd.inc svneol=native#text/plain
rtl/darwin/ppcgen/ppchnd.inc svneol=native#text/plain
rtl/darwin/ppcgen/sig_ppc.inc svneol=native#text/plain
rtl/darwin/pthread.inc svneol=native#text/plain
rtl/darwin/ptypes.inc svneol=native#text/plain
rtl/darwin/signal.inc svneol=native#text/plain
rtl/darwin/sysctlh.inc svneol=native#text/plain
rtl/darwin/termio.pp svneol=native#text/plain
rtl/darwin/termios.inc svneol=native#text/plain
rtl/darwin/termiosproc.inc svneol=native#text/plain
rtl/darwin/unxconst.inc svneol=native#text/plain
rtl/darwin/unxfunc.inc svneol=native#text/plain
rtl/darwin/unxsockh.inc svneol=native#text/plain
rtl/darwin/x86/sig_x86.inc svneol=native#text/plain
rtl/darwin/x86/x86hnd.inc svneol=native#text/plain
rtl/darwin/x86_64/sig_cpu.inc svneol=native#text/plain
rtl/darwin/x86_64/sighnd.inc svneol=native#text/plain
rtl/embedded/Makefile svneol=native#text/plain
rtl/embedded/Makefile.fpc svneol=native#text/plain
rtl/embedded/arm/at91sam7x256.pp svneol=native#text/plain
rtl/embedded/arm/lm3fury.pp svneol=native#text/pascal
rtl/embedded/arm/lm3tempest.pp svneol=native#text/pascal
rtl/embedded/arm/lpc1768.pp svneol=native#text/pascal
rtl/embedded/arm/lpc21x4.pp svneol=native#text/plain
rtl/embedded/arm/sc32442b.pp svneol=native#text/pascal
rtl/embedded/arm/stm32f103.pp svneol=native#text/plain
rtl/embedded/avr/atmega128.pp svneol=native#text/plain
rtl/embedded/avr/start.inc svneol=native#text/plain
rtl/embedded/buildrtl.lpi svneol=native#text/plain
rtl/embedded/buildrtl.pp svneol=native#text/plain
rtl/embedded/check.inc svneol=native#text/plain
rtl/embedded/consoleio.pp svneol=native#text/pascal
rtl/embedded/empty.cfg svneol=native#text/plain
rtl/embedded/heapmgr.pp svneol=native#text/pascal
rtl/embedded/rtl.cfg svneol=native#text/plain
rtl/embedded/sysdir.inc svneol=native#text/plain
rtl/embedded/sysfile.inc svneol=native#text/plain
rtl/embedded/sysheap.inc svneol=native#text/plain
rtl/embedded/sysos.inc svneol=native#text/plain
rtl/embedded/sysosh.inc svneol=native#text/plain
rtl/embedded/system.pp svneol=native#text/plain
rtl/emx/Makefile svneol=native#text/plain
rtl/emx/Makefile.fpc svneol=native#text/plain
rtl/emx/crt.pas svneol=native#text/plain
rtl/emx/dos.pas svneol=native#text/plain
rtl/emx/emx.imp -text
rtl/emx/emx.pas svneol=native#text/plain
rtl/emx/emxwrap.imp -text
rtl/emx/ports.pas svneol=native#text/plain
rtl/emx/prt0.as svneol=native#text/plain
rtl/emx/prt1.as svneol=native#text/plain
rtl/emx/sysdir.inc svneol=native#text/plain
rtl/emx/sysemx.pas svneol=native#text/plain
rtl/emx/sysfile.inc svneol=native#text/plain
rtl/emx/sysheap.inc svneol=native#text/plain
rtl/emx/sysos.inc svneol=native#text/plain
rtl/emx/sysosh.inc svneol=native#text/plain
rtl/emx/system.pas svneol=native#text/plain
rtl/emx/systhrd.inc svneol=native#text/plain
rtl/emx/sysutils.pp svneol=native#text/plain
rtl/fpmake.inc svneol=native#text/plain
rtl/fpmake.pp svneol=native#text/plain
rtl/freebsd/Makefile svneol=native#text/plain
rtl/freebsd/Makefile.fpc svneol=native#text/plain
rtl/freebsd/bsdport.txt svneol=native#text/plain
rtl/freebsd/buildrtl.lpi svneol=native#text/plain
rtl/freebsd/buildrtl.pp svneol=native#text/plain
rtl/freebsd/console.pp svneol=native#text/plain
rtl/freebsd/errno.inc svneol=native#text/plain
rtl/freebsd/errnostr.inc svneol=native#text/plain
rtl/freebsd/freebsd.pas -text svneol=unset#text/plain
rtl/freebsd/i386/bsyscall.inc svneol=native#text/plain
rtl/freebsd/i386/cprt0.as svneol=native#text/plain
rtl/freebsd/i386/dllprt0.as svneol=native#text/plain
rtl/freebsd/i386/gprt0.as svneol=native#text/plain
rtl/freebsd/i386/identpatch.sh svneol=native#text/plain
rtl/freebsd/i386/prt0.as svneol=native#text/plain
rtl/freebsd/i386/si_crt.inc svneol=native#text/plain
rtl/freebsd/i386/si_prc.inc svneol=native#text/plain
rtl/freebsd/i386/sighnd.inc svneol=native#text/plain
rtl/freebsd/i386/x86.inc svneol=native#text/plain
rtl/freebsd/i386/x86h.inc svneol=native#text/plain
rtl/freebsd/pmutext.inc svneol=native#text/plain
rtl/freebsd/pthread.inc svneol=native#text/plain
rtl/freebsd/ptypes.inc svneol=native#text/plain
rtl/freebsd/si_crt.pp svneol=native#text/plain
rtl/freebsd/si_intf.inc svneol=native#text/plain
rtl/freebsd/signal.inc svneol=native#text/plain
rtl/freebsd/sysctlh.inc svneol=native#text/plain
rtl/freebsd/sysnr.inc svneol=native#text/plain
rtl/freebsd/termio.pp svneol=native#text/plain
rtl/freebsd/termios.inc svneol=native#text/plain
rtl/freebsd/termiosproc.inc svneol=native#text/plain
rtl/freebsd/ucontexth.inc svneol=native#text/plain
rtl/freebsd/unixsock.inc svneol=native#text/plain
rtl/freebsd/unxconst.inc svneol=native#text/plain
rtl/freebsd/unxfunc.inc svneol=native#text/plain
rtl/freebsd/unxsockh.inc svneol=native#text/plain
rtl/freebsd/unxsysc.inc svneol=native#text/plain
rtl/freebsd/x86_64/bsyscall.inc svneol=native#text/plain
rtl/freebsd/x86_64/cprt0.as svneol=native#text/plain
rtl/freebsd/x86_64/dllprt0.as svneol=native#text/plain
rtl/freebsd/x86_64/gprt0.as svneol=native#text/plain
rtl/freebsd/x86_64/prt0.as svneol=native#text/plain
rtl/freebsd/x86_64/si_c.inc svneol=native#text/plain
rtl/freebsd/x86_64/sighnd.inc svneol=native#text/plain
rtl/gba/Makefile svneol=native#text/plain
rtl/gba/Makefile.fpc svneol=native#text/plain
rtl/gba/classes.pp svneol=native#text/plain
rtl/gba/cprt0.as svneol=native#text/plain
rtl/gba/dos.pp svneol=native#text/plain
rtl/gba/gbabios.inc svneol=native#text/plain
rtl/gba/gbabiosh.inc svneol=native#text/plain
rtl/gba/libc.inc svneol=native#text/plain
rtl/gba/libch.inc svneol=native#text/plain
rtl/gba/prt0.as svneol=native#text/plain
rtl/gba/sysdir.inc svneol=native#text/plain
rtl/gba/sysfile.inc svneol=native#text/plain
rtl/gba/sysheap.inc svneol=native#text/plain
rtl/gba/sysos.inc svneol=native#text/plain
rtl/gba/sysosh.inc svneol=native#text/plain
rtl/gba/system.pp svneol=native#text/plain
rtl/gba/systhrd.inc svneol=native#text/plain
rtl/gba/sysutils.pp svneol=native#text/plain
rtl/gba/tthread.inc svneol=native#text/plain
rtl/gba/varutils.pp svneol=native#text/plain
rtl/go32v2/Makefile svneol=native#text/plain
rtl/go32v2/Makefile.fpc svneol=native#text/plain
rtl/go32v2/classes.pp svneol=native#text/plain
rtl/go32v2/crt.pp svneol=native#text/plain
rtl/go32v2/dos.pp svneol=native#text/plain
rtl/go32v2/dpmi.inc svneol=native#text/plain
rtl/go32v2/dpmiexcp.pp svneol=native#text/plain
rtl/go32v2/dxeload.pp svneol=native#text/plain
rtl/go32v2/dxetype.pp svneol=native#text/plain
rtl/go32v2/emu387.pp svneol=native#text/plain
rtl/go32v2/exceptn.as svneol=native#text/plain
rtl/go32v2/exit16.ah -text
rtl/go32v2/exit16.asm -text
rtl/go32v2/fpu.as svneol=native#text/plain
rtl/go32v2/go32.pp svneol=native#text/plain
rtl/go32v2/initc.pp svneol=native#text/plain
rtl/go32v2/keyboard.pp svneol=native#text/plain
rtl/go32v2/mouse.pp svneol=native#text/plain
rtl/go32v2/msmouse.pp svneol=native#text/plain
rtl/go32v2/ports.pp svneol=native#text/plain
rtl/go32v2/printer.pp svneol=native#text/plain
rtl/go32v2/profile.pp svneol=native#text/plain
rtl/go32v2/sbrk16.ah -text
rtl/go32v2/sbrk16.asm -text
rtl/go32v2/sysdir.inc svneol=native#text/plain
rtl/go32v2/sysfile.inc svneol=native#text/plain
rtl/go32v2/sysheap.inc svneol=native#text/plain
rtl/go32v2/sysos.inc svneol=native#text/plain
rtl/go32v2/sysosh.inc svneol=native#text/plain
rtl/go32v2/system.pp svneol=native#text/plain
rtl/go32v2/sysutils.pp svneol=native#text/plain
rtl/go32v2/tthread.inc svneol=native#text/plain
rtl/go32v2/v2prt0.as svneol=native#text/plain
rtl/go32v2/varutils.pp svneol=native#text/plain
rtl/go32v2/vesamode.pp svneol=native#text/plain
rtl/go32v2/video.pp svneol=native#text/plain
rtl/haiku/Makefile svneol=native#text/plain
rtl/haiku/Makefile.fpc svneol=native#text/plain
rtl/haiku/baseunix.pp svneol=native#text/plain
rtl/haiku/bethreads.pp svneol=native#text/plain
rtl/haiku/classes.pp svneol=native#text/plain
rtl/haiku/errno.inc svneol=native#text/plain
rtl/haiku/errnostr.inc svneol=native#text/plain
rtl/haiku/i386/cprt0.as svneol=native#text/plain
rtl/haiku/i386/dllprt.as svneol=native#text/plain
rtl/haiku/i386/dllprt.cpp svneol=native#text/plain
rtl/haiku/i386/func.as svneol=native#text/plain
rtl/haiku/i386/prt0.as svneol=native#text/plain
rtl/haiku/i386/sighnd.inc svneol=native#text/plain
rtl/haiku/osdefs.inc svneol=native#text/plain
rtl/haiku/osmacro.inc svneol=native#text/plain
rtl/haiku/ossysc.inc svneol=native#text/plain
rtl/haiku/ostypes.inc svneol=native#text/plain
rtl/haiku/pthread.inc svneol=native#text/plain
rtl/haiku/ptypes.inc svneol=native#text/plain
rtl/haiku/settimeo.inc svneol=native#text/plain
rtl/haiku/signal.inc svneol=native#text/plain
rtl/haiku/suuid.inc svneol=native#text/plain
rtl/haiku/syscall.inc svneol=native#text/plain
rtl/haiku/syscallh.inc svneol=native#text/plain
rtl/haiku/sysconst.inc svneol=native#text/plain
rtl/haiku/sysheap.inc svneol=native#text/plain
rtl/haiku/sysnr.inc svneol=native#text/plain
rtl/haiku/sysos.inc svneol=native#text/plain
rtl/haiku/sysosh.inc svneol=native#text/plain
rtl/haiku/system.pp svneol=native#text/plain
rtl/haiku/termio.pp svneol=native#text/plain
rtl/haiku/termios.inc svneol=native#text/plain
rtl/haiku/termiosproc.inc svneol=native#text/plain
rtl/haiku/unixsock.inc svneol=native#text/plain
rtl/haiku/unxconst.inc svneol=native#text/plain
rtl/haiku/unxfunc.inc svneol=native#text/plain
rtl/haiku/unxsockh.inc svneol=native#text/plain
rtl/i386/cpu.pp svneol=native#text/plain
rtl/i386/fastmove.inc svneol=native#text/plain
rtl/i386/i386.inc svneol=native#text/plain
rtl/i386/int64p.inc svneol=native#text/plain
rtl/i386/makefile.cpu svneol=native#text/plain
rtl/i386/math.inc svneol=native#text/plain
rtl/i386/mathu.inc svneol=native#text/plain
rtl/i386/mathuh.inc svneol=native#text/plain
rtl/i386/mmx.pp svneol=native#text/plain
rtl/i386/readme -text
rtl/i386/set.inc svneol=native#text/plain
rtl/i386/setjump.inc svneol=native#text/plain
rtl/i386/setjumph.inc svneol=native#text/plain
rtl/i386/strings.inc svneol=native#text/plain
rtl/i386/stringss.inc svneol=native#text/plain
rtl/i386/strpas.inc svneol=native#text/plain
rtl/inc/aliases.inc svneol=native#text/plain
rtl/inc/astrings.inc svneol=native#text/plain
rtl/inc/cgeneric.inc svneol=native#text/plain
rtl/inc/cgenmath.inc svneol=native#text/plain
rtl/inc/cgenstr.inc svneol=native#text/plain
rtl/inc/charset.pp svneol=native#text/plain
rtl/inc/cmem.pp svneol=native#text/plain
rtl/inc/compproc.inc svneol=native#text/plain
rtl/inc/crt.inc svneol=native#text/plain
rtl/inc/crth.inc svneol=native#text/plain
rtl/inc/ctypes.pp svneol=native#text/plain
rtl/inc/currh.inc svneol=native#text/plain
rtl/inc/dos.inc svneol=native#text/plain
rtl/inc/dosh.inc svneol=native#text/plain
rtl/inc/dynarr.inc svneol=native#text/plain
rtl/inc/dynarrh.inc svneol=native#text/plain
rtl/inc/dynlibs.pas svneol=native#text/plain
rtl/inc/except.inc svneol=native#text/plain
rtl/inc/exeinfo.pp svneol=native#text/plain
rtl/inc/extres.inc svneol=native#text/plain
rtl/inc/fexpand.inc svneol=native#text/plain
rtl/inc/file.inc svneol=native#text/plain
rtl/inc/filerec.inc svneol=native#text/plain
rtl/inc/fpextres.pp svneol=native#text/plain
rtl/inc/fpintres.pp svneol=native#text/plain
rtl/inc/gencurr.inc svneol=native#text/plain
rtl/inc/generic.inc svneol=native#text/plain
rtl/inc/genmath.inc svneol=native#text/plain
rtl/inc/genset.inc svneol=native#text/plain
rtl/inc/genstr.inc svneol=native#text/plain
rtl/inc/genstrs.inc svneol=native#text/plain
rtl/inc/getopts.pp svneol=native#text/plain
rtl/inc/heap.inc svneol=native#text/plain
rtl/inc/heaph.inc svneol=native#text/plain
rtl/inc/heaptrc.pp svneol=native#text/plain
rtl/inc/innr.inc svneol=native#text/plain
rtl/inc/int64.inc svneol=native#text/plain
rtl/inc/intres.inc svneol=native#text/plain
rtl/inc/iso7185.pp svneol=native#text/pascal
rtl/inc/keyboard.inc svneol=native#text/plain
rtl/inc/keybrdh.inc svneol=native#text/plain
rtl/inc/keyscan.inc svneol=native#text/plain
rtl/inc/lineinfo.pp svneol=native#text/plain
rtl/inc/lnfodwrf.pp svneol=native#text/plain
rtl/inc/lstrings.pp svneol=native#text/plain
rtl/inc/macpas.pp svneol=native#text/plain
rtl/inc/makefile.inc svneol=native#text/plain
rtl/inc/mathh.inc svneol=native#text/plain
rtl/inc/matrix.pp svneol=native#text/plain
rtl/inc/mmatimp.inc svneol=native#text/plain
rtl/inc/mouse.inc svneol=native#text/plain
rtl/inc/mouseh.inc svneol=native#text/plain
rtl/inc/mvecimp.inc svneol=native#text/plain
rtl/inc/objc.pp svneol=native#text/plain
rtl/inc/objc1.inc svneol=native#text/plain
rtl/inc/objcbase.pp svneol=native#text/plain
rtl/inc/objcnf.inc svneol=native#text/plain
rtl/inc/objects.pp svneol=native#text/plain
rtl/inc/objpas.inc svneol=native#text/plain
rtl/inc/objpash.inc svneol=native#text/plain
rtl/inc/pagemem.pp svneol=native#text/plain
rtl/inc/printer.inc svneol=native#text/plain
rtl/inc/printerh.inc svneol=native#text/plain
rtl/inc/readme -text
rtl/inc/real2str.inc svneol=native#text/plain
rtl/inc/resh.inc svneol=native#text/plain
rtl/inc/rtti.inc svneol=native#text/plain
rtl/inc/sfpu128.pp svneol=native#text/pascal
rtl/inc/sfpux80.pp svneol=native#text/pascal
rtl/inc/sockets.inc svneol=native#text/plain
rtl/inc/socketsh.inc svneol=native#text/plain
rtl/inc/sockovl.inc svneol=native#text/plain
rtl/inc/softfpu.pp svneol=native#text/plain
rtl/inc/sstrings.inc svneol=native#text/plain
rtl/inc/stdsock.inc svneol=native#text/plain
rtl/inc/strings.pp svneol=native#text/plain
rtl/inc/stringsi.inc svneol=native#text/plain
rtl/inc/sysres.inc svneol=native#text/plain
rtl/inc/system.fpd -text
rtl/inc/system.inc svneol=native#text/plain
rtl/inc/systemh.inc svneol=native#text/plain
rtl/inc/text.inc svneol=native#text/plain
rtl/inc/textrec.inc svneol=native#text/plain
rtl/inc/thread.inc svneol=native#text/plain
rtl/inc/threadh.inc svneol=native#text/plain
rtl/inc/threadvr.inc svneol=native#text/plain
rtl/inc/typefile.inc svneol=native#text/plain
rtl/inc/ucomplex.pp svneol=native#text/plain
rtl/inc/ufloat128.pp svneol=native#text/plain
rtl/inc/ustringh.inc svneol=native#text/plain
rtl/inc/ustrings.inc svneol=native#text/plain
rtl/inc/uuchar.pp svneol=native#text/plain
rtl/inc/varerror.inc svneol=native#text/plain
rtl/inc/variant.inc svneol=native#text/plain
rtl/inc/varianth.inc svneol=native#text/plain
rtl/inc/variants.pp svneol=native#text/plain
rtl/inc/video.inc svneol=native#text/plain
rtl/inc/videoh.inc svneol=native#text/plain
rtl/inc/wstringh.inc svneol=native#text/plain
rtl/inc/wstrings.inc svneol=native#text/plain
rtl/inc/wustrings.inc svneol=native#text/plain
rtl/java/Makefile svneol=native#text/plain
rtl/java/Makefile.fpc svneol=native#text/plain
rtl/java/jastringh.inc svneol=native#text/plain
rtl/java/jastrings.inc svneol=native#text/plain
rtl/java/java_sys.inc svneol=native#text/plain
rtl/java/java_sysh.inc svneol=native#text/plain
rtl/java/jcompproc.inc svneol=native#text/plain
rtl/java/jdk15.inc svneol=native#text/plain
rtl/java/jdk15.pas svneol=native#text/plain
rtl/java/jdynarr.inc svneol=native#text/plain
rtl/java/jdynarrh.inc svneol=native#text/plain
rtl/java/jpvar.inc svneol=native#text/plain
rtl/java/jpvarh.inc svneol=native#text/plain
rtl/java/jrec.inc svneol=native#text/plain
rtl/java/jrech.inc svneol=native#text/plain
rtl/java/jset.inc svneol=native#text/plain
rtl/java/jseth.inc svneol=native#text/plain
rtl/java/jsstringh.inc svneol=native#text/plain
rtl/java/jsstrings.inc svneol=native#text/plain
rtl/java/jsystem.inc svneol=native#text/plain
rtl/java/jsystemh.inc svneol=native#text/plain
rtl/java/jsystemh_types.inc svneol=native#text/plain
rtl/java/jtcon.inc svneol=native#text/plain
rtl/java/jtconh.inc svneol=native#text/plain
rtl/java/jtvar.inc svneol=native#text/plain
rtl/java/jtvarh.inc svneol=native#text/plain
rtl/java/justringh.inc svneol=native#text/plain
rtl/java/justrings.inc svneol=native#text/plain
rtl/java/jwin2javacharset.inc svneol=native#text/plain
rtl/java/objpas.inc svneol=native#text/plain
rtl/java/objpas.pp svneol=native#text/plain
rtl/java/objpash.inc svneol=native#text/plain
rtl/java/rtl.cfg svneol=native#text/plain
rtl/java/rtti.inc svneol=native#text/plain
rtl/java/sysos.inc svneol=native#text/plain
rtl/java/sysosh.inc svneol=native#text/plain
rtl/java/sysres.inc svneol=native#text/plain
rtl/java/system.pp svneol=native#text/plain
rtl/jvm/int64p.inc svneol=native#text/plain
rtl/jvm/jvm.inc svneol=native#text/plain
rtl/jvm/makefile.cpu svneol=native#text/plain
rtl/jvm/math.inc svneol=native#text/plain
rtl/jvm/setjump.inc svneol=native#text/plain
rtl/jvm/setjumph.inc svneol=native#text/plain
rtl/linux/Makefile svneol=native#text/plain
rtl/linux/Makefile.fpc svneol=native#text/plain
rtl/linux/arm/bsyscall.inc svneol=native#text/plain
rtl/linux/arm/cprt0.as svneol=native#text/plain
rtl/linux/arm/dllprt0.as svneol=native#text/plain
rtl/linux/arm/gprt0.as svneol=native#text/plain
rtl/linux/arm/prt0.as svneol=native#text/plain
rtl/linux/arm/sighnd.inc svneol=native#text/plain
rtl/linux/arm/sighndh.inc svneol=native#text/plain
rtl/linux/arm/stat.inc svneol=native#text/plain
rtl/linux/arm/syscall.inc svneol=native#text/plain
rtl/linux/arm/syscallh.inc svneol=native#text/plain
rtl/linux/arm/sysnr.inc svneol=native#text/plain
rtl/linux/arm/ucprt0.as svneol=native#text/plain
rtl/linux/buildrtl.lpi svneol=native#text/plain
rtl/linux/buildrtl.pp svneol=native#text/plain
rtl/linux/bunxsysc.inc svneol=native#text/plain
rtl/linux/errno-mips.inc svneol=native#text/plain
rtl/linux/errno-sparc.inc svneol=native#text/plain
rtl/linux/errno.inc svneol=native#text/plain
rtl/linux/errnostr.inc svneol=native#text/plain
rtl/linux/fpcylix.pp svneol=native#text/plain
rtl/linux/fpmake.inc svneol=native#text/plain
rtl/linux/gpm.pp svneol=native#text/plain
rtl/linux/i386/bsyscall.inc svneol=native#text/plain
rtl/linux/i386/cprt0.as svneol=native#text/plain
rtl/linux/i386/cprt21.as svneol=native#text/plain
rtl/linux/i386/dllprt0.as svneol=native#text/plain
rtl/linux/i386/gprt0.as svneol=native#text/plain
rtl/linux/i386/gprt21.as svneol=native#text/plain
rtl/linux/i386/prt0.as svneol=native#text/plain
rtl/linux/i386/si_c.inc svneol=native#text/plain
rtl/linux/i386/si_c21.inc svneol=native#text/plain
rtl/linux/i386/si_c21g.inc svneol=native#text/plain
rtl/linux/i386/si_dll.inc svneol=native#text/plain
rtl/linux/i386/si_g.inc svneol=native#text/plain
rtl/linux/i386/si_prc.inc svneol=native#text/plain
rtl/linux/i386/si_uc.inc svneol=native#text/plain
rtl/linux/i386/sighnd.inc svneol=native#text/plain
rtl/linux/i386/sighndh.inc svneol=native#text/plain
rtl/linux/i386/stat.inc svneol=native#text/plain
rtl/linux/i386/syscall.inc svneol=native#text/plain
rtl/linux/i386/syscallh.inc svneol=native#text/plain
rtl/linux/i386/sysnr.inc svneol=native#text/plain
rtl/linux/ipccall.inc svneol=native#text/plain
rtl/linux/ipcsys.inc svneol=native#text/plain
rtl/linux/linux.pp svneol=native#text/plain
rtl/linux/linuxvcs.pp svneol=native#text/plain
rtl/linux/m68k/bsyscall.inc svneol=native#text/plain
rtl/linux/m68k/cprt0.as svneol=native#text/plain
rtl/linux/m68k/cprt21.as svneol=native#text/plain
rtl/linux/m68k/dllprt0.as svneol=native#text/plain
rtl/linux/m68k/gprt0.as svneol=native#text/plain
rtl/linux/m68k/gprt21.as svneol=native#text/plain
rtl/linux/m68k/prt0.as svneol=native#text/plain
rtl/linux/m68k/prt1.as svneol=native#text/plain
rtl/linux/m68k/sighnd.inc svneol=native#text/plain
rtl/linux/m68k/sighndh.inc svneol=native#text/plain
rtl/linux/m68k/stat.inc svneol=native#text/plain
rtl/linux/m68k/syscall.inc svneol=native#text/plain
rtl/linux/m68k/syscallh.inc svneol=native#text/plain
rtl/linux/m68k/sysnr.inc svneol=native#text/plain
rtl/linux/mips/bsyscall.inc svneol=native#text/plain
rtl/linux/mips/cprt0.as svneol=native#text/plain
rtl/linux/mips/dllprt0.as svneol=native#text/plain
rtl/linux/mips/gprt0.as svneol=native#text/plain
rtl/linux/mips/prt0.as svneol=native#text/plain
rtl/linux/mips/sighnd.inc svneol=native#text/plain
rtl/linux/mips/sighndh.inc svneol=native#text/plain
rtl/linux/mips/stat.inc svneol=native#text/plain
rtl/linux/mips/syscall.inc svneol=native#text/plain
rtl/linux/mips/syscallh.inc svneol=native#text/plain
rtl/linux/mips/sysnr.inc svneol=native#text/plain
rtl/linux/mipsel/bsyscall.inc svneol=native#text/plain
rtl/linux/mipsel/cprt0.as svneol=native#text/plain
rtl/linux/mipsel/dllprt0.as svneol=native#text/plain
rtl/linux/mipsel/gprt0.as svneol=native#text/plain
rtl/linux/mipsel/prt0.as svneol=native#text/plain
rtl/linux/mipsel/sighnd.inc svneol=native#text/plain
rtl/linux/mipsel/sighndh.inc svneol=native#text/plain
rtl/linux/mipsel/stat.inc svneol=native#text/plain
rtl/linux/mipsel/syscall.inc svneol=native#text/plain
rtl/linux/mipsel/syscallh.inc svneol=native#text/plain
rtl/linux/mipsel/sysnr.inc svneol=native#text/plain
rtl/linux/oldlinux.pp svneol=native#text/plain
rtl/linux/osdefs.inc svneol=native#text/plain
rtl/linux/osmacro.inc svneol=native#text/plain
rtl/linux/ossysc.inc svneol=native#text/plain
rtl/linux/ostypes.inc svneol=native#text/plain
rtl/linux/powerpc/bsyscall.inc svneol=native#text/plain
rtl/linux/powerpc/cprt0.as svneol=native#text/plain
rtl/linux/powerpc/dllprt0.as svneol=native#text/plain
rtl/linux/powerpc/gprt0.as svneol=native#text/plain
rtl/linux/powerpc/prt0.as svneol=native#text/plain
rtl/linux/powerpc/sighnd.inc svneol=native#text/plain
rtl/linux/powerpc/sighndh.inc svneol=native#text/plain
rtl/linux/powerpc/stat.inc svneol=native#text/plain
rtl/linux/powerpc/syscall.inc svneol=native#text/plain
rtl/linux/powerpc/syscallh.inc svneol=native#text/plain
rtl/linux/powerpc/sysnr.inc svneol=native#text/plain
rtl/linux/powerpc64/bsyscall.inc svneol=native#text/plain
rtl/linux/powerpc64/cprt0.as svneol=native#text/plain
rtl/linux/powerpc64/dllprt0.as svneol=native#text/plain
rtl/linux/powerpc64/gprt0.as svneol=native#text/plain
rtl/linux/powerpc64/prt0.as svneol=native#text/plain
rtl/linux/powerpc64/sighnd.inc svneol=native#text/plain
rtl/linux/powerpc64/sighndh.inc svneol=native#text/plain
rtl/linux/powerpc64/stat.inc svneol=native#text/plain
rtl/linux/powerpc64/syscall.inc svneol=native#text/plain
rtl/linux/powerpc64/syscallh.inc svneol=native#text/plain
rtl/linux/powerpc64/sysnr.inc svneol=native#text/plain
rtl/linux/pthread.inc svneol=native#text/plain
rtl/linux/ptypes.inc svneol=native#text/plain
rtl/linux/si_c.pp svneol=native#text/plain
rtl/linux/si_c21.pp svneol=native#text/plain
rtl/linux/si_c21g.pp svneol=native#text/plain
rtl/linux/si_dll.pp svneol=native#text/plain
rtl/linux/si_g.pp svneol=native#text/plain
rtl/linux/si_intf.inc svneol=native#text/plain
rtl/linux/si_prc.pp svneol=native#text/plain
rtl/linux/si_uc.pp svneol=native#text/plain
rtl/linux/signal.inc svneol=native#text/plain
rtl/linux/sparc/bsyscall.inc svneol=native#text/plain
rtl/linux/sparc/cprt0.as svneol=native#text/plain
rtl/linux/sparc/dllprt0.as svneol=native#text/plain
rtl/linux/sparc/gprt0.as svneol=native#text/plain
rtl/linux/sparc/prt0.as svneol=native#text/plain
rtl/linux/sparc/sighnd.inc svneol=native#text/plain
rtl/linux/sparc/sighndh.inc svneol=native#text/plain
rtl/linux/sparc/stat.inc svneol=native#text/plain
rtl/linux/sparc/syscall.inc svneol=native#text/plain
rtl/linux/sparc/syscallh.inc svneol=native#text/plain
rtl/linux/sparc/sysnr.inc svneol=native#text/plain
rtl/linux/suuid.inc svneol=native#text/plain
rtl/linux/sysos.inc svneol=native#text/plain
rtl/linux/sysosh.inc svneol=native#text/plain
rtl/linux/system.pp svneol=native#text/plain
rtl/linux/termio.pp svneol=native#text/plain
rtl/linux/termios.inc svneol=native#text/plain
rtl/linux/termiosproc.inc svneol=native#text/plain
rtl/linux/unixsock.inc svneol=native#text/plain
rtl/linux/unixsockets.inc svneol=native#text/plain
rtl/linux/unixsocketsh.inc svneol=native#text/plain
rtl/linux/unxconst.inc svneol=native#text/plain
rtl/linux/unxfunc.inc svneol=native#text/plain
rtl/linux/unxsockh.inc svneol=native#text/plain
rtl/linux/unxsysc.inc svneol=native#text/plain
rtl/linux/unxsysch.inc svneol=native#text/plain
rtl/linux/x86_64/bsyscall.inc svneol=native#text/plain
rtl/linux/x86_64/cprt0.as svneol=native#text/plain
rtl/linux/x86_64/dllprt0.as svneol=native#text/plain
rtl/linux/x86_64/gprt0.as svneol=native#text/plain
rtl/linux/x86_64/prt0.as svneol=native#text/plain
rtl/linux/x86_64/si_c.inc svneol=native#text/plain
rtl/linux/x86_64/si_prc.inc svneol=native#text/plain
rtl/linux/x86_64/sighnd.inc svneol=native#text/plain
rtl/linux/x86_64/sighndh.inc svneol=native#text/plain
rtl/linux/x86_64/stat.inc svneol=native#text/plain
rtl/linux/x86_64/syscall.inc svneol=native#text/plain
rtl/linux/x86_64/syscallh.inc svneol=native#text/plain
rtl/linux/x86_64/sysnr.inc svneol=native#text/plain
rtl/m68k/int64p.inc svneol=native#text/plain
rtl/m68k/lowmath.inc svneol=native#text/plain
rtl/m68k/m68k.inc svneol=native#text/plain
rtl/m68k/makefile.cpu svneol=native#text/plain
rtl/m68k/math.inc svneol=native#text/plain
rtl/m68k/readme -text
rtl/m68k/set.inc svneol=native#text/plain
rtl/m68k/setjump.inc svneol=native#text/plain
rtl/m68k/setjumph.inc svneol=native#text/plain
rtl/m68k/strings.inc svneol=native#text/plain
rtl/m68k/stringss.inc svneol=native#text/plain
rtl/macos/MPWmake -text
rtl/macos/Makefile svneol=native#text/plain
rtl/macos/Makefile.fpc svneol=native#text/plain
rtl/macos/README.txt svneol=native#text/plain
rtl/macos/dos.pp svneol=native#text/plain
rtl/macos/macos.pp svneol=native#text/plain
rtl/macos/macostp.inc svneol=native#text/plain
rtl/macos/macostp.pp svneol=native#text/plain
rtl/macos/macutils.inc svneol=native#text/plain
rtl/macos/macutils.pp svneol=native#text/plain
rtl/macos/sysdir.inc svneol=native#text/plain
rtl/macos/sysfile.inc svneol=native#text/plain
rtl/macos/sysheap.inc svneol=native#text/plain
rtl/macos/sysos.inc svneol=native#text/plain
rtl/macos/sysosh.inc svneol=native#text/plain
rtl/macos/system.pp svneol=native#text/plain
rtl/macos/sysutils.pp svneol=native#text/plain
rtl/mips/int64p.inc svneol=native#text/plain
rtl/mips/makefile.cpu svneol=native#text/plain
rtl/mips/math.inc svneol=native#text/plain
rtl/mips/mathu.inc svneol=native#text/plain
rtl/mips/mathuh.inc svneol=native#text/plain
rtl/mips/mips.inc svneol=native#text/plain
rtl/mips/set.inc svneol=native#text/plain
rtl/mips/setjump.inc svneol=native#text/plain
rtl/mips/setjumph.inc svneol=native#text/plain
rtl/mips/strings.inc svneol=native#text/plain
rtl/mips/stringss.inc svneol=native#text/plain
rtl/mipsel/int64p.inc svneol=native#text/plain
rtl/mipsel/makefile.cpu svneol=native#text/plain
rtl/mipsel/math.inc svneol=native#text/plain
rtl/mipsel/mathu.inc svneol=native#text/plain
rtl/mipsel/mathuh.inc svneol=native#text/plain
rtl/mipsel/mips.inc svneol=native#text/plain
rtl/mipsel/set.inc svneol=native#text/plain
rtl/mipsel/setjump.inc svneol=native#text/plain
rtl/mipsel/setjumph.inc svneol=native#text/plain
rtl/mipsel/strings.inc svneol=native#text/plain
rtl/mipsel/stringss.inc svneol=native#text/plain
rtl/morphos/Makefile svneol=native#text/plain
rtl/morphos/Makefile.fpc svneol=native#text/plain
rtl/morphos/aboxlib.pas -text svneol=unset#text/plain
rtl/morphos/ahi.pas svneol=native#text/plain
rtl/morphos/asl.pas svneol=native#text/plain
rtl/morphos/classes.pp svneol=native#text/plain
rtl/morphos/clipboard.pas svneol=native#text/plain
rtl/morphos/datatypes.pas -text svneol=unset#text/plain
rtl/morphos/dos.pp svneol=native#text/plain
rtl/morphos/doslib.pp svneol=native#text/plain
rtl/morphos/doslibd.inc svneol=native#text/plain
rtl/morphos/doslibf.inc svneol=native#text/plain
rtl/morphos/emuld.inc svneol=native#text/plain
rtl/morphos/exec.pp svneol=native#text/plain
rtl/morphos/execd.inc svneol=native#text/plain
rtl/morphos/execf.inc svneol=native#text/plain
rtl/morphos/get9.pas svneol=native#text/plain
rtl/morphos/graphics.pas svneol=native#text/plain
rtl/morphos/hardware.pas svneol=native#text/plain
rtl/morphos/inputevent.pas svneol=native#text/plain
rtl/morphos/intuition.pas svneol=native#text/plain
rtl/morphos/keyboard.pp svneol=native#text/plain
rtl/morphos/keymap.pas svneol=native#text/plain
rtl/morphos/kvm.pp svneol=native#text/plain
rtl/morphos/layers.pas svneol=native#text/plain
rtl/morphos/mouse.pp svneol=native#text/plain
rtl/morphos/mui.pas -text svneol=unset#text/plain
rtl/morphos/muihelper.pas -text svneol=unset#text/plain
rtl/morphos/prt0.as svneol=native#text/plain
rtl/morphos/sockets.pp svneol=native#text/plain
rtl/morphos/sysdir.inc svneol=native#text/plain
rtl/morphos/sysfile.inc svneol=native#text/plain
rtl/morphos/sysheap.inc svneol=native#text/plain
rtl/morphos/sysos.inc svneol=native#text/plain
rtl/morphos/sysosh.inc svneol=native#text/plain
rtl/morphos/system.pp svneol=native#text/plain
rtl/morphos/sysutils.pp svneol=native#text/plain
rtl/morphos/timer.pp svneol=native#text/plain
rtl/morphos/timerd.inc svneol=native#text/plain
rtl/morphos/timerf.inc svneol=native#text/plain
rtl/morphos/tinygl.pp svneol=native#text/plain
rtl/morphos/tthread.inc svneol=native#text/plain
rtl/morphos/utild1.inc svneol=native#text/plain
rtl/morphos/utild2.inc svneol=native#text/plain
rtl/morphos/utilf.inc svneol=native#text/plain
rtl/morphos/utility.pp svneol=native#text/plain
rtl/morphos/varutils.pp svneol=native#text/plain
rtl/morphos/video.pp svneol=native#text/plain
rtl/morphos/videodata.inc svneol=native#text/plain
rtl/nativent/Makefile svneol=native#text/plain
rtl/nativent/Makefile.fpc svneol=native#text/plain
rtl/nativent/buildrtl.lpi svneol=native#text/plain
rtl/nativent/buildrtl.pp svneol=native#text/pascal
rtl/nativent/classes.pp svneol=native#text/pascal
rtl/nativent/ddk.pas svneol=native#text/pascal
rtl/nativent/ddk/ddkex.inc svneol=native#text/plain
rtl/nativent/ddk/ddktypes.inc svneol=native#text/plain
rtl/nativent/ndk.pas svneol=native#text/pascal
rtl/nativent/ndk/iofuncs.inc svneol=native#text/plain
rtl/nativent/ndk/iotypes.inc svneol=native#text/plain
rtl/nativent/ndk/ketypes.inc svneol=native#text/plain
rtl/nativent/ndk/ntdef.inc svneol=native#text/plain
rtl/nativent/ndk/ntstatus.inc svneol=native#text/plain
rtl/nativent/ndk/obfuncs.inc svneol=native#text/plain
rtl/nativent/ndk/obtypes.inc svneol=native#text/plain
rtl/nativent/ndk/peb_teb.inc svneol=native#text/plain
rtl/nativent/ndk/pstypes.inc svneol=native#text/plain
rtl/nativent/ndk/rtlfuncs.inc svneol=native#text/plain
rtl/nativent/ndk/rtltypes.inc svneol=native#text/plain
rtl/nativent/ndk/umtypes.inc svneol=native#text/plain
rtl/nativent/ndk/winnt.inc svneol=native#text/plain
rtl/nativent/ndkutils.pas svneol=native#text/pascal
rtl/nativent/sysdir.inc svneol=native#text/plain
rtl/nativent/sysfile.inc svneol=native#text/plain
rtl/nativent/sysheap.inc svneol=native#text/plain
rtl/nativent/sysos.inc svneol=native#text/plain
rtl/nativent/sysosh.inc svneol=native#text/plain
rtl/nativent/system.pp svneol=native#text/pascal
rtl/nativent/systhrd.inc svneol=native#text/plain
rtl/nativent/sysutils.pp svneol=native#text/pascal
rtl/nativent/tthread.inc svneol=native#text/plain
rtl/nativent/varutils.pp svneol=native#text/pascal
rtl/nds/Makefile svneol=native#text/plain
rtl/nds/Makefile.fpc svneol=native#text/plain
rtl/nds/classes.pp svneol=native#text/plain
rtl/nds/cprt07.as svneol=native#text/plain
rtl/nds/cprt09.as svneol=native#text/plain
rtl/nds/dos.pp svneol=native#text/plain
rtl/nds/libc.inc svneol=native#text/plain
rtl/nds/libch.inc svneol=native#text/plain
rtl/nds/nds.inc svneol=native#text/plain
rtl/nds/ndsbios.inc svneol=native#text/plain
rtl/nds/ndsbiosh.inc svneol=native#text/plain
rtl/nds/ndsh.inc svneol=native#text/plain
rtl/nds/prt07.as svneol=native#text/plain
rtl/nds/prt09.as svneol=native#text/plain
rtl/nds/sysdir.inc svneol=native#text/plain
rtl/nds/sysfile.inc svneol=native#text/plain
rtl/nds/sysheap.inc svneol=native#text/plain
rtl/nds/sysos.inc svneol=native#text/plain
rtl/nds/sysosh.inc svneol=native#text/plain
rtl/nds/system.pp svneol=native#text/plain
rtl/nds/systhrd.inc svneol=native#text/plain
rtl/nds/sysutils.pp svneol=native#text/plain
rtl/nds/tthread.inc svneol=native#text/plain
rtl/nds/varutils.pp svneol=native#text/plain
rtl/netbsd/Makefile svneol=native#text/plain
rtl/netbsd/Makefile.fpc svneol=native#text/plain
rtl/netbsd/errno.inc svneol=native#text/plain
rtl/netbsd/errnostr.inc svneol=native#text/plain
rtl/netbsd/i386/bsyscall.inc svneol=native#text/plain
rtl/netbsd/i386/cprt0.as svneol=native#text/plain
rtl/netbsd/i386/prt0.as svneol=native#text/plain
rtl/netbsd/i386/prt0_10.as svneol=native#text/plain
rtl/netbsd/i386/sighnd.inc svneol=native#text/plain
rtl/netbsd/pmutext.inc svneol=native#text/plain
rtl/netbsd/powerpc/bsyscall.inc svneol=native#text/plain
rtl/netbsd/powerpc/cprt0.as svneol=native#text/plain
rtl/netbsd/powerpc/prt0.as svneol=native#text/plain
rtl/netbsd/powerpc/sighnd.inc svneol=native#text/plain
rtl/netbsd/pthread.inc svneol=native#text/plain
rtl/netbsd/ptypes.inc svneol=native#text/plain
rtl/netbsd/signal.inc svneol=native#text/plain
rtl/netbsd/syscalls.inc svneol=native#text/plain
rtl/netbsd/sysconst.inc svneol=native#text/plain
rtl/netbsd/sysctlh.inc svneol=native#text/plain
rtl/netbsd/sysnr.inc svneol=native#text/plain
rtl/netbsd/sysofft.inc svneol=native#text/plain
rtl/netbsd/systypes.inc svneol=native#text/plain
rtl/netbsd/termio.pp svneol=native#text/plain
rtl/netbsd/termios.inc svneol=native#text/plain
rtl/netbsd/termiosproc.inc svneol=native#text/plain
rtl/netbsd/unixsock.inc svneol=native#text/plain
rtl/netbsd/unxconst.inc svneol=native#text/plain
rtl/netbsd/unxfunc.inc svneol=native#text/plain
rtl/netbsd/unxsockh.inc svneol=native#text/plain
rtl/netbsd/unxsysc.inc svneol=native#text/plain
rtl/netbsd/x86_64/bsyscall.inc svneol=native#text/plain
rtl/netbsd/x86_64/cprt0.as svneol=native#text/plain
rtl/netbsd/x86_64/gprt0.as svneol=native#text/plain
rtl/netbsd/x86_64/prt0.as svneol=native#text/plain
rtl/netbsd/x86_64/sighnd.inc svneol=native#text/plain
rtl/netware/Makefile svneol=native#text/plain
rtl/netware/Makefile.fpc svneol=native#text/plain
rtl/netware/README.txt svneol=native#text/plain
rtl/netware/aio.imp -text
rtl/netware/aio.pp svneol=native#text/plain
rtl/netware/audnlm32.imp -text
rtl/netware/calnlm32.imp -text
rtl/netware/ccs-os.imp -text
rtl/netware/ccs.imp -text
rtl/netware/classes.pp svneol=native#text/plain
rtl/netware/clib.imp -text
rtl/netware/clibaux.imp -text
rtl/netware/clibctx.imp -text
rtl/netware/clxnlm32.imp -text
rtl/netware/convertimp -text
rtl/netware/crt.pp svneol=native#text/plain
rtl/netware/demos/Makefile svneol=native#text/plain
rtl/netware/demos/check.pp svneol=native#text/plain
rtl/netware/dos.pp svneol=native#text/plain
rtl/netware/dplsv386.imp -text
rtl/netware/dsapi.imp -text
rtl/netware/dsevent.imp -text
rtl/netware/dynlibs.inc svneol=native#text/plain
rtl/netware/errno.inc svneol=native#text/plain
rtl/netware/initc.pp svneol=native#text/plain
rtl/netware/keyboard.pp svneol=native#text/plain
rtl/netware/lib0.imp -text
rtl/netware/locnlm32.imp -text
rtl/netware/mouse.pp svneol=native#text/plain
rtl/netware/ndpsrpc.imp -text
rtl/netware/netnlm32.imp -text
rtl/netware/netware.pp svneol=native#text/plain
rtl/netware/netwsockh.inc svneol=native#text/plain
rtl/netware/nit.imp -text
rtl/netware/nlmlib.imp -text
rtl/netware/npackoff.inc svneol=native#text/plain
rtl/netware/npackon.inc svneol=native#text/plain
rtl/netware/nwcalls.pp svneol=native#text/plain
rtl/netware/nwnit.pp svneol=native#text/plain
rtl/netware/nwpre.as svneol=native#text/plain
rtl/netware/nwpre.imp svneol=native#text/plain
rtl/netware/nwpre.pp svneol=native#text/plain
rtl/netware/nwprot.pp svneol=native#text/plain
rtl/netware/nwpsrv.imp -text
rtl/netware/nwpsrv3x.imp -text
rtl/netware/nwserv.pp svneol=native#text/plain
rtl/netware/nwsnut.imp -text
rtl/netware/nwsnut.pp svneol=native#text/plain
rtl/netware/nwsock.inc svneol=native#text/plain
rtl/netware/nwsys.inc svneol=native#text/plain
rtl/netware/prelude.as svneol=native#text/plain
rtl/netware/qos.inc svneol=native#text/plain
rtl/netware/requestr.imp -text
rtl/netware/sockets.pp svneol=native#text/plain
rtl/netware/socklib.imp -text
rtl/netware/streams.imp -text
rtl/netware/sysdir.inc svneol=native#text/plain
rtl/netware/sysfile.inc svneol=native#text/plain
rtl/netware/sysheap.inc svneol=native#text/plain
rtl/netware/sysos.inc svneol=native#text/plain
rtl/netware/sysosh.inc svneol=native#text/plain
rtl/netware/system.pp svneol=native#text/plain
rtl/netware/systhrd.inc svneol=native#text/plain
rtl/netware/sysutils.pp svneol=native#text/plain
rtl/netware/tests/Makefile svneol=native#text/plain
rtl/netware/tests/test.pas svneol=native#text/plain
rtl/netware/threads.imp -text
rtl/netware/tli.imp -text
rtl/netware/tthread.inc svneol=native#text/plain
rtl/netware/unicode.imp -text
rtl/netware/varutils.pp svneol=native#text/plain
rtl/netware/video.pp svneol=native#text/plain
rtl/netware/vollib.imp -text
rtl/netware/winsock.pp svneol=native#text/plain
rtl/netware/ws2_32.imp -text
rtl/netware/ws2nlm.imp -text
rtl/netwlibc/Makefile svneol=native#text/plain
rtl/netwlibc/Makefile.fpc svneol=native#text/plain
rtl/netwlibc/classes.pp svneol=native#text/plain
rtl/netwlibc/crt.pp svneol=native#text/plain
rtl/netwlibc/dos.pp svneol=native#text/plain
rtl/netwlibc/dynlibs.inc svneol=native#text/plain
rtl/netwlibc/errno.inc svneol=native#text/plain
rtl/netwlibc/initc.pp svneol=native#text/plain
rtl/netwlibc/keyboard.pp svneol=native#text/plain
rtl/netwlibc/libc.imp -text
rtl/netwlibc/libc.pp svneol=native#text/plain
rtl/netwlibc/libcclib.imp -text
rtl/netwlibc/mouse.pp svneol=native#text/plain
rtl/netwlibc/netware.imp -text
rtl/netwlibc/netwsockh.inc svneol=native#text/plain
rtl/netwlibc/nwl_dlle.as svneol=native#text/plain
rtl/netwlibc/nwl_main.as svneol=native#text/plain
rtl/netwlibc/nwsnut.imp -text
rtl/netwlibc/nwsnut.pp svneol=native#text/plain
rtl/netwlibc/pre/libcpre.gcc.o -text
rtl/netwlibc/qos.inc svneol=native#text/plain
rtl/netwlibc/sockets.pp svneol=native#text/plain
rtl/netwlibc/sysdir.inc svneol=native#text/plain
rtl/netwlibc/sysfile.inc svneol=native#text/plain
rtl/netwlibc/sysheap.inc svneol=native#text/plain
rtl/netwlibc/sysos.inc svneol=native#text/plain
rtl/netwlibc/sysosh.inc svneol=native#text/plain
rtl/netwlibc/system.pp svneol=native#text/plain
rtl/netwlibc/systhrd.inc svneol=native#text/plain
rtl/netwlibc/sysutils.pp svneol=native#text/plain
rtl/netwlibc/tthread.inc svneol=native#text/plain
rtl/netwlibc/varutils.pp svneol=native#text/plain
rtl/netwlibc/video.pp svneol=native#text/plain
rtl/netwlibc/winsock.pp svneol=native#text/plain
rtl/netwlibc/ws2_32.imp -text
rtl/netwlibc/ws2nlm.imp -text
rtl/objpas/README.txt svneol=native#text/plain
rtl/objpas/character.pas svneol=native#text/pascal
rtl/objpas/classes/action.inc svneol=native#text/plain
rtl/objpas/classes/bits.inc svneol=native#text/plain
rtl/objpas/classes/classes.inc svneol=native#text/plain
rtl/objpas/classes/classesh.inc svneol=native#text/plain
rtl/objpas/classes/collect.inc svneol=native#text/plain
rtl/objpas/classes/compon.inc svneol=native#text/plain
rtl/objpas/classes/constsg.inc svneol=native#text/plain
rtl/objpas/classes/constss.inc svneol=native#text/plain
rtl/objpas/classes/cregist.inc svneol=native#text/plain
rtl/objpas/classes/dm.inc svneol=native#text/plain
rtl/objpas/classes/filer.inc svneol=native#text/plain
rtl/objpas/classes/intf.inc svneol=native#text/plain
rtl/objpas/classes/lists.inc svneol=native#text/plain
rtl/objpas/classes/parser.inc svneol=native#text/plain
rtl/objpas/classes/persist.inc svneol=native#text/plain
rtl/objpas/classes/reader.inc svneol=native#text/plain
rtl/objpas/classes/resref.inc svneol=native#text/plain
rtl/objpas/classes/sllist.inc svneol=native#text/plain
rtl/objpas/classes/streams.inc svneol=native#text/plain
rtl/objpas/classes/stringl.inc svneol=native#text/plain
rtl/objpas/classes/twriter.inc svneol=native#text/plain
rtl/objpas/classes/util.inc svneol=native#text/plain
rtl/objpas/classes/writer.inc svneol=native#text/plain
rtl/objpas/convutil.inc svneol=native#text/plain
rtl/objpas/convutil.pp svneol=native#text/plain
rtl/objpas/convutils.pp svneol=native#text/plain
rtl/objpas/cvarutil.inc svneol=native#text/plain
rtl/objpas/dateutil.inc svneol=native#text/plain
rtl/objpas/dateutil.pp svneol=native#text/plain
rtl/objpas/dateutils.pp svneol=native#text/plain
rtl/objpas/fgl.pp svneol=native#text/plain
rtl/objpas/fmtbcd.pp svneol=native#text/plain
rtl/objpas/freebidi.pp svneol=native#text/plain
rtl/objpas/math.pp svneol=native#text/plain
rtl/objpas/objpas.pp svneol=native#text/plain
rtl/objpas/rtlconst.inc svneol=native#text/plain
rtl/objpas/rtlconst.pp svneol=native#text/plain
rtl/objpas/rtlconsts.pp svneol=native#text/plain
rtl/objpas/stdconvs.pp svneol=native#text/plain
rtl/objpas/strutils.pp svneol=native#text/plain
rtl/objpas/sysconst.pp svneol=native#text/plain
rtl/objpas/sysutils/dati.inc svneol=native#text/plain
rtl/objpas/sysutils/datih.inc svneol=native#text/plain
rtl/objpas/sysutils/diskh.inc svneol=native#text/plain
rtl/objpas/sysutils/filutilh.inc svneol=native#text/plain
rtl/objpas/sysutils/fina.inc svneol=native#text/plain
rtl/objpas/sysutils/finah.inc svneol=native#text/plain
rtl/objpas/sysutils/intfh.inc svneol=native#text/plain
rtl/objpas/sysutils/osutil.inc svneol=native#text/plain
rtl/objpas/sysutils/osutilsh.inc svneol=native#text/plain
rtl/objpas/sysutils/stre.inc svneol=native#text/plain
rtl/objpas/sysutils/strg.inc svneol=native#text/plain
rtl/objpas/sysutils/sysansi.inc svneol=native#text/plain
rtl/objpas/sysutils/sysansih.inc svneol=native#text/plain
rtl/objpas/sysutils/syscodepages.inc svneol=native#text/pascal
rtl/objpas/sysutils/syscodepagesh.inc svneol=native#text/pascal
rtl/objpas/sysutils/sysencoding.inc svneol=native#text/pascal
rtl/objpas/sysutils/sysencodingh.inc svneol=native#text/pascal
rtl/objpas/sysutils/sysformt.inc svneol=native#text/plain
rtl/objpas/sysutils/sysint.inc svneol=native#text/plain
rtl/objpas/sysutils/sysinth.inc svneol=native#text/plain
rtl/objpas/sysutils/syspch.inc svneol=native#text/plain
rtl/objpas/sysutils/syspchh.inc svneol=native#text/plain
rtl/objpas/sysutils/sysstr.inc svneol=native#text/plain
rtl/objpas/sysutils/sysstrh.inc svneol=native#text/plain
rtl/objpas/sysutils/systhrdh.inc svneol=native#text/plain
rtl/objpas/sysutils/sysuintf.inc svneol=native#text/plain
rtl/objpas/sysutils/sysuni.inc svneol=native#text/plain
rtl/objpas/sysutils/sysunih.inc svneol=native#text/plain
rtl/objpas/sysutils/sysuthrd.inc svneol=native#text/plain
rtl/objpas/sysutils/sysutilh.inc svneol=native#text/plain
rtl/objpas/sysutils/sysutils.inc svneol=native#text/plain
rtl/objpas/sysutils/syswide.inc svneol=native#text/plain
rtl/objpas/sysutils/syswideh.inc svneol=native#text/plain
rtl/objpas/types.pp svneol=native#text/plain
rtl/objpas/typinfo.pp svneol=native#text/plain
rtl/objpas/unicodedata.inc svneol=native#text/pascal
rtl/objpas/unicodedata2.inc svneol=native#text/pascal
rtl/objpas/utf8bidi.pp svneol=native#text/plain
rtl/objpas/varutilh.inc svneol=native#text/plain
rtl/objpas/varutils.inc svneol=native#text/plain
rtl/openbsd/Makefile svneol=native#text/plain
rtl/openbsd/Makefile.fpc svneol=native#text/plain
rtl/openbsd/classes.pp svneol=native#text/plain
rtl/openbsd/errno.inc svneol=native#text/plain
rtl/openbsd/errnostr.inc svneol=native#text/plain
rtl/openbsd/i386/bsyscall.inc svneol=native#text/plain
rtl/openbsd/i386/cprt0.as svneol=native#text/plain
rtl/openbsd/i386/prt0.as svneol=native#text/plain
rtl/openbsd/i386/sighnd.inc svneol=native#text/plain
rtl/openbsd/osdefs.inc svneol=native#text/plain
rtl/openbsd/pmutext.inc svneol=native#text/plain
rtl/openbsd/pthread.inc svneol=native#text/plain
rtl/openbsd/ptypes.inc svneol=native#text/plain
rtl/openbsd/signal.inc svneol=native#text/plain
rtl/openbsd/syscalls.inc svneol=native#text/plain
rtl/openbsd/sysconst.inc svneol=native#text/plain
rtl/openbsd/sysctlh.inc svneol=native#text/plain
rtl/openbsd/sysnr.inc svneol=native#text/plain
rtl/openbsd/sysofft.inc svneol=native#text/plain
rtl/openbsd/systypes.inc svneol=native#text/plain
rtl/openbsd/termio.pp svneol=native#text/plain
rtl/openbsd/termios.inc svneol=native#text/plain
rtl/openbsd/termiosproc.inc svneol=native#text/plain
rtl/openbsd/unixsock.inc svneol=native#text/plain
rtl/openbsd/unixsysc.inc svneol=native#text/plain
rtl/openbsd/unxconst.inc svneol=native#text/plain
rtl/openbsd/unxfunc.inc svneol=native#text/plain
rtl/openbsd/unxsockh.inc svneol=native#text/plain
rtl/openbsd/unxsysc.inc svneol=native#text/plain
rtl/openbsd/x86_64/bsyscall.inc svneol=native#text/plain
rtl/openbsd/x86_64/cprt0.as svneol=native#text/plain
rtl/openbsd/x86_64/crt0.s svneol=native#text/plain
rtl/openbsd/x86_64/gprt0.as svneol=native#text/plain
rtl/openbsd/x86_64/prt0.as svneol=native#text/plain
rtl/openbsd/x86_64/sighnd.inc svneol=native#text/plain
rtl/os2/Makefile svneol=native#text/plain
rtl/os2/Makefile.fpc svneol=native#text/plain
rtl/os2/classes.pp svneol=native#text/plain
rtl/os2/crt.pas svneol=native#text/plain
rtl/os2/dos.pas svneol=native#text/plain
rtl/os2/doscalls.pas svneol=native#text/plain
rtl/os2/dynlibs.inc svneol=native#text/plain
rtl/os2/exe.pas svneol=native#text/plain
rtl/os2/kbdcalls.pas svneol=native#text/plain
rtl/os2/keyboard.pp svneol=native#text/plain
rtl/os2/moncalls.pas svneol=native#text/plain
rtl/os2/moucalls.pas svneol=native#text/plain
rtl/os2/mouse.pp svneol=native#text/plain
rtl/os2/newexe.pas svneol=native#text/plain
rtl/os2/os2def.pas svneol=native#text/plain
rtl/os2/pmbidi.pas svneol=native#text/plain
rtl/os2/pmbitmap.pas svneol=native#text/plain
rtl/os2/pmdev.pas svneol=native#text/plain
rtl/os2/pmgpi.pas svneol=native#text/plain
rtl/os2/pmhelp.pas svneol=native#text/plain
rtl/os2/pmshl.pas svneol=native#text/plain
rtl/os2/pmspl.pas svneol=native#text/plain
rtl/os2/pmstddlg.pas svneol=native#text/plain
rtl/os2/pmwin.pas svneol=native#text/plain
rtl/os2/pmwp.pas svneol=native#text/plain
rtl/os2/pmwsock.pas svneol=native#text/plain
rtl/os2/ports.pas svneol=native#text/plain
rtl/os2/printer.pas svneol=native#text/plain
rtl/os2/prt0.as svneol=native#text/plain
rtl/os2/so32dll.pas svneol=native#text/plain
rtl/os2/sockets.pas svneol=native#text/plain
rtl/os2/sysdir.inc svneol=native#text/plain
rtl/os2/sysfile.inc svneol=native#text/plain
rtl/os2/sysheap.inc svneol=native#text/plain
rtl/os2/sysos.inc svneol=native#text/plain
rtl/os2/sysos2.pas svneol=native#text/plain
rtl/os2/sysosh.inc svneol=native#text/plain
rtl/os2/system.pas svneol=native#text/plain
rtl/os2/systhrd.inc svneol=native#text/plain
rtl/os2/sysutils.pp svneol=native#text/plain
rtl/os2/tests/atx.pas svneol=native#text/plain
rtl/os2/tests/basicpm.pas svneol=native#text/plain
rtl/os2/tests/calc_e.pas svneol=native#text/plain
rtl/os2/tests/generic.pas svneol=native#text/plain
rtl/os2/tests/getctry.pas svneol=native#text/plain
rtl/os2/tests/heapsize.pas svneol=native#text/plain
rtl/os2/tests/helloos2.pas svneol=native#text/plain
rtl/os2/tests/modeinfo.pas svneol=native#text/plain
rtl/os2/tests/o2rtlb1.pas svneol=native#text/plain
rtl/os2/tests/pmdemo1.def -text
rtl/os2/tests/pmdemo1.h -text
rtl/os2/tests/pmdemo1.mak -text
rtl/os2/tests/pmdemo1.pp svneol=native#text/plain
rtl/os2/tests/pmdemo1.rc -text
rtl/os2/tests/testkbd.pas svneol=native#text/plain
rtl/os2/todo-os2.txt svneol=native#text/plain
rtl/os2/tthread.inc svneol=native#text/plain
rtl/os2/varutils.pp svneol=native#text/plain
rtl/os2/video.pp svneol=native#text/plain
rtl/os2/viocalls.imp -text
rtl/os2/viocalls.pas svneol=native#text/plain
rtl/os2/winsock.pas svneol=native#text/plain
rtl/palmos/Makefile svneol=native#text/plain
rtl/palmos/Makefile.fpc -text
rtl/palmos/api/common.inc svneol=native#text/plain
rtl/palmos/api/common.pp svneol=native#text/plain
rtl/palmos/api/font.imn -text
rtl/palmos/api/font.inc svneol=native#text/plain
rtl/palmos/api/fontsel.inc svneol=native#text/plain
rtl/palmos/api/init.inc svneol=native#text/plain
rtl/palmos/api/readme -text
rtl/palmos/api/rect.inc svneol=native#text/plain
rtl/palmos/api/sysall.pp svneol=native#text/plain
rtl/palmos/api/systraps.inc svneol=native#text/plain
rtl/palmos/api/systraps.pp svneol=native#text/plain
rtl/palmos/api/ui.pp svneol=native#text/plain
rtl/palmos/arm/prt0.as svneol=native#text/plain
rtl/palmos/m68k/crt0.o -text
rtl/palmos/m68k/gdbstub.o -text
rtl/palmos/m68k/libcrt.a -text
rtl/palmos/m68k/prt0.as svneol=native#text/plain
rtl/palmos/os.inc svneol=native#text/plain
rtl/palmos/pilot.pp svneol=native#text/plain
rtl/palmos/readme -text
rtl/palmos/syspalm.pp svneol=native#text/plain
rtl/palmos/system.pp svneol=native#text/plain
rtl/palmos/systraps.pp svneol=native#text/plain
rtl/powerpc/int64p.inc svneol=native#text/plain
rtl/powerpc/makefile.cpu svneol=native#text/plain
rtl/powerpc/math.inc svneol=native#text/plain
rtl/powerpc/mathu.inc svneol=native#text/plain
rtl/powerpc/mathuh.inc svneol=native#text/plain
rtl/powerpc/powerpc.inc svneol=native#text/plain
rtl/powerpc/set.inc svneol=native#text/plain
rtl/powerpc/setjump.inc svneol=native#text/plain
rtl/powerpc/setjumph.inc svneol=native#text/plain
rtl/powerpc/strings.inc svneol=native#text/plain
rtl/powerpc/stringss.inc svneol=native#text/plain
rtl/powerpc/strlen.inc svneol=native#text/plain
rtl/powerpc/strpas.inc svneol=native#text/plain
rtl/powerpc64/int64p.inc svneol=native#text/plain
rtl/powerpc64/makefile.cpu svneol=native#text/plain
rtl/powerpc64/math.inc svneol=native#text/plain
rtl/powerpc64/mathu.inc svneol=native#text/plain
rtl/powerpc64/mathuh.inc svneol=native#text/plain
rtl/powerpc64/powerpc64.inc svneol=native#text/plain
rtl/powerpc64/set.inc svneol=native#text/plain
rtl/powerpc64/setjump.inc svneol=native#text/plain
rtl/powerpc64/setjumph.inc svneol=native#text/plain
rtl/powerpc64/strings.inc svneol=native#text/plain
rtl/powerpc64/stringss.inc svneol=native#text/plain
rtl/powerpc64/strlen.inc svneol=native#text/plain
rtl/powerpc64/strpas.inc svneol=native#text/plain
rtl/qnx/Makefile svneol=native#text/plain
rtl/qnx/Makefile.fpc svneol=native#text/plain
rtl/qnx/dos.inc svneol=native#text/plain
rtl/qnx/errno.inc svneol=native#text/plain
rtl/qnx/i386/cprt0.as svneol=native#text/plain
rtl/qnx/i386/crti.s svneol=native#text/plain
rtl/qnx/i386/crtn.s svneol=native#text/plain
rtl/qnx/osposix.inc svneol=native#text/plain
rtl/qnx/osposixh.inc svneol=native#text/plain
rtl/qnx/posix.pp svneol=native#text/plain
rtl/qnx/qnx.inc svneol=native#text/plain
rtl/qnx/signal.inc svneol=native#text/plain
rtl/qnx/system.pp svneol=native#text/plain
rtl/solaris/Makefile svneol=native#text/plain
rtl/solaris/Makefile.fpc svneol=native#text/plain
rtl/solaris/clocale.inc svneol=native#text/plain
rtl/solaris/errno.inc svneol=native#text/plain
rtl/solaris/errnostr.inc svneol=native#text/plain
rtl/solaris/i386/sighnd.inc svneol=native#text/plain
rtl/solaris/i386/sighndh.inc svneol=native#text/plain
rtl/solaris/i386/start.inc svneol=native#text/plain
rtl/solaris/osdefs.inc svneol=native#text/plain
rtl/solaris/osmacro.inc svneol=native#text/plain
rtl/solaris/ostypes.inc svneol=native#text/plain
rtl/solaris/pthread.inc svneol=native#text/plain
rtl/solaris/ptypes.inc svneol=native#text/plain
rtl/solaris/signal.inc svneol=native#text/plain
rtl/solaris/sparc/sighnd.inc svneol=native#text/plain
rtl/solaris/sparc/sighndh.inc svneol=native#text/plain
rtl/solaris/sparc/start.inc svneol=native#text/plain
rtl/solaris/suuid.inc svneol=native#text/plain
rtl/solaris/sysos.inc svneol=native#text/plain
rtl/solaris/sysosh.inc svneol=native#text/plain
rtl/solaris/system.pp svneol=native#text/plain
rtl/solaris/termio.pp svneol=native#text/plain
rtl/solaris/termios.inc svneol=native#text/plain
rtl/solaris/termiosproc.inc svneol=native#text/plain
rtl/solaris/unxconst.inc svneol=native#text/plain
rtl/solaris/unxfunc.inc svneol=native#text/plain
rtl/solaris/unxsockh.inc svneol=native#text/plain
rtl/solaris/x86_64/sighnd.inc svneol=native#text/plain
rtl/solaris/x86_64/sighndh.inc svneol=native#text/plain
rtl/solaris/x86_64/start.inc svneol=native#text/plain
rtl/sparc/int64p.inc svneol=native#text/plain
rtl/sparc/makefile.cpu svneol=native#text/plain
rtl/sparc/math.inc svneol=native#text/plain
rtl/sparc/mathu.inc svneol=native#text/plain
rtl/sparc/mathuh.inc svneol=native#text/plain
rtl/sparc/set.inc svneol=native#text/plain
rtl/sparc/setjump.inc svneol=native#text/plain
rtl/sparc/setjumph.inc svneol=native#text/plain
rtl/sparc/sparc.inc svneol=native#text/plain
rtl/sparc/strings.inc svneol=native#text/plain
rtl/sparc/stringss.inc svneol=native#text/plain
rtl/symbian/Makefile svneol=native#text/plain
rtl/symbian/Makefile.fpc svneol=native#text/plain
rtl/symbian/bindings/pbeexe.cpp -text
rtl/symbian/buildrtl.pp svneol=native#text/plain
rtl/symbian/symbian.pas svneol=native#text/plain
rtl/symbian/symbianinc/e32def.inc svneol=native#text/plain
rtl/symbian/symbianinc/e32err.inc svneol=native#text/plain
rtl/symbian/symbianinc/e32std.inc svneol=native#text/plain
rtl/symbian/sysdir.inc svneol=native#text/plain
rtl/symbian/sysfile.inc svneol=native#text/plain
rtl/symbian/sysheap.inc svneol=native#text/plain
rtl/symbian/sysos.inc svneol=native#text/plain
rtl/symbian/sysosh.inc svneol=native#text/plain
rtl/symbian/system.pp svneol=native#text/plain
rtl/symbian/uiq.pas svneol=native#text/plain
rtl/symbian/uiqclasses.pas svneol=native#text/plain
rtl/symbian/uiqinc/qikapplication.inc svneol=native#text/plain
rtl/symbian/uiqinc/qikapplicationoo.inc svneol=native#text/plain
rtl/ucmaps/8859-1.txt svneol=native#text/plain
rtl/ucmaps/8859-10.txt svneol=native#text/plain
rtl/ucmaps/8859-13.txt svneol=native#text/plain
rtl/ucmaps/8859-14.txt svneol=native#text/plain
rtl/ucmaps/8859-15.txt svneol=native#text/plain
rtl/ucmaps/8859-2.txt svneol=native#text/plain
rtl/ucmaps/8859-3.txt svneol=native#text/plain
rtl/ucmaps/8859-4.txt svneol=native#text/plain
rtl/ucmaps/8859-5.txt svneol=native#text/plain
rtl/ucmaps/8859-6.txt svneol=native#text/plain
rtl/ucmaps/8859-7.txt svneol=native#text/plain
rtl/ucmaps/8859-8.txt svneol=native#text/plain
rtl/ucmaps/8859-9.txt svneol=native#text/plain
rtl/ucmaps/cp856.txt svneol=native#text/plain
rtl/unix/aliasctp.inc svneol=native#text/plain
rtl/unix/aliasptp.inc svneol=native#text/plain
rtl/unix/baseunix.pp svneol=native#text/plain
rtl/unix/bunxh.inc svneol=native#text/plain
rtl/unix/bunxovl.inc svneol=native#text/plain
rtl/unix/bunxovlh.inc svneol=native#text/plain
rtl/unix/classes.pp svneol=native#text/plain
rtl/unix/clocale.pp svneol=native#text/plain
rtl/unix/convert.inc svneol=native#text/plain
rtl/unix/crt.pp svneol=native#text/plain
rtl/unix/cthreads.pp svneol=native#text/plain
rtl/unix/ctypes.inc svneol=native#text/plain
rtl/unix/cwstraix.inc svneol=native#text/plain
rtl/unix/cwstring.pp svneol=native#text/plain
rtl/unix/dl.pp svneol=native#text/plain
rtl/unix/dos.pp svneol=native#text/plain
rtl/unix/dynlibs.inc svneol=native#text/plain
rtl/unix/errors.pp svneol=native#text/plain
rtl/unix/fpmake.inc svneol=native#text/plain
rtl/unix/genfdset.inc svneol=native#text/plain
rtl/unix/genfunch.inc svneol=native#text/plain
rtl/unix/genfuncs.inc svneol=native#text/plain
rtl/unix/gensigset.inc svneol=native#text/plain
rtl/unix/initc.pp svneol=native#text/plain
rtl/unix/ipc.pp svneol=native#text/plain
rtl/unix/ipccdecl.inc svneol=native#text/plain
rtl/unix/keyboard.pp svneol=native#text/plain
rtl/unix/lnfogdb.pp svneol=native#text/plain
rtl/unix/mouse.pp svneol=native#text/plain
rtl/unix/oscdecl.inc svneol=native#text/plain
rtl/unix/oscdeclh.inc svneol=native#text/plain
rtl/unix/ports.pp svneol=native#text/plain
rtl/unix/printer.pp svneol=native#text/plain
rtl/unix/scripts/README svneol=native#text/plain
rtl/unix/scripts/check_consts.sh svneol=native#text/plain
rtl/unix/scripts/check_errno.sh svneol=native#text/plain
rtl/unix/scripts/check_errnostr.sh svneol=native#text/plain
rtl/unix/scripts/check_sys.sh svneol=native#text/plain
rtl/unix/serial.pp svneol=native#text/plain
rtl/unix/settimeo.inc svneol=native#text/plain
rtl/unix/sockets.pp svneol=native#text/plain
rtl/unix/syscall.pp svneol=native#text/plain
rtl/unix/syscgen.inc svneol=native#text/plain
rtl/unix/sysdir.inc svneol=native#text/plain
rtl/unix/sysfile.inc svneol=native#text/plain
rtl/unix/sysheap.inc svneol=native#text/plain
rtl/unix/sysunix.inc svneol=native#text/pascal
rtl/unix/sysunixh.inc svneol=native#text/plain
rtl/unix/sysutils.pp svneol=native#text/plain
rtl/unix/terminfo.pp svneol=native#text/plain
rtl/unix/termiosh.inc svneol=native#text/plain
rtl/unix/timezone.inc svneol=native#text/plain
rtl/unix/tthread.inc svneol=native#text/plain
rtl/unix/ttyname.inc svneol=native#text/plain
rtl/unix/unix.pp svneol=native#text/plain
rtl/unix/unixsockets.pas svneol=native#text/plain
rtl/unix/unixtype.pp svneol=native#text/plain
rtl/unix/unixutil.pp svneol=native#text/plain
rtl/unix/unxdeclh.inc svneol=native#text/plain
rtl/unix/unxovl.inc svneol=native#text/plain
rtl/unix/unxovlh.inc svneol=native#text/plain
rtl/unix/varutils.pp svneol=native#text/plain
rtl/unix/video.pp svneol=native#text/plain
rtl/unix/winiconv.inc svneol=native#text/plain
rtl/unix/x86.pp svneol=native#text/plain
rtl/watcom/Makefile svneol=native#text/plain
rtl/watcom/Makefile.fpc svneol=native#text/plain
rtl/watcom/classes.pp svneol=native#text/plain
rtl/watcom/crt.pp svneol=native#text/plain
rtl/watcom/dos.pp svneol=native#text/plain
rtl/watcom/prt0.as -text
rtl/watcom/sysdir.inc svneol=native#text/plain
rtl/watcom/sysfile.inc svneol=native#text/plain
rtl/watcom/sysheap.inc svneol=native#text/plain
rtl/watcom/sysos.inc svneol=native#text/plain
rtl/watcom/sysosh.inc svneol=native#text/plain
rtl/watcom/system.pp svneol=native#text/plain
rtl/watcom/sysutils.pp svneol=native#text/plain
rtl/watcom/varutils.pp svneol=native#text/plain
rtl/watcom/watcom.pp svneol=native#text/plain
rtl/wii/Makefile svneol=native#text/plain
rtl/wii/Makefile.fpc svneol=native#text/plain
rtl/wii/classes.pp svneol=native#text/plain
rtl/wii/dos.pp svneol=native#text/plain
rtl/wii/libc.inc svneol=native#text/plain
rtl/wii/libch.inc svneol=native#text/plain
rtl/wii/sysdir.inc svneol=native#text/plain
rtl/wii/sysfile.inc svneol=native#text/plain
rtl/wii/sysheap.inc svneol=native#text/plain
rtl/wii/sysos.inc svneol=native#text/plain
rtl/wii/sysosh.inc svneol=native#text/plain
rtl/wii/system.pp svneol=native#text/plain
rtl/wii/systhrd.inc svneol=native#text/plain
rtl/wii/sysutils.pp svneol=native#text/plain
rtl/wii/tthread.inc svneol=native#text/plain
rtl/wii/varutils.pp svneol=native#text/plain
rtl/wii/wii.inc svneol=native#text/plain
rtl/wii/wiih.inc svneol=native#text/plain
rtl/win/crt.pp svneol=native#text/plain
rtl/win/dos.pp svneol=native#text/plain
rtl/win/dynlibs.inc svneol=native#text/plain
rtl/win/fpcmemdll.pp svneol=native#text/plain
rtl/win/fpwinsockh.inc svneol=native#text/plain
rtl/win/keyboard.pp svneol=native#text/plain
rtl/win/messages.pp svneol=native#text/plain
rtl/win/mouse.pp svneol=native#text/plain
rtl/win/printer.pp svneol=native#text/plain
rtl/win/sharemem.pp svneol=native#text/plain
rtl/win/sockets.pp svneol=native#text/plain
rtl/win/sysdir.inc svneol=native#text/plain
rtl/win/sysfile.inc svneol=native#text/plain
rtl/win/sysheap.inc svneol=native#text/plain
rtl/win/sysos.inc svneol=native#text/plain
rtl/win/sysosh.inc svneol=native#text/plain
rtl/win/systhrd.inc svneol=native#text/plain
rtl/win/systlsdir.inc svneol=native#text/plain
rtl/win/sysutils.pp svneol=native#text/plain
rtl/win/syswin.inc svneol=native#text/plain
rtl/win/tthread.inc svneol=native#text/plain
rtl/win/varutils.pp svneol=native#text/plain
rtl/win/video.pp svneol=native#text/plain
rtl/win/windirs.pp svneol=native#text/plain
rtl/win/winevent.pp svneol=native#text/plain
rtl/win/wininc/Makefile svneol=native#text/plain
rtl/win/wininc/ascdef.inc svneol=native#text/plain
rtl/win/wininc/ascdef.sed -text
rtl/win/wininc/ascfun.inc svneol=native#text/plain
rtl/win/wininc/base.inc svneol=native#text/plain
rtl/win/wininc/defines.inc svneol=native#text/plain
rtl/win/wininc/errors.inc svneol=native#text/plain
rtl/win/wininc/func.inc svneol=native#text/plain
rtl/win/wininc/makefile.inc svneol=native#text/plain
rtl/win/wininc/messages.inc svneol=native#text/plain
rtl/win/wininc/redef.inc svneol=native#text/plain
rtl/win/wininc/struct.inc svneol=native#text/plain
rtl/win/wininc/unidef.inc svneol=native#text/plain
rtl/win/wininc/unidef.sed -text
rtl/win/wininc/unifun.inc svneol=native#text/plain
rtl/win/winres.inc svneol=native#text/plain
rtl/win/winsock.pp svneol=native#text/plain
rtl/win/winsock2.pp svneol=native#text/plain
rtl/win32/Makefile svneol=native#text/plain
rtl/win32/Makefile.fpc svneol=native#text/plain
rtl/win32/buildrtl.lpi svneol=native#text/plain
rtl/win32/buildrtl.pp svneol=native#text/plain
rtl/win32/classes.pp svneol=native#text/plain
rtl/win32/gprt0.as svneol=native#text/plain
rtl/win32/initc.pp svneol=native#text/plain
rtl/win32/objinc.inc svneol=native#text/plain
rtl/win32/signals.pp svneol=native#text/plain
rtl/win32/sysinit.inc svneol=native#text/plain
rtl/win32/sysinitcyg.pp svneol=native#text/plain
rtl/win32/sysinitgprof.pp svneol=native#text/plain
rtl/win32/sysinitpas.pp svneol=native#text/plain
rtl/win32/system.pp svneol=native#text/plain
rtl/win32/wcygprt0.as svneol=native#text/plain
rtl/win32/wdllprt0.as svneol=native#text/plain
rtl/win32/windows.pp svneol=native#text/plain
rtl/win32/winsysut.pp svneol=native#text/plain
rtl/win32/wprt0.as svneol=native#text/plain
rtl/win64/Makefile svneol=native#text/plain
rtl/win64/Makefile.fpc svneol=native#text/plain
rtl/win64/buildrtl.pp svneol=native#text/plain
rtl/win64/classes.pp svneol=native#text/plain
rtl/win64/seh64.inc svneol=native#text/plain
rtl/win64/signals.pp svneol=native#text/plain
rtl/win64/system.pp svneol=native#text/plain
rtl/win64/windows.pp svneol=native#text/plain
rtl/wince/Makefile svneol=native#text/plain
rtl/wince/Makefile.fpc svneol=native#text/plain
rtl/wince/classes.pp svneol=native#text/plain
rtl/wince/dos.pp svneol=native#text/plain
rtl/wince/dynlibs.inc svneol=native#text/plain
rtl/wince/messages.pp svneol=native#text/plain
rtl/wince/readme.txt svneol=native#text/plain
rtl/wince/system.pp svneol=native#text/plain
rtl/wince/sysutils.pp svneol=native#text/plain
rtl/wince/varutils.pp svneol=native#text/plain
rtl/wince/windows.pp svneol=native#text/plain
rtl/wince/wininc/base.inc svneol=native#text/plain
rtl/wince/wininc/cemiss.inc svneol=native#text/plain
rtl/wince/wininc/coredll.inc svneol=native#text/plain
rtl/wince/wininc/defines.inc svneol=native#text/plain
rtl/wince/wininc/errors.inc svneol=native#text/plain
rtl/wince/wininc/makefile.inc svneol=native#text/plain
rtl/wince/wininc/messages.inc svneol=native#text/plain
rtl/wince/wininc/redef.inc svneol=native#text/plain
rtl/wince/wininc/struct.inc svneol=native#text/plain
rtl/wince/winres.inc svneol=native#text/plain
rtl/wince/winsock.pp svneol=native#text/plain
rtl/wince/winsock2.pp svneol=native#text/plain
rtl/x86_64/cpu.pp svneol=native#text/pascal
rtl/x86_64/int64p.inc svneol=native#text/plain
rtl/x86_64/makefile.cpu svneol=native#text/plain
rtl/x86_64/math.inc svneol=native#text/plain
rtl/x86_64/mathu.inc svneol=native#text/plain
rtl/x86_64/mathuh.inc svneol=native#text/plain
rtl/x86_64/set.inc svneol=native#text/plain
rtl/x86_64/setjump.inc svneol=native#text/plain
rtl/x86_64/setjumph.inc svneol=native#text/plain
rtl/x86_64/strings.inc svneol=native#text/plain
rtl/x86_64/stringss.inc svneol=native#text/plain
rtl/x86_64/x86_64.inc svneol=native#text/plain
tests/MPWMake -text
tests/Makefile svneol=native#text/plain
tests/Makefile.fpc svneol=native#text/plain
tests/bench/bansi1.inc svneol=native#text/plain
tests/bench/bansi1.pp svneol=native#text/plain
tests/bench/bansi1mt.pp svneol=native#text/plain
tests/bench/blists1.inc svneol=native#text/plain
tests/bench/blists1.pp svneol=native#text/plain
tests/bench/bmd5.pp svneol=native#text/plain
tests/bench/dmisc.pas svneol=native#text/plain
tests/bench/drystone.pas svneol=native#text/plain
tests/bench/pi.c -text
tests/bench/pi.pp svneol=native#text/plain
tests/bench/shootout/README.txt svneol=native#text/plain
tests/bench/shootout/fpascal2.diff svneol=native#text/plain
tests/bench/shootout/io/binarytrees-output.txt svneol=native#text/plain
tests/bench/shootout/io/knucleotide-output.txt svneol=native#text/plain
tests/bench/shootout/io/mandelbrot-output.txt -text svneol=unset#image/x-portable-bitmap
tests/bench/shootout/io/meteor-output.txt svneol=native#text/plain
tests/bench/shootout/io/moments.in -text
tests/bench/shootout/io/moments.out -text
tests/bench/shootout/io/recursive-output.txt svneol=native#text/plain
tests/bench/shootout/io/regexdna-input.txt -text svneol=unset#application/octet-stream
tests/bench/shootout/io/rev.out -text
tests/bench/shootout/io/revfile.in -text
tests/bench/shootout/io/revfile.out -text
tests/bench/shootout/io/spectralnorm-output.txt svneol=native#text/plain
tests/bench/shootout/io/sumcol.in -text
tests/bench/shootout/io/sumcol.out -text
tests/bench/shootout/io/wc.in -text
tests/bench/shootout/io/wc.out -text
tests/bench/shootout/io/wordfreq.in -text
tests/bench/shootout/io/wordfreq.out -text
tests/bench/shootout/log/ackerm.log -text
tests/bench/shootout/log/ary3.log -text
tests/bench/shootout/log/fibo.log -text
tests/bench/shootout/log/hash.log -text
tests/bench/shootout/log/heapsort.log -text
tests/bench/shootout/log/hello.log -text
tests/bench/shootout/log/lists.log -text
tests/bench/shootout/log/matrix.log -text
tests/bench/shootout/log/methcall.log -text
tests/bench/shootout/log/moments.log -text
tests/bench/shootout/log/nestloop.log -text
tests/bench/shootout/log/random.log -text
tests/bench/shootout/log/revfile.log -text
tests/bench/shootout/log/sieve.log -text
tests/bench/shootout/log/strcat.log -text
tests/bench/shootout/log/sumcol.log -text
tests/bench/shootout/log/wc.log -text
tests/bench/shootout/obsolete/ackermann.pp svneol=native#text/plain
tests/bench/shootout/obsolete/array.pp svneol=native#text/plain
tests/bench/shootout/obsolete/fibo.pp svneol=native#text/plain
tests/bench/shootout/obsolete/hash.pp svneol=native#text/plain
tests/bench/shootout/obsolete/heapsort.pp svneol=native#text/plain
tests/bench/shootout/obsolete/lists.pp svneol=native#text/plain
tests/bench/shootout/obsolete/matrix.pp svneol=native#text/plain
tests/bench/shootout/obsolete/methcall.pp svneol=native#text/plain
tests/bench/shootout/obsolete/moments.pp svneol=native#text/plain
tests/bench/shootout/obsolete/nestloop.pp svneol=native#text/plain
tests/bench/shootout/obsolete/random.pp svneol=native#text/plain
tests/bench/shootout/obsolete/revfile.pp svneol=native#text/plain
tests/bench/shootout/obsolete/strcat.pp svneol=native#text/plain
tests/bench/shootout/obsolete/takfp.pp svneol=native#text/plain
tests/bench/shootout/obsolete/wc.pp svneol=native#text/plain
tests/bench/shootout/src/bench.c -text
tests/bench/shootout/src/binarytrees.pp svneol=native#text/plain
tests/bench/shootout/src/chameneos.pp svneol=native#text/plain
tests/bench/shootout/src/fannkuch.pp svneol=native#text/plain
tests/bench/shootout/src/fasta.pp svneol=native#text/plain
tests/bench/shootout/src/hello.pp svneol=native#text/plain
tests/bench/shootout/src/knucleotide.lpi svneol=native#text/plain
tests/bench/shootout/src/knucleotide.pp svneol=native#text/plain
tests/bench/shootout/src/mandelbrot.pp svneol=native#text/plain
tests/bench/shootout/src/message.pp svneol=native#text/plain
tests/bench/shootout/src/meteorshower.pp svneol=native#text/plain
tests/bench/shootout/src/n_body.pp svneol=native#text/plain
tests/bench/shootout/src/nsieve.pp svneol=native#text/plain
tests/bench/shootout/src/partialsums.pp svneol=native#text/plain
tests/bench/shootout/src/recursive.lpi svneol=native#text/plain
tests/bench/shootout/src/recursive.pp svneol=native#text/plain
tests/bench/shootout/src/regexdna.pp svneol=native#text/plain
tests/bench/shootout/src/simple_hash.pp svneol=native#text/plain
tests/bench/shootout/src/spectralnorm.pp svneol=native#text/plain
tests/bench/shootout/src/sumcol.pp svneol=native#text/plain
tests/bench/shootout/src/thread_ring.pp svneol=native#text/plain
tests/bench/shortbench.pp svneol=native#text/plain
tests/bench/stream.pp svneol=native#text/plain
tests/bench/timer.pas svneol=native#text/plain
tests/bench/whet.pas svneol=native#text/plain
tests/dbdigest.cfg.example -text
tests/readme.txt svneol=native#text/plain
tests/tbf/tb0001.pp svneol=native#text/plain
tests/tbf/tb0002.pp svneol=native#text/plain
tests/tbf/tb0004.pp svneol=native#text/plain
tests/tbf/tb0005.pp svneol=native#text/plain
tests/tbf/tb0006.pp svneol=native#text/plain
tests/tbf/tb0007.pp svneol=native#text/plain
tests/tbf/tb0008.pp svneol=native#text/plain
tests/tbf/tb0009.pp svneol=native#text/plain
tests/tbf/tb0010.pp svneol=native#text/plain
tests/tbf/tb0011.pp svneol=native#text/plain
tests/tbf/tb0012.pp svneol=native#text/plain
tests/tbf/tb0013.pp svneol=native#text/plain
tests/tbf/tb0014.pp svneol=native#text/plain
tests/tbf/tb0015.pp svneol=native#text/plain
tests/tbf/tb0016.pp svneol=native#text/plain
tests/tbf/tb0017.pp svneol=native#text/plain
tests/tbf/tb0018.pp svneol=native#text/plain
tests/tbf/tb0019.pp svneol=native#text/plain
tests/tbf/tb0020.pp svneol=native#text/plain
tests/tbf/tb0021.pp svneol=native#text/plain
tests/tbf/tb0022.pp svneol=native#text/plain
tests/tbf/tb0023.pp svneol=native#text/plain
tests/tbf/tb0024.pp svneol=native#text/plain
tests/tbf/tb0025.pp svneol=native#text/plain
tests/tbf/tb0026.pp svneol=native#text/plain
tests/tbf/tb0027.pp svneol=native#text/plain
tests/tbf/tb0028.pp svneol=native#text/plain
tests/tbf/tb0029.pp svneol=native#text/plain
tests/tbf/tb0030.pp svneol=native#text/plain
tests/tbf/tb0031.pp svneol=native#text/plain
tests/tbf/tb0032.pp svneol=native#text/plain
tests/tbf/tb0033.pp svneol=native#text/plain
tests/tbf/tb0034.pp svneol=native#text/plain
tests/tbf/tb0035.pp svneol=native#text/plain
tests/tbf/tb0036.pp svneol=native#text/plain
tests/tbf/tb0037.pp svneol=native#text/plain
tests/tbf/tb0038.pp svneol=native#text/plain
tests/tbf/tb0039.pp svneol=native#text/plain
tests/tbf/tb0040.pp svneol=native#text/plain
tests/tbf/tb0041.pp svneol=native#text/plain
tests/tbf/tb0042.pp svneol=native#text/plain
tests/tbf/tb0043.pp svneol=native#text/plain
tests/tbf/tb0044.pp svneol=native#text/plain
tests/tbf/tb0045.pp svneol=native#text/plain
tests/tbf/tb0046.pp svneol=native#text/plain
tests/tbf/tb0047.pp svneol=native#text/plain
tests/tbf/tb0048.pp svneol=native#text/plain
tests/tbf/tb0049.pp svneol=native#text/plain
tests/tbf/tb0050.pp svneol=native#text/plain
tests/tbf/tb0051.pp svneol=native#text/plain
tests/tbf/tb0052.pp svneol=native#text/plain
tests/tbf/tb0053.pp svneol=native#text/plain
tests/tbf/tb0054.pp svneol=native#text/plain
tests/tbf/tb0055.pp svneol=native#text/plain
tests/tbf/tb0056.pp svneol=native#text/plain
tests/tbf/tb0057.pp svneol=native#text/plain
tests/tbf/tb0058.pp svneol=native#text/plain
tests/tbf/tb0059.pp svneol=native#text/plain
tests/tbf/tb0060.pp svneol=native#text/plain
tests/tbf/tb0061.pp svneol=native#text/plain
tests/tbf/tb0062.pp svneol=native#text/plain
tests/tbf/tb0063.pp svneol=native#text/plain
tests/tbf/tb0064.pp svneol=native#text/plain
tests/tbf/tb0065.pp svneol=native#text/plain
tests/tbf/tb0066.pp svneol=native#text/plain
tests/tbf/tb0067.pp svneol=native#text/plain
tests/tbf/tb0068.pp svneol=native#text/plain
tests/tbf/tb0069.pp svneol=native#text/plain
tests/tbf/tb0071.pp svneol=native#text/plain
tests/tbf/tb0072.pp svneol=native#text/plain
tests/tbf/tb0073.pp svneol=native#text/plain
tests/tbf/tb0074.pp svneol=native#text/plain
tests/tbf/tb0075.pp svneol=native#text/plain
tests/tbf/tb0076.pp svneol=native#text/plain
tests/tbf/tb0077.pp svneol=native#text/plain
tests/tbf/tb0078.pp svneol=native#text/plain
tests/tbf/tb0079.pp svneol=native#text/plain
tests/tbf/tb0080.pp svneol=native#text/plain
tests/tbf/tb0081.pp svneol=native#text/plain
tests/tbf/tb0082.pp svneol=native#text/plain
tests/tbf/tb0083.pp svneol=native#text/plain
tests/tbf/tb0084.pp svneol=native#text/plain
tests/tbf/tb0085.pp svneol=native#text/plain
tests/tbf/tb0086.pp svneol=native#text/plain
tests/tbf/tb0087.pp svneol=native#text/plain
tests/tbf/tb0088.pp svneol=native#text/plain
tests/tbf/tb0089.pp svneol=native#text/plain
tests/tbf/tb0090.pp svneol=native#text/plain
tests/tbf/tb0091.pp svneol=native#text/plain
tests/tbf/tb0092.pp svneol=native#text/plain
tests/tbf/tb0093.pp svneol=native#text/plain
tests/tbf/tb0094.pp svneol=native#text/plain
tests/tbf/tb0095.pp svneol=native#text/plain
tests/tbf/tb0096.pp svneol=native#text/plain
tests/tbf/tb0097.pp svneol=native#text/plain
tests/tbf/tb0098.pp svneol=native#text/plain
tests/tbf/tb0099.pp svneol=native#text/plain
tests/tbf/tb0100.pp svneol=native#text/plain
tests/tbf/tb0101.pp svneol=native#text/plain
tests/tbf/tb0102.pp svneol=native#text/plain
tests/tbf/tb0103.pp svneol=native#text/plain
tests/tbf/tb0104.pp svneol=native#text/plain
tests/tbf/tb0105.pp svneol=native#text/plain
tests/tbf/tb0106.pp svneol=native#text/plain
tests/tbf/tb0107.pp svneol=native#text/plain
tests/tbf/tb0107a.pp svneol=native#text/plain
tests/tbf/tb0109.pp svneol=native#text/plain
tests/tbf/tb0110.pp svneol=native#text/plain
tests/tbf/tb0111.pp svneol=native#text/plain
tests/tbf/tb0112.pp svneol=native#text/plain
tests/tbf/tb0114.pp svneol=native#text/plain
tests/tbf/tb0115.pp svneol=native#text/plain
tests/tbf/tb0116.pp svneol=native#text/plain
tests/tbf/tb0117.pp svneol=native#text/plain
tests/tbf/tb0118.pp svneol=native#text/plain
tests/tbf/tb0119.pp svneol=native#text/plain
tests/tbf/tb0120.pp svneol=native#text/plain
tests/tbf/tb0121.pp svneol=native#text/plain
tests/tbf/tb0123.pp svneol=native#text/plain
tests/tbf/tb0124.pp svneol=native#text/plain
tests/tbf/tb0125.pp svneol=native#text/plain
tests/tbf/tb0126.pp svneol=native#text/plain
tests/tbf/tb0127.pp svneol=native#text/plain
tests/tbf/tb0128.pp svneol=native#text/plain
tests/tbf/tb0129.pp svneol=native#text/plain
tests/tbf/tb0131.pp svneol=native#text/plain
tests/tbf/tb0132.pp svneol=native#text/plain
tests/tbf/tb0133.pp svneol=native#text/plain
tests/tbf/tb0134.pp svneol=native#text/plain
tests/tbf/tb0135.pp svneol=native#text/plain
tests/tbf/tb0136.pp svneol=native#text/plain
tests/tbf/tb0137.pp svneol=native#text/plain
tests/tbf/tb0138.pp svneol=native#text/plain
tests/tbf/tb0139.pp svneol=native#text/plain
tests/tbf/tb0140.pp svneol=native#text/plain
tests/tbf/tb0141.pp svneol=native#text/plain
tests/tbf/tb0142.pp svneol=native#text/plain
tests/tbf/tb0143.pp svneol=native#text/plain
tests/tbf/tb0144.pp svneol=native#text/plain
tests/tbf/tb0145.pp svneol=native#text/plain
tests/tbf/tb0146.pp svneol=native#text/plain
tests/tbf/tb0147.pp svneol=native#text/plain
tests/tbf/tb0148.pp svneol=native#text/plain
tests/tbf/tb0149.pp svneol=native#text/plain
tests/tbf/tb0150.pp svneol=native#text/plain
tests/tbf/tb0152.pp svneol=native#text/plain
tests/tbf/tb0153.pp svneol=native#text/plain
tests/tbf/tb0154.pp svneol=native#text/plain
tests/tbf/tb0155.pp svneol=native#text/plain
tests/tbf/tb0155a.pp svneol=native#text/plain
tests/tbf/tb0155b.pp svneol=native#text/plain
tests/tbf/tb0156.pp svneol=native#text/plain
tests/tbf/tb0157.pp svneol=native#text/plain
tests/tbf/tb0158.pp svneol=native#text/plain
tests/tbf/tb0159.pp svneol=native#text/plain
tests/tbf/tb0160.pp svneol=native#text/plain
tests/tbf/tb0161.pp svneol=native#text/plain
tests/tbf/tb0162.pp svneol=native#text/plain
tests/tbf/tb0163.pp svneol=native#text/plain
tests/tbf/tb0164.pp svneol=native#text/plain
tests/tbf/tb0165.pp svneol=native#text/plain
tests/tbf/tb0166.pp svneol=native#text/plain
tests/tbf/tb0167.pp svneol=native#text/plain
tests/tbf/tb0168.pp svneol=native#text/plain
tests/tbf/tb0169.pp svneol=native#text/plain
tests/tbf/tb0170.pp svneol=native#text/plain
tests/tbf/tb0171.pp svneol=native#text/plain
tests/tbf/tb0172.pp svneol=native#text/plain
tests/tbf/tb0173.pp svneol=native#text/plain
tests/tbf/tb0174a.pp svneol=native#text/plain
tests/tbf/tb0174b.pp svneol=native#text/plain
tests/tbf/tb0174c.pp svneol=native#text/plain
tests/tbf/tb0174d.pp svneol=native#text/plain
tests/tbf/tb0175.pp svneol=native#text/plain
tests/tbf/tb0176.pp svneol=native#text/plain
tests/tbf/tb0177.pp svneol=native#text/plain
tests/tbf/tb0178.pp svneol=native#text/plain
tests/tbf/tb0179.pp svneol=native#text/plain
tests/tbf/tb0180.pp svneol=native#text/plain
tests/tbf/tb0181.pp svneol=native#text/plain
tests/tbf/tb0182.pp svneol=native#text/plain
tests/tbf/tb0183.pp svneol=native#text/plain
tests/tbf/tb0184.pp svneol=native#text/plain
tests/tbf/tb0185.pp svneol=native#text/plain
tests/tbf/tb0186.pp svneol=native#text/plain
tests/tbf/tb0187.pp svneol=native#text/plain
tests/tbf/tb0189.pp svneol=native#text/plain
tests/tbf/tb0190.pp svneol=native#text/plain
tests/tbf/tb0191.pp svneol=native#text/plain
tests/tbf/tb0192.pp svneol=native#text/plain
tests/tbf/tb0193.pp svneol=native#text/plain
tests/tbf/tb0194.pp svneol=native#text/plain
tests/tbf/tb0195.pp svneol=native#text/plain
tests/tbf/tb0196.pp svneol=native#text/plain
tests/tbf/tb0197.pp svneol=native#text/plain
tests/tbf/tb0198.pp svneol=native#text/plain
tests/tbf/tb0199.pp svneol=native#text/plain
tests/tbf/tb0199a.pp svneol=native#text/plain
tests/tbf/tb0200.pp svneol=native#text/plain
tests/tbf/tb0201.pp svneol=native#text/plain
tests/tbf/tb0202.pp svneol=native#text/plain
tests/tbf/tb0203.pp svneol=native#text/plain
tests/tbf/tb0204.pp svneol=native#text/plain
tests/tbf/tb0204a.pp svneol=native#text/plain
tests/tbf/tb0205.pp svneol=native#text/plain
tests/tbf/tb0206.pp svneol=native#text/plain
tests/tbf/tb0207.pp svneol=native#text/plain
tests/tbf/tb0208.pp svneol=native#text/plain
tests/tbf/tb0209.pp svneol=native#text/plain
tests/tbf/tb0210.pp svneol=native#text/plain
tests/tbf/tb0210a.pp svneol=native#text/plain
tests/tbf/tb0211.pp svneol=native#text/plain
tests/tbf/tb0211a.pp svneol=native#text/plain
tests/tbf/tb0212.pp svneol=native#text/plain
tests/tbf/tb0213.pp svneol=native#text/plain
tests/tbf/tb0214.pp svneol=native#text/plain
tests/tbf/tb0214a.pp svneol=native#text/plain
tests/tbf/tb0215.pp svneol=native#text/plain
tests/tbf/tb0215a.pp svneol=native#text/plain
tests/tbf/tb0215b.pp svneol=native#text/plain
tests/tbf/tb0215c.pp svneol=native#text/plain
tests/tbf/tb0215d.pp svneol=native#text/plain
tests/tbf/tb0215e.pp svneol=native#text/plain
tests/tbf/tb0216.pp svneol=native#text/plain
tests/tbf/tb0217.pp svneol=native#text/plain
tests/tbf/tb0218.pp svneol=native#text/plain
tests/tbf/tb0219.pp svneol=native#text/pascal
tests/tbf/tb0220.pp svneol=native#text/plain
tests/tbf/tb0221.pp svneol=native#text/plain
tests/tbf/tb0222.pp svneol=native#text/plain
tests/tbf/tb0223.pp svneol=native#text/pascal
tests/tbf/ub0115.pp svneol=native#text/plain
tests/tbf/ub0149.pp svneol=native#text/plain
tests/tbf/ub0158a.pp svneol=native#text/plain
tests/tbf/ub0158b.pp svneol=native#text/plain
tests/tbs/tb0001.pp svneol=native#text/plain
tests/tbs/tb0002.pp svneol=native#text/plain
tests/tbs/tb0003.pp svneol=native#text/plain
tests/tbs/tb0004.pp svneol=native#text/plain
tests/tbs/tb0005.pp svneol=native#text/plain
tests/tbs/tb0006.pp svneol=native#text/plain
tests/tbs/tb0007.pp svneol=native#text/plain
tests/tbs/tb0008.pp svneol=native#text/plain
tests/tbs/tb0009.pp svneol=native#text/plain
tests/tbs/tb0010.pp svneol=native#text/plain
tests/tbs/tb0011.pp svneol=native#text/plain
tests/tbs/tb0012.pp svneol=native#text/plain
tests/tbs/tb0013.pp svneol=native#text/plain
tests/tbs/tb0014.pp svneol=native#text/plain
tests/tbs/tb0015.pp svneol=native#text/plain
tests/tbs/tb0016.pp svneol=native#text/plain
tests/tbs/tb0017.pp svneol=native#text/plain
tests/tbs/tb0018.pp svneol=native#text/plain
tests/tbs/tb0019.pp svneol=native#text/plain
tests/tbs/tb0020.pp svneol=native#text/plain
tests/tbs/tb0021.pp svneol=native#text/plain
tests/tbs/tb0022.pp svneol=native#text/plain
tests/tbs/tb0023.pp svneol=native#text/plain
tests/tbs/tb0024.pp svneol=native#text/plain
tests/tbs/tb0025.pp svneol=native#text/plain
tests/tbs/tb0026.pp svneol=native#text/plain
tests/tbs/tb0027.pp svneol=native#text/plain
tests/tbs/tb0028.pp svneol=native#text/plain
tests/tbs/tb0029.pp svneol=native#text/plain
tests/tbs/tb0030.pp svneol=native#text/plain
tests/tbs/tb0031.pp svneol=native#text/plain
tests/tbs/tb0032.pp svneol=native#text/plain
tests/tbs/tb0033.pp svneol=native#text/plain
tests/tbs/tb0034.pp svneol=native#text/plain
tests/tbs/tb0035.pp svneol=native#text/plain
tests/tbs/tb0036.pp svneol=native#text/plain
tests/tbs/tb0037.pp svneol=native#text/plain
tests/tbs/tb0038.pp svneol=native#text/plain
tests/tbs/tb0039.pp svneol=native#text/plain
tests/tbs/tb0040.pp svneol=native#text/plain
tests/tbs/tb0041.pp svneol=native#text/plain
tests/tbs/tb0042.pp svneol=native#text/plain
tests/tbs/tb0043.pp svneol=native#text/plain
tests/tbs/tb0044.pp svneol=native#text/plain
tests/tbs/tb0045.pp svneol=native#text/plain
tests/tbs/tb0046.pp svneol=native#text/plain
tests/tbs/tb0047.pp svneol=native#text/plain
tests/tbs/tb0048.pp svneol=native#text/plain
tests/tbs/tb0049.pp svneol=native#text/plain
tests/tbs/tb0050.pp svneol=native#text/plain
tests/tbs/tb0051.pp svneol=native#text/plain
tests/tbs/tb0052.pp svneol=native#text/plain
tests/tbs/tb0053.pp svneol=native#text/plain
tests/tbs/tb0054.pp svneol=native#text/plain
tests/tbs/tb0055.pp svneol=native#text/plain
tests/tbs/tb0056.pp svneol=native#text/plain
tests/tbs/tb0057.pp svneol=native#text/plain
tests/tbs/tb0058.pp svneol=native#text/plain
tests/tbs/tb0059.pp svneol=native#text/plain
tests/tbs/tb0060.pp svneol=native#text/plain
tests/tbs/tb0062.pp svneol=native#text/plain
tests/tbs/tb0063.pp svneol=native#text/plain
tests/tbs/tb0064.pp svneol=native#text/plain
tests/tbs/tb0065.pp svneol=native#text/plain
tests/tbs/tb0066.pp svneol=native#text/plain
tests/tbs/tb0067.pp svneol=native#text/plain
tests/tbs/tb0068.pp svneol=native#text/plain
tests/tbs/tb0069.pp svneol=native#text/plain
tests/tbs/tb0070.pp svneol=native#text/plain
tests/tbs/tb0071.pp svneol=native#text/plain
tests/tbs/tb0072.pp svneol=native#text/plain
tests/tbs/tb0073.pp svneol=native#text/plain
tests/tbs/tb0074.pp svneol=native#text/plain
tests/tbs/tb0075.pp svneol=native#text/plain
tests/tbs/tb0076.pp svneol=native#text/plain
tests/tbs/tb0077.pp svneol=native#text/plain
tests/tbs/tb0078.pp svneol=native#text/plain
tests/tbs/tb0079.pp svneol=native#text/plain
tests/tbs/tb0080.pp svneol=native#text/plain
tests/tbs/tb0081.pp svneol=native#text/plain
tests/tbs/tb0082.pp svneol=native#text/plain
tests/tbs/tb0083.pp svneol=native#text/plain
tests/tbs/tb0084.pp svneol=native#text/plain
tests/tbs/tb0085.pp svneol=native#text/plain
tests/tbs/tb0086.pp svneol=native#text/plain
tests/tbs/tb0087.pp svneol=native#text/plain
tests/tbs/tb0088.pp svneol=native#text/plain
tests/tbs/tb0089.pp svneol=native#text/plain
tests/tbs/tb0090.pp svneol=native#text/plain
tests/tbs/tb0091.pp svneol=native#text/plain
tests/tbs/tb0092.pp svneol=native#text/plain
tests/tbs/tb0093.pp svneol=native#text/plain
tests/tbs/tb0094.pp svneol=native#text/plain
tests/tbs/tb0095.pp svneol=native#text/plain
tests/tbs/tb0096.pp svneol=native#text/plain
tests/tbs/tb0097.pp svneol=native#text/plain
tests/tbs/tb0098.pp svneol=native#text/plain
tests/tbs/tb0099.pp svneol=native#text/plain
tests/tbs/tb0100.pp svneol=native#text/plain
tests/tbs/tb0101.pp svneol=native#text/plain
tests/tbs/tb0102.pp svneol=native#text/plain
tests/tbs/tb0103.pp svneol=native#text/plain
tests/tbs/tb0104.pp svneol=native#text/plain
tests/tbs/tb0105.pp svneol=native#text/plain
tests/tbs/tb0106.pp svneol=native#text/plain
tests/tbs/tb0107.pp svneol=native#text/plain
tests/tbs/tb0108.pp svneol=native#text/plain
tests/tbs/tb0109.pp svneol=native#text/plain
tests/tbs/tb0110.pp svneol=native#text/plain
tests/tbs/tb0111.pp svneol=native#text/plain
tests/tbs/tb0112.pp svneol=native#text/plain
tests/tbs/tb0113.pp svneol=native#text/plain
tests/tbs/tb0115.pp svneol=native#text/plain
tests/tbs/tb0116.pp svneol=native#text/plain
tests/tbs/tb0117.pp svneol=native#text/plain
tests/tbs/tb0118.pp svneol=native#text/plain
tests/tbs/tb0119.pp svneol=native#text/plain
tests/tbs/tb0120.pp svneol=native#text/plain
tests/tbs/tb0122.pp svneol=native#text/plain
tests/tbs/tb0123.pp svneol=native#text/plain
tests/tbs/tb0124.pp svneol=native#text/plain
tests/tbs/tb0125.pp svneol=native#text/plain
tests/tbs/tb0126.pp svneol=native#text/plain
tests/tbs/tb0127.pp svneol=native#text/plain
tests/tbs/tb0128.pp svneol=native#text/plain
tests/tbs/tb0129.pp svneol=native#text/plain
tests/tbs/tb0130.pp svneol=native#text/plain
tests/tbs/tb0131.pp svneol=native#text/plain
tests/tbs/tb0132.pp svneol=native#text/plain
tests/tbs/tb0133.pp svneol=native#text/plain
tests/tbs/tb0134.pp svneol=native#text/plain
tests/tbs/tb0135.pp svneol=native#text/plain
tests/tbs/tb0136.pp svneol=native#text/plain
tests/tbs/tb0137.pp svneol=native#text/plain
tests/tbs/tb0138.pp svneol=native#text/plain
tests/tbs/tb0139.pp svneol=native#text/plain
tests/tbs/tb0140.pp svneol=native#text/plain
tests/tbs/tb0141.pp svneol=native#text/plain
tests/tbs/tb0142.pp svneol=native#text/plain
tests/tbs/tb0143.pp svneol=native#text/plain
tests/tbs/tb0144.pp svneol=native#text/plain
tests/tbs/tb0145.pp svneol=native#text/plain
tests/tbs/tb0146.pp svneol=native#text/plain
tests/tbs/tb0147.pp svneol=native#text/plain
tests/tbs/tb0148.pp svneol=native#text/plain
tests/tbs/tb0149.pp svneol=native#text/plain
tests/tbs/tb0150.pp svneol=native#text/plain
tests/tbs/tb0151.pp svneol=native#text/plain
tests/tbs/tb0152.pp svneol=native#text/plain
tests/tbs/tb0153.pp svneol=native#text/plain
tests/tbs/tb0154.pp svneol=native#text/plain
tests/tbs/tb0155.pp svneol=native#text/plain
tests/tbs/tb0156.pp svneol=native#text/plain
tests/tbs/tb0157.pp svneol=native#text/plain
tests/tbs/tb0158.pp svneol=native#text/plain
tests/tbs/tb0159.pp svneol=native#text/plain
tests/tbs/tb0160.pp svneol=native#text/plain
tests/tbs/tb0161.pp svneol=native#text/plain
tests/tbs/tb0162.pp svneol=native#text/plain
tests/tbs/tb0163.pp svneol=native#text/plain
tests/tbs/tb0164.pp svneol=native#text/plain
tests/tbs/tb0165.pp svneol=native#text/plain
tests/tbs/tb0166.pp svneol=native#text/plain
tests/tbs/tb0167.pp svneol=native#text/plain
tests/tbs/tb0168.pp svneol=native#text/plain
tests/tbs/tb0169.pp svneol=native#text/plain
tests/tbs/tb0170.pp svneol=native#text/plain
tests/tbs/tb0172.pp svneol=native#text/plain
tests/tbs/tb0172a.pp svneol=native#text/plain
tests/tbs/tb0173.pp svneol=native#text/plain
tests/tbs/tb0174.pp svneol=native#text/plain
tests/tbs/tb0175.pp svneol=native#text/plain
tests/tbs/tb0176.pp svneol=native#text/plain
tests/tbs/tb0177.pp svneol=native#text/plain
tests/tbs/tb0178.pp svneol=native#text/plain
tests/tbs/tb0179.pp svneol=native#text/plain
tests/tbs/tb0181.pp svneol=native#text/plain
tests/tbs/tb0182.pp svneol=native#text/plain
tests/tbs/tb0183.pp svneol=native#text/plain
tests/tbs/tb0184.pp svneol=native#text/plain
tests/tbs/tb0185.pp svneol=native#text/plain
tests/tbs/tb0186.pp svneol=native#text/plain
tests/tbs/tb0187.pp svneol=native#text/plain
tests/tbs/tb0188.pp svneol=native#text/plain
tests/tbs/tb0188a.pp svneol=native#text/plain
tests/tbs/tb0189.pp svneol=native#text/plain
tests/tbs/tb0190.pp svneol=native#text/plain
tests/tbs/tb0191.pp svneol=native#text/plain
tests/tbs/tb0192.pp svneol=native#text/plain
tests/tbs/tb0193.pp svneol=native#text/plain
tests/tbs/tb0194.pp svneol=native#text/plain
tests/tbs/tb0195.pp svneol=native#text/plain
tests/tbs/tb0196.pp svneol=native#text/plain
tests/tbs/tb0197.pp svneol=native#text/plain
tests/tbs/tb0198.pp svneol=native#text/plain
tests/tbs/tb0199.pp svneol=native#text/plain
tests/tbs/tb0200.pp svneol=native#text/plain
tests/tbs/tb0201.pp svneol=native#text/plain
tests/tbs/tb0202.pp svneol=native#text/plain
tests/tbs/tb0203.pp svneol=native#text/plain
tests/tbs/tb0204.pp svneol=native#text/plain
tests/tbs/tb0205.pp svneol=native#text/plain
tests/tbs/tb0207.pp svneol=native#text/plain
tests/tbs/tb0208.pp svneol=native#text/plain
tests/tbs/tb0209.pp svneol=native#text/plain
tests/tbs/tb0210.pp svneol=native#text/plain
tests/tbs/tb0211.pp svneol=native#text/plain
tests/tbs/tb0212.pp svneol=native#text/plain
tests/tbs/tb0213.pp svneol=native#text/plain
tests/tbs/tb0214.pp svneol=native#text/plain
tests/tbs/tb0215.pp svneol=native#text/plain
tests/tbs/tb0216.pp svneol=native#text/plain
tests/tbs/tb0217.pp svneol=native#text/plain
tests/tbs/tb0218.pp svneol=native#text/plain
tests/tbs/tb0219.pp svneol=native#text/plain
tests/tbs/tb0220.pp svneol=native#text/plain
tests/tbs/tb0221.pp svneol=native#text/plain
tests/tbs/tb0222.pp svneol=native#text/plain
tests/tbs/tb0224.pp svneol=native#text/plain
tests/tbs/tb0225.pp svneol=native#text/plain
tests/tbs/tb0226.pp svneol=native#text/plain
tests/tbs/tb0227.pp svneol=native#text/plain
tests/tbs/tb0228.pp svneol=native#text/plain
tests/tbs/tb0229.pp svneol=native#text/plain
tests/tbs/tb0230.pp svneol=native#text/plain
tests/tbs/tb0231.pp svneol=native#text/plain
tests/tbs/tb0232.pp svneol=native#text/plain
tests/tbs/tb0233.pp svneol=native#text/plain
tests/tbs/tb0234.pp svneol=native#text/plain
tests/tbs/tb0235.pp svneol=native#text/plain
tests/tbs/tb0236.pp svneol=native#text/plain
tests/tbs/tb0237.pp svneol=native#text/plain
tests/tbs/tb0238.pp svneol=native#text/plain
tests/tbs/tb0239.pp svneol=native#text/plain
tests/tbs/tb0240.pp svneol=native#text/plain
tests/tbs/tb0241.pp svneol=native#text/plain
tests/tbs/tb0241b.pp svneol=native#text/plain
tests/tbs/tb0242.pp svneol=native#text/plain
tests/tbs/tb0243.pp svneol=native#text/plain
tests/tbs/tb0244.pp svneol=native#text/plain
tests/tbs/tb0245.pp svneol=native#text/plain
tests/tbs/tb0246.pp svneol=native#text/plain
tests/tbs/tb0247.pp svneol=native#text/plain
tests/tbs/tb0248.pp svneol=native#text/plain
tests/tbs/tb0249.pp svneol=native#text/plain
tests/tbs/tb0250.pp svneol=native#text/plain
tests/tbs/tb0251.pp svneol=native#text/plain
tests/tbs/tb0252.pp svneol=native#text/plain
tests/tbs/tb0254.pp svneol=native#text/plain
tests/tbs/tb0255.pp svneol=native#text/plain
tests/tbs/tb0256.pp svneol=native#text/plain
tests/tbs/tb0257.pp svneol=native#text/plain
tests/tbs/tb0258.pp svneol=native#text/plain
tests/tbs/tb0259.pp svneol=native#text/plain
tests/tbs/tb0260.pp svneol=native#text/plain
tests/tbs/tb0261.pp svneol=native#text/plain
tests/tbs/tb0262.pp svneol=native#text/plain
tests/tbs/tb0263.pp svneol=native#text/plain
tests/tbs/tb0264.pp svneol=native#text/plain
tests/tbs/tb0265.pp svneol=native#text/plain
tests/tbs/tb0267.pp svneol=native#text/plain
tests/tbs/tb0268.pp svneol=native#text/plain
tests/tbs/tb0269.pp svneol=native#text/plain
tests/tbs/tb0270.pp svneol=native#text/plain
tests/tbs/tb0271.pp svneol=native#text/plain
tests/tbs/tb0272.pp svneol=native#text/plain
tests/tbs/tb0273.pp svneol=native#text/plain
tests/tbs/tb0274.pp svneol=native#text/plain
tests/tbs/tb0275.pp svneol=native#text/plain
tests/tbs/tb0276.pp svneol=native#text/plain
tests/tbs/tb0277.pp svneol=native#text/plain
tests/tbs/tb0278.pp svneol=native#text/plain
tests/tbs/tb0279.pp svneol=native#text/plain
tests/tbs/tb0280.pp svneol=native#text/plain
tests/tbs/tb0281.pp svneol=native#text/plain
tests/tbs/tb0282.pp svneol=native#text/plain
tests/tbs/tb0283.pp svneol=native#text/plain
tests/tbs/tb0284.pp svneol=native#text/plain
tests/tbs/tb0285.pp svneol=native#text/plain
tests/tbs/tb0286.pp svneol=native#text/plain
tests/tbs/tb0287.pp svneol=native#text/plain
tests/tbs/tb0288.pp svneol=native#text/plain
tests/tbs/tb0289.pp svneol=native#text/plain
tests/tbs/tb0290.pp svneol=native#text/plain
tests/tbs/tb0292.pp svneol=native#text/plain
tests/tbs/tb0293.pp svneol=native#text/plain
tests/tbs/tb0294.pp svneol=native#text/plain
tests/tbs/tb0295.pp svneol=native#text/plain
tests/tbs/tb0296.pp svneol=native#text/plain
tests/tbs/tb0298.pp svneol=native#text/plain
tests/tbs/tb0299.pp svneol=native#text/plain
tests/tbs/tb0300.pp svneol=native#text/plain
tests/tbs/tb0301.pp svneol=native#text/plain
tests/tbs/tb0302.pp svneol=native#text/plain
tests/tbs/tb0303.pp svneol=native#text/plain
tests/tbs/tb0304.pp svneol=native#text/plain
tests/tbs/tb0305.pp svneol=native#text/plain
tests/tbs/tb0306.pp svneol=native#text/plain
tests/tbs/tb0308.pp svneol=native#text/plain
tests/tbs/tb0309.pp svneol=native#text/plain
tests/tbs/tb0310.pp svneol=native#text/plain
tests/tbs/tb0311.pp svneol=native#text/plain
tests/tbs/tb0312.pp svneol=native#text/plain
tests/tbs/tb0313.pp svneol=native#text/plain
tests/tbs/tb0314.pp svneol=native#text/plain
tests/tbs/tb0315.pp svneol=native#text/plain
tests/tbs/tb0316.pp svneol=native#text/plain
tests/tbs/tb0317.pp svneol=native#text/plain
tests/tbs/tb0318.pp svneol=native#text/plain
tests/tbs/tb0319.pp svneol=native#text/plain
tests/tbs/tb0320.pp svneol=native#text/plain
tests/tbs/tb0321.pp svneol=native#text/plain
tests/tbs/tb0322.pp svneol=native#text/plain
tests/tbs/tb0323.pp svneol=native#text/plain
tests/tbs/tb0324.pp svneol=native#text/plain
tests/tbs/tb0325.pp svneol=native#text/plain
tests/tbs/tb0326.pp svneol=native#text/plain
tests/tbs/tb0327.pp svneol=native#text/plain
tests/tbs/tb0328.pp svneol=native#text/plain
tests/tbs/tb0329.pp svneol=native#text/plain
tests/tbs/tb0331.pp svneol=native#text/plain
tests/tbs/tb0332.pp svneol=native#text/plain
tests/tbs/tb0333.pp svneol=native#text/plain
tests/tbs/tb0334.pp svneol=native#text/plain
tests/tbs/tb0335.pp svneol=native#text/plain
tests/tbs/tb0336.pp svneol=native#text/plain
tests/tbs/tb0337.pp svneol=native#text/plain
tests/tbs/tb0338.pp svneol=native#text/plain
tests/tbs/tb0339.pp svneol=native#text/plain
tests/tbs/tb0340.pp svneol=native#text/plain
tests/tbs/tb0341.pp svneol=native#text/plain
tests/tbs/tb0342.pp svneol=native#text/plain
tests/tbs/tb0343.pp svneol=native#text/plain
tests/tbs/tb0344.pp svneol=native#text/plain
tests/tbs/tb0345.pp svneol=native#text/plain
tests/tbs/tb0346.pp svneol=native#text/plain
tests/tbs/tb0347.pp svneol=native#text/plain
tests/tbs/tb0348.pp svneol=native#text/plain
tests/tbs/tb0349.pp svneol=native#text/plain
tests/tbs/tb0350.pp svneol=native#text/plain
tests/tbs/tb0351.pp svneol=native#text/plain
tests/tbs/tb0352.pp svneol=native#text/plain
tests/tbs/tb0353.pp svneol=native#text/plain
tests/tbs/tb0354.pp svneol=native#text/plain
tests/tbs/tb0355.pp svneol=native#text/plain
tests/tbs/tb0356.pp svneol=native#text/plain
tests/tbs/tb0357.pp svneol=native#text/plain
tests/tbs/tb0358.pp svneol=native#text/plain
tests/tbs/tb0359.pp svneol=native#text/plain
tests/tbs/tb0360.pp svneol=native#text/plain
tests/tbs/tb0361.pp svneol=native#text/plain
tests/tbs/tb0362.pp svneol=native#text/plain
tests/tbs/tb0363.pp svneol=native#text/plain
tests/tbs/tb0364.pp svneol=native#text/plain
tests/tbs/tb0365.pp svneol=native#text/plain
tests/tbs/tb0366.pp svneol=native#text/plain
tests/tbs/tb0367.pp svneol=native#text/plain
tests/tbs/tb0368.pp svneol=native#text/plain
tests/tbs/tb0369.pp svneol=native#text/plain
tests/tbs/tb0370.pp svneol=native#text/plain
tests/tbs/tb0371.pp svneol=native#text/plain
tests/tbs/tb0372.pp svneol=native#text/plain
tests/tbs/tb0373.pp svneol=native#text/plain
tests/tbs/tb0374.pp svneol=native#text/plain
tests/tbs/tb0375.pp svneol=native#text/plain
tests/tbs/tb0376.pp svneol=native#text/plain
tests/tbs/tb0377.pp svneol=native#text/plain
tests/tbs/tb0378.pp svneol=native#text/plain
tests/tbs/tb0380.pp svneol=native#text/plain
tests/tbs/tb0381.pp svneol=native#text/plain
tests/tbs/tb0382.pp svneol=native#text/plain
tests/tbs/tb0383.pp svneol=native#text/plain
tests/tbs/tb0384.pp svneol=native#text/plain
tests/tbs/tb0385.pp svneol=native#text/plain
tests/tbs/tb0386.pp svneol=native#text/plain
tests/tbs/tb0387.pp svneol=native#text/plain
tests/tbs/tb0388.pp svneol=native#text/plain
tests/tbs/tb0389.pp svneol=native#text/plain
tests/tbs/tb0390.pp svneol=native#text/plain
tests/tbs/tb0391.pp svneol=native#text/plain
tests/tbs/tb0392.pp svneol=native#text/plain
tests/tbs/tb0393.pp svneol=native#text/plain
tests/tbs/tb0394.pp svneol=native#text/plain
tests/tbs/tb0396.pp svneol=native#text/plain
tests/tbs/tb0397.pp svneol=native#text/plain
tests/tbs/tb0398.pp svneol=native#text/plain
tests/tbs/tb0399.pp svneol=native#text/plain
tests/tbs/tb0400.pp svneol=native#text/plain
tests/tbs/tb0401.pp svneol=native#text/plain
tests/tbs/tb0402.pp svneol=native#text/plain
tests/tbs/tb0403.pp svneol=native#text/plain
tests/tbs/tb0404.pp svneol=native#text/plain
tests/tbs/tb0405.pp svneol=native#text/plain
tests/tbs/tb0406.pp svneol=native#text/plain
tests/tbs/tb0407.pp svneol=native#text/plain
tests/tbs/tb0408.pp svneol=native#text/plain
tests/tbs/tb0409.pp svneol=native#text/plain
tests/tbs/tb0410.pp svneol=native#text/plain
tests/tbs/tb0411.pp svneol=native#text/plain
tests/tbs/tb0412.pp svneol=native#text/plain
tests/tbs/tb0413.pp svneol=native#text/plain
tests/tbs/tb0414.pp svneol=native#text/plain
tests/tbs/tb0415.pp svneol=native#text/plain
tests/tbs/tb0416.pp svneol=native#text/plain
tests/tbs/tb0417.pp svneol=native#text/plain
tests/tbs/tb0418.pp svneol=native#text/plain
tests/tbs/tb0419.pp svneol=native#text/plain
tests/tbs/tb0420.pp svneol=native#text/plain
tests/tbs/tb0421.pp svneol=native#text/plain
tests/tbs/tb0422.pp svneol=native#text/plain
tests/tbs/tb0423.pp svneol=native#text/plain
tests/tbs/tb0424.pp svneol=native#text/plain
tests/tbs/tb0425.pp svneol=native#text/plain
tests/tbs/tb0426.pp svneol=native#text/plain
tests/tbs/tb0427.pp svneol=native#text/plain
tests/tbs/tb0428.pp svneol=native#text/plain
tests/tbs/tb0429.pp svneol=native#text/plain
tests/tbs/tb0430.pp svneol=native#text/plain
tests/tbs/tb0431.pp svneol=native#text/plain
tests/tbs/tb0432.pp svneol=native#text/plain
tests/tbs/tb0433.pp svneol=native#text/plain
tests/tbs/tb0433a.pp svneol=native#text/plain
tests/tbs/tb0433b.pp svneol=native#text/plain
tests/tbs/tb0434.pp svneol=native#text/plain
tests/tbs/tb0435.pp svneol=native#text/plain
tests/tbs/tb0436.pp svneol=native#text/plain
tests/tbs/tb0437.pp svneol=native#text/plain
tests/tbs/tb0438.pp svneol=native#text/plain
tests/tbs/tb0439.pp svneol=native#text/plain
tests/tbs/tb0440.pp svneol=native#text/plain
tests/tbs/tb0441.pp svneol=native#text/plain
tests/tbs/tb0442.pp svneol=native#text/plain
tests/tbs/tb0443.pp svneol=native#text/plain
tests/tbs/tb0444.pp svneol=native#text/plain
tests/tbs/tb0445.pp svneol=native#text/plain
tests/tbs/tb0446.pp svneol=native#text/plain
tests/tbs/tb0447.pp svneol=native#text/plain
tests/tbs/tb0447a.pp svneol=native#text/plain
tests/tbs/tb0448.pp svneol=native#text/plain
tests/tbs/tb0449.pp svneol=native#text/plain
tests/tbs/tb0450.pp svneol=native#text/plain
tests/tbs/tb0451.pp svneol=native#text/plain
tests/tbs/tb0453.pp svneol=native#text/plain
tests/tbs/tb0454.pp svneol=native#text/plain
tests/tbs/tb0455.pp svneol=native#text/plain
tests/tbs/tb0456.pp svneol=native#text/plain
tests/tbs/tb0457.pp svneol=native#text/plain
tests/tbs/tb0458.pp svneol=native#text/plain
tests/tbs/tb0459.pp svneol=native#text/plain
tests/tbs/tb0460.pp svneol=native#text/plain
tests/tbs/tb0461.pp svneol=native#text/plain
tests/tbs/tb0462.pp svneol=native#text/plain
tests/tbs/tb0464.pp svneol=native#text/plain
tests/tbs/tb0465.pp svneol=native#text/plain
tests/tbs/tb0466.pp svneol=native#text/plain
tests/tbs/tb0467.pp svneol=native#text/plain
tests/tbs/tb0468.pp svneol=native#text/plain
tests/tbs/tb0469.pp svneol=native#text/plain
tests/tbs/tb0470.pp svneol=native#text/plain
tests/tbs/tb0471.pp svneol=native#text/plain
tests/tbs/tb0472.pp svneol=native#text/plain
tests/tbs/tb0473.pp svneol=native#text/plain
tests/tbs/tb0475.pp svneol=native#text/plain
tests/tbs/tb0476.pp svneol=native#text/plain
tests/tbs/tb0477.pp svneol=native#text/plain
tests/tbs/tb0478.pp svneol=native#text/plain
tests/tbs/tb0479.pp svneol=native#text/plain
tests/tbs/tb0480.pp svneol=native#text/plain
tests/tbs/tb0481.pp svneol=native#text/plain
tests/tbs/tb0482.pp svneol=native#text/plain
tests/tbs/tb0483.pp svneol=native#text/plain
tests/tbs/tb0483u.pp svneol=native#text/plain
tests/tbs/tb0484.pp svneol=native#text/plain
tests/tbs/tb0485.pp svneol=native#text/plain
tests/tbs/tb0486.pp svneol=native#text/plain
tests/tbs/tb0487.pp svneol=native#text/plain
tests/tbs/tb0488a.pp svneol=native#text/plain
tests/tbs/tb0488b.pp svneol=native#text/plain
tests/tbs/tb0489.pp svneol=native#text/plain
tests/tbs/tb0490.pp svneol=native#text/plain
tests/tbs/tb0491.pp svneol=native#text/plain
tests/tbs/tb0492.pp svneol=native#text/plain
tests/tbs/tb0493.pp svneol=native#text/plain
tests/tbs/tb0494.pp svneol=native#text/plain
tests/tbs/tb0495.pp svneol=native#text/plain
tests/tbs/tb0496.pp svneol=native#text/plain
tests/tbs/tb0497a.pp svneol=native#text/plain
tests/tbs/tb0497b.pp svneol=native#text/plain
tests/tbs/tb0497c.pp svneol=native#text/plain
tests/tbs/tb0498.pp svneol=native#text/plain
tests/tbs/tb0499.pp svneol=native#text/plain
tests/tbs/tb0500.pp svneol=native#text/plain
tests/tbs/tb0501.pp svneol=native#text/plain
tests/tbs/tb0502.pp svneol=native#text/plain
tests/tbs/tb0503.pp svneol=native#text/plain
tests/tbs/tb0504.pp svneol=native#text/plain
tests/tbs/tb0505.pp svneol=native#text/plain
tests/tbs/tb0506.pp svneol=native#text/plain
tests/tbs/tb0507.pp svneol=native#text/plain
tests/tbs/tb0508.pp svneol=native#text/plain
tests/tbs/tb0509.pp svneol=native#text/plain
tests/tbs/tb0510.pp svneol=native#text/plain
tests/tbs/tb0511.pp svneol=native#text/plain
tests/tbs/tb0512.pp svneol=native#text/plain
tests/tbs/tb0513.pp svneol=native#text/plain
tests/tbs/tb0514.pp svneol=native#text/plain
tests/tbs/tb0515.pp svneol=native#text/plain
tests/tbs/tb0516.pp svneol=native#text/plain
tests/tbs/tb0517.pp svneol=native#text/plain
tests/tbs/tb0518.pp svneol=native#text/plain
tests/tbs/tb0519.pp svneol=native#text/plain
tests/tbs/tb0520.pp svneol=native#text/plain
tests/tbs/tb0521.pp svneol=native#text/plain
tests/tbs/tb0522.pp svneol=native#text/plain
tests/tbs/tb0523.pp svneol=native#text/plain
tests/tbs/tb0524.pp svneol=native#text/plain
tests/tbs/tb0525.pp svneol=native#text/plain
tests/tbs/tb0526.pp svneol=native#text/plain
tests/tbs/tb0527.pp svneol=native#text/plain
tests/tbs/tb0528.pp svneol=native#text/plain
tests/tbs/tb0529.pp svneol=native#text/plain
tests/tbs/tb0530.pp svneol=native#text/plain
tests/tbs/tb0531.pp svneol=native#text/plain
tests/tbs/tb0532.pp svneol=native#text/plain
tests/tbs/tb0533.pp svneol=native#text/plain
tests/tbs/tb0534.pp svneol=native#text/plain
tests/tbs/tb0535.pp svneol=native#text/plain
tests/tbs/tb0536.pp svneol=native#text/plain
tests/tbs/tb0537.pp svneol=native#text/plain
tests/tbs/tb0538.pp svneol=native#text/plain
tests/tbs/tb0539.pp svneol=native#text/plain
tests/tbs/tb0540.pp svneol=native#text/plain
tests/tbs/tb0541.pp svneol=native#text/plain
tests/tbs/tb0542.pp svneol=native#text/plain
tests/tbs/tb0543.pp svneol=native#text/plain
tests/tbs/tb0544.pp svneol=native#text/plain
tests/tbs/tb0545.pp svneol=native#text/plain
tests/tbs/tb0546.pp svneol=native#text/plain
tests/tbs/tb0547.pp svneol=native#text/plain
tests/tbs/tb0548.pp svneol=native#text/plain
tests/tbs/tb0549.pp svneol=native#text/plain
tests/tbs/tb0550.pp svneol=native#text/plain
tests/tbs/tb0550a.pp svneol=native#text/plain
tests/tbs/tb0550b.pp svneol=native#text/plain
tests/tbs/tb0551.pp svneol=native#text/plain
tests/tbs/tb0552.pp svneol=native#text/plain
tests/tbs/tb0553.pp svneol=native#text/plain
tests/tbs/tb0554.pp svneol=native#text/plain
tests/tbs/tb0555.pp svneol=native#text/plain
tests/tbs/tb0556.pp svneol=native#text/plain
tests/tbs/tb0557.pp svneol=native#text/plain
tests/tbs/tb0558.pp svneol=native#text/plain
tests/tbs/tb0559.pp svneol=native#text/plain
tests/tbs/tb0560.pp svneol=native#text/plain
tests/tbs/tb0561a.pp svneol=native#text/plain
tests/tbs/tb0561b.pp svneol=native#text/plain
tests/tbs/tb0564.pp svneol=native#text/plain
tests/tbs/tb0565.pp svneol=native#text/plain
tests/tbs/tb0566.pp svneol=native#text/plain
tests/tbs/tb0567.pp svneol=native#text/plain
tests/tbs/tb0568.pp svneol=native#text/plain
tests/tbs/tb0569.pp svneol=native#text/pascal
tests/tbs/tb0570.pp svneol=native#text/plain
tests/tbs/tb0571.pas svneol=native#text/plain
tests/tbs/tb0572.pp svneol=native#text/plain
tests/tbs/tb0573.pp svneol=native#text/plain
tests/tbs/tb0574.pp svneol=native#text/pascal
tests/tbs/tb0575.pp svneol=native#text/plain
tests/tbs/tb0576.pp svneol=native#text/plain
tests/tbs/tb0577.pp svneol=native#text/plain
tests/tbs/tb0577a.pp svneol=native#text/plain
tests/tbs/tb0578.pp svneol=native#text/pascal
tests/tbs/tb0579.pp svneol=native#text/pascal
tests/tbs/tb0580.pp svneol=native#text/pascal
tests/tbs/tb0581.pp svneol=native#text/plain
tests/tbs/tb0582.pp svneol=native#text/pascal
tests/tbs/tb0583.pp svneol=native#text/plain
tests/tbs/tb0583a.pp svneol=native#text/plain
tests/tbs/tb205.pp svneol=native#text/plain
tests/tbs/ub0060.pp svneol=native#text/plain
tests/tbs/ub0069.pp svneol=native#text/plain
tests/tbs/ub0119.pp svneol=native#text/plain
tests/tbs/ub0120.pp svneol=native#text/plain
tests/tbs/ub0129.pp svneol=native#text/plain
tests/tbs/ub0133.pp svneol=native#text/plain
tests/tbs/ub0150.pp svneol=native#text/plain
tests/tbs/ub0155.pp svneol=native#text/plain
tests/tbs/ub0170.pp svneol=native#text/plain
tests/tbs/ub0179.pp svneol=native#text/plain
tests/tbs/ub0222.pp svneol=native#text/plain
tests/tbs/ub0265.pp svneol=native#text/plain
tests/tbs/ub0292.pp svneol=native#text/plain
tests/tbs/ub0308.pp svneol=native#text/plain
tests/tbs/ub0313.pp svneol=native#text/plain
tests/tbs/ub0339.pp svneol=native#text/plain
tests/tbs/ub0342a.pp svneol=native#text/plain
tests/tbs/ub0342b.pp svneol=native#text/plain
tests/tbs/ub0366.pp svneol=native#text/plain
tests/tbs/ub0380.pp svneol=native#text/plain
tests/tbs/ub0386.pp svneol=native#text/plain
tests/tbs/ub0391.pp svneol=native#text/plain
tests/tbs/ub0406.pp svneol=native#text/plain
tests/tbs/ub0421a.pp svneol=native#text/plain
tests/tbs/ub0421b.pp svneol=native#text/plain
tests/tbs/ub0421c.pp svneol=native#text/plain
tests/tbs/ub0426.pp svneol=native#text/plain
tests/tbs/ub0437a.pp svneol=native#text/plain
tests/tbs/ub0437b.pp svneol=native#text/plain
tests/tbs/ub0437c.pp svneol=native#text/plain
tests/tbs/ub0440.pp svneol=native#text/plain
tests/tbs/ub0461.pp svneol=native#text/plain
tests/tbs/ub0489.pp svneol=native#text/plain
tests/tbs/ub0489b.pp svneol=native#text/plain
tests/tbs/ub0506.pp svneol=native#text/plain
tests/tbs/ub0569.pp svneol=native#text/pascal
tests/test/README.txt svneol=native#text/plain
tests/test/alglib/t_testconvunit.pp svneol=native#text/plain
tests/test/alglib/t_testcorrunit.pp svneol=native#text/plain
tests/test/alglib/t_testfftunit.pp svneol=native#text/plain
tests/test/alglib/t_testfhtunit.pp svneol=native#text/plain
tests/test/alglib/u_ap.pp svneol=native#text/plain
tests/test/alglib/u_conv.pp svneol=native#text/plain
tests/test/alglib/u_corr.pp svneol=native#text/plain
tests/test/alglib/u_fft.pp svneol=native#text/plain
tests/test/alglib/u_fht.pp svneol=native#text/plain
tests/test/alglib/u_ftbase.pp svneol=native#text/plain
tests/test/alglib/u_testconvunit.pp svneol=native#text/plain
tests/test/alglib/u_testcorrunit.pp svneol=native#text/plain
tests/test/alglib/u_testfftunit.pp svneol=native#text/plain
tests/test/alglib/u_testfhtunit.pp svneol=native#text/plain
tests/test/cg/cdecl/taoc1.pp svneol=native#text/plain
tests/test/cg/cdecl/taoc2.pp svneol=native#text/plain
tests/test/cg/cdecl/taoc3.pp svneol=native#text/plain
tests/test/cg/cdecl/taoc4.pp svneol=native#text/plain
tests/test/cg/cdecl/taoc5.pp svneol=native#text/plain
tests/test/cg/cdecl/taoc6.pp svneol=native#text/plain
tests/test/cg/obj/aix/powerpc/cpptcl1.o -text
tests/test/cg/obj/aix/powerpc/cpptcl2.o -text
tests/test/cg/obj/aix/powerpc/ctest.o -text
tests/test/cg/obj/aix/powerpc/tcext3.o -text
tests/test/cg/obj/aix/powerpc/tcext4.o -text
tests/test/cg/obj/aix/powerpc/tcext5.o -text
tests/test/cg/obj/aix/powerpc/tcext6.o -text
tests/test/cg/obj/aix/powerpc64/cpptcl1.o -text
tests/test/cg/obj/aix/powerpc64/cpptcl2.o -text
tests/test/cg/obj/aix/powerpc64/ctest.o -text
tests/test/cg/obj/aix/powerpc64/tcext3.o -text
tests/test/cg/obj/aix/powerpc64/tcext4.o -text
tests/test/cg/obj/aix/powerpc64/tcext5.o -text
tests/test/cg/obj/aix/powerpc64/tcext6.o -text
tests/test/cg/obj/amiga/m68k/ctest.o -text
tests/test/cg/obj/beos/i386/ctest.o -text
tests/test/cg/obj/beos/i386/tcext3.o -text
tests/test/cg/obj/beos/i386/tcext4.o -text
tests/test/cg/obj/beos/i386/tcext5.o -text
tests/test/cg/obj/cpptcl1.cpp svneol=native#text/plain
tests/test/cg/obj/cpptcl2.cpp svneol=native#text/plain
tests/test/cg/obj/darwin/arm/cpptcl1.o -text
tests/test/cg/obj/darwin/arm/cpptcl2.o -text
tests/test/cg/obj/darwin/arm/ctest.o -text
tests/test/cg/obj/darwin/arm/tcext3.o -text
tests/test/cg/obj/darwin/arm/tcext4.o -text
tests/test/cg/obj/darwin/arm/tcext5.o -text
tests/test/cg/obj/darwin/arm/tcext6.o -text
tests/test/cg/obj/darwin/i386/cpptcl1.o -text
tests/test/cg/obj/darwin/i386/cpptcl2.o -text
tests/test/cg/obj/darwin/i386/ctest.o -text
tests/test/cg/obj/darwin/i386/tcext3.o -text
tests/test/cg/obj/darwin/i386/tcext4.o -text
tests/test/cg/obj/darwin/i386/tcext5.o -text
tests/test/cg/obj/darwin/i386/tcext6.o -text
tests/test/cg/obj/darwin/powerpc/cpptcl1.o -text
tests/test/cg/obj/darwin/powerpc/cpptcl2.o -text
tests/test/cg/obj/darwin/powerpc/ctest.o -text
tests/test/cg/obj/darwin/powerpc/tcext3.o -text
tests/test/cg/obj/darwin/powerpc/tcext4.o -text
tests/test/cg/obj/darwin/powerpc/tcext5.o -text
tests/test/cg/obj/darwin/powerpc/tcext6.o -text
tests/test/cg/obj/darwin/powerpc64/cpptcl1.o -text
tests/test/cg/obj/darwin/powerpc64/cpptcl2.o -text
tests/test/cg/obj/darwin/powerpc64/ctest.o -text
tests/test/cg/obj/darwin/powerpc64/tcext3.o -text
tests/test/cg/obj/darwin/powerpc64/tcext4.o -text
tests/test/cg/obj/darwin/powerpc64/tcext5.o -text
tests/test/cg/obj/darwin/powerpc64/tcext6.o -text
tests/test/cg/obj/darwin/x86_64/cpptcl1.o -text
tests/test/cg/obj/darwin/x86_64/cpptcl2.o -text
tests/test/cg/obj/darwin/x86_64/ctest.o -text
tests/test/cg/obj/darwin/x86_64/tcext3.o -text
tests/test/cg/obj/darwin/x86_64/tcext4.o -text
tests/test/cg/obj/darwin/x86_64/tcext5.o -text
tests/test/cg/obj/darwin/x86_64/tcext6.o -text
tests/test/cg/obj/freebsd/i386/cpptcl1.o -text svneol=unset#application/x-object
tests/test/cg/obj/freebsd/i386/cpptcl2.o -text svneol=unset#application/x-object
tests/test/cg/obj/freebsd/i386/ctest.o -text
tests/test/cg/obj/freebsd/i386/tcext3.o -text
tests/test/cg/obj/freebsd/i386/tcext4.o -text
tests/test/cg/obj/freebsd/i386/tcext5.o -text
tests/test/cg/obj/freebsd/i386/tcext6.o -text svneol=unset#application/x-object
tests/test/cg/obj/freebsd/x86_64/cpptcl1.o -text
tests/test/cg/obj/freebsd/x86_64/cpptcl2.o -text
tests/test/cg/obj/freebsd/x86_64/ctest.o -text
tests/test/cg/obj/freebsd/x86_64/tcext3.o -text
tests/test/cg/obj/freebsd/x86_64/tcext4.o -text
tests/test/cg/obj/freebsd/x86_64/tcext5.o -text
tests/test/cg/obj/freebsd/x86_64/tcext6.o -text
tests/test/cg/obj/go32v2/i386/cpptcl1.o -text
tests/test/cg/obj/go32v2/i386/cpptcl2.o -text
tests/test/cg/obj/go32v2/i386/ctest.o -text
tests/test/cg/obj/go32v2/i386/tcext3.o -text
tests/test/cg/obj/go32v2/i386/tcext4.o -text
tests/test/cg/obj/go32v2/i386/tcext5.o -text
tests/test/cg/obj/go32v2/i386/tcext6.o -text
tests/test/cg/obj/haiku/i386/ctest.o -text
tests/test/cg/obj/haiku/i386/tcext3.o -text
tests/test/cg/obj/haiku/i386/tcext4.o -text
tests/test/cg/obj/haiku/i386/tcext5.o -text
tests/test/cg/obj/linux/arm-eabi/cpptcl1.o -text
tests/test/cg/obj/linux/arm-eabi/cpptcl2.o -text
tests/test/cg/obj/linux/arm-eabi/ctest.o -text
tests/test/cg/obj/linux/arm-eabi/tcext3.o -text
tests/test/cg/obj/linux/arm-eabi/tcext4.o -text
tests/test/cg/obj/linux/arm-eabi/tcext5.o -text
tests/test/cg/obj/linux/arm-eabi/tcext6.o -text
tests/test/cg/obj/linux/arm-gnueabihf/cpptcl1.o -text
tests/test/cg/obj/linux/arm-gnueabihf/cpptcl2.o -text
tests/test/cg/obj/linux/arm-gnueabihf/ctest.o -text
tests/test/cg/obj/linux/arm-gnueabihf/tcext3.o -text
tests/test/cg/obj/linux/arm-gnueabihf/tcext4.o -text
tests/test/cg/obj/linux/arm-gnueabihf/tcext5.o -text
tests/test/cg/obj/linux/arm-gnueabihf/tcext6.o -text
tests/test/cg/obj/linux/arm/ctest.o -text
tests/test/cg/obj/linux/arm/tcext3.o -text
tests/test/cg/obj/linux/arm/tcext4.o -text
tests/test/cg/obj/linux/arm/tcext5.o -text
tests/test/cg/obj/linux/i386/cpptcl1.o -text
tests/test/cg/obj/linux/i386/cpptcl2.o -text
tests/test/cg/obj/linux/i386/ctest.o -text
tests/test/cg/obj/linux/i386/tcext3.o -text
tests/test/cg/obj/linux/i386/tcext4.o -text
tests/test/cg/obj/linux/i386/tcext5.o -text
tests/test/cg/obj/linux/i386/tcext6.o -text
tests/test/cg/obj/linux/m68k/ctest.o -text
tests/test/cg/obj/linux/powerpc/cpptcl1.o -text
tests/test/cg/obj/linux/powerpc/cpptcl2.o -text
tests/test/cg/obj/linux/powerpc/ctest.o -text
tests/test/cg/obj/linux/powerpc/tcext3.o -text
tests/test/cg/obj/linux/powerpc/tcext4.o -text
tests/test/cg/obj/linux/powerpc/tcext5.o -text
tests/test/cg/obj/linux/powerpc/tcext6.o -text
tests/test/cg/obj/linux/powerpc64/cpptcl1.o -text
tests/test/cg/obj/linux/powerpc64/cpptcl2.o -text
tests/test/cg/obj/linux/powerpc64/ctest.o -text
tests/test/cg/obj/linux/powerpc64/tcext3.o -text
tests/test/cg/obj/linux/powerpc64/tcext4.o -text
tests/test/cg/obj/linux/powerpc64/tcext5.o -text
tests/test/cg/obj/linux/powerpc64/tcext6.o -text
tests/test/cg/obj/linux/sparc/cpptcl1.o -text
tests/test/cg/obj/linux/sparc/cpptcl2.o -text
tests/test/cg/obj/linux/sparc/ctest.o -text
tests/test/cg/obj/linux/sparc/tcext3.o -text
tests/test/cg/obj/linux/sparc/tcext4.o -text
tests/test/cg/obj/linux/sparc/tcext5.o -text
tests/test/cg/obj/linux/sparc/tcext6.o -text
tests/test/cg/obj/linux/x86_64/cpptcl1.o -text
tests/test/cg/obj/linux/x86_64/cpptcl2.o -text
tests/test/cg/obj/linux/x86_64/ctest.o -text
tests/test/cg/obj/linux/x86_64/tcext3.o -text
tests/test/cg/obj/linux/x86_64/tcext4.o -text
tests/test/cg/obj/linux/x86_64/tcext5.o -text
tests/test/cg/obj/linux/x86_64/tcext6.o -text
tests/test/cg/obj/macos/powerpc/ctest.o -text
tests/test/cg/obj/netbsd/i386/cpptcl1.o -text
tests/test/cg/obj/netbsd/i386/cpptcl2.o -text
tests/test/cg/obj/netbsd/i386/ctest.o -text
tests/test/cg/obj/netbsd/i386/tcext3.o -text
tests/test/cg/obj/netbsd/i386/tcext4.o -text
tests/test/cg/obj/netbsd/i386/tcext5.o -text
tests/test/cg/obj/netbsd/i386/tcext6.o -text
tests/test/cg/obj/netbsd/m68k/ctest.o -text
tests/test/cg/obj/openbsd/i386/cpptcl1.o -text
tests/test/cg/obj/openbsd/i386/cpptcl2.o -text
tests/test/cg/obj/openbsd/i386/ctest.o -text
tests/test/cg/obj/openbsd/i386/tcext3.o -text
tests/test/cg/obj/openbsd/i386/tcext4.o -text
tests/test/cg/obj/openbsd/i386/tcext5.o -text
tests/test/cg/obj/openbsd/i386/tcext6.o -text
tests/test/cg/obj/openbsd/x86_64/cpptcl1.o -text
tests/test/cg/obj/openbsd/x86_64/cpptcl2.o -text
tests/test/cg/obj/openbsd/x86_64/ctest.o -text
tests/test/cg/obj/openbsd/x86_64/tcext3.o -text
tests/test/cg/obj/openbsd/x86_64/tcext4.o -text
tests/test/cg/obj/openbsd/x86_64/tcext5.o -text
tests/test/cg/obj/openbsd/x86_64/tcext6.o -text
tests/test/cg/obj/os2/i386/ctest.o -text
tests/test/cg/obj/readme.txt svneol=native#text/plain
tests/test/cg/obj/solaris/i386/cpptcl1.o -text
tests/test/cg/obj/solaris/i386/ctest.o -text
tests/test/cg/obj/solaris/i386/tcext3.o -text
tests/test/cg/obj/solaris/i386/tcext4.o -text
tests/test/cg/obj/solaris/i386/tcext5.o -text
tests/test/cg/obj/solaris/sparc/cpptcl1.o -text
tests/test/cg/obj/solaris/sparc/cpptcl2.o -text
tests/test/cg/obj/solaris/sparc/ctest.o -text
tests/test/cg/obj/solaris/sparc/tcext3.o -text svneol=unset#unset
tests/test/cg/obj/solaris/sparc/tcext4.o -text svneol=unset#unset
tests/test/cg/obj/solaris/sparc/tcext5.o -text
tests/test/cg/obj/solaris/sparc/tcext6.o -text
tests/test/cg/obj/solaris/x86_64/cpptcl1.o -text
tests/test/cg/obj/solaris/x86_64/ctest.o -text
tests/test/cg/obj/solaris/x86_64/tcext3.o -text
tests/test/cg/obj/solaris/x86_64/tcext4.o -text
tests/test/cg/obj/solaris/x86_64/tcext5.o -text
tests/test/cg/obj/stdint.h svneol=native#text/plain
tests/test/cg/obj/tcext3.c -text
tests/test/cg/obj/tcext4.c -text
tests/test/cg/obj/tcext5.c -text
tests/test/cg/obj/tcext6.c svneol=native#text/plain
tests/test/cg/obj/win32/i386/cpptcl1.o -text
tests/test/cg/obj/win32/i386/cpptcl2.o -text
tests/test/cg/obj/win32/i386/ctest.o -text
tests/test/cg/obj/win32/i386/tcext3.o -text
tests/test/cg/obj/win32/i386/tcext4.o -text
tests/test/cg/obj/win32/i386/tcext5.o -text
tests/test/cg/obj/win32/i386/tcext6.o -text
tests/test/cg/obj/win64/x86_64/ctest.o -text svneol=unset#unset
tests/test/cg/obj/win64/x86_64/tcext3.o -text svneol=unset#unset
tests/test/cg/obj/win64/x86_64/tcext4.o -text svneol=unset#unset
tests/test/cg/obj/win64/x86_64/tcext5.o -text svneol=unset#unset
tests/test/cg/obj/wince/arm/ctest.o -text
tests/test/cg/obj/wince/arm/tcext3.o -text
tests/test/cg/obj/wince/arm/tcext4.o -text
tests/test/cg/obj/wince/arm/tcext5.o -text
tests/test/cg/ptest.pp svneol=native#text/plain
tests/test/cg/taddbool.pp svneol=native#text/plain
tests/test/cg/taddcard.pp svneol=native#text/plain
tests/test/cg/taddcurr.pp svneol=native#text/plain
tests/test/cg/taddint.pp svneol=native#text/plain
tests/test/cg/taddlong.pp svneol=native#text/plain
tests/test/cg/taddr1.pp svneol=native#text/plain
tests/test/cg/taddr2.pp svneol=native#text/plain
tests/test/cg/taddreal1.pp svneol=native#text/plain
tests/test/cg/taddreal2.pp svneol=native#text/plain
tests/test/cg/taddreal3.pp svneol=native#text/plain
tests/test/cg/taddset.pp svneol=native#text/plain
tests/test/cg/taddset2.pp svneol=native#text/plain
tests/test/cg/taddset3.pp svneol=native#text/plain
tests/test/cg/taddset4.pp svneol=native#text/plain
tests/test/cg/tadint64.pp svneol=native#text/plain
tests/test/cg/tassign1.pp svneol=native#text/plain
tests/test/cg/tassign2.pp svneol=native#text/plain
tests/test/cg/tautom.pp svneol=native#text/plain
tests/test/cg/tcalcla1.pp svneol=native#text/plain
tests/test/cg/tcalcon1.pp svneol=native#text/plain
tests/test/cg/tcalcst1.pp svneol=native#text/plain
tests/test/cg/tcalcst2.pp svneol=native#text/plain
tests/test/cg/tcalcst3.pp svneol=native#text/plain
tests/test/cg/tcalcst4.pp svneol=native#text/plain
tests/test/cg/tcalcst5.pp svneol=native#text/plain
tests/test/cg/tcalcst6.pp svneol=native#text/plain
tests/test/cg/tcalcst7.pp svneol=native#text/plain
tests/test/cg/tcalcst8.pp svneol=native#text/plain
tests/test/cg/tcalext.pp svneol=native#text/plain
tests/test/cg/tcalext3.pp svneol=native#text/plain
tests/test/cg/tcalext4.pp svneol=native#text/plain
tests/test/cg/tcalext5.pp svneol=native#text/plain
tests/test/cg/tcalext6.pp svneol=native#text/plain
tests/test/cg/tcalfun1.pp svneol=native#text/plain
tests/test/cg/tcalfun2.pp svneol=native#text/plain
tests/test/cg/tcalfun3.pp svneol=native#text/plain
tests/test/cg/tcalfun4.pp svneol=native#text/plain
tests/test/cg/tcalfun6.pp svneol=native#text/plain
tests/test/cg/tcalfun7.pp svneol=native#text/plain
tests/test/cg/tcalfun8.pp svneol=native#text/plain
tests/test/cg/tcall1.pp svneol=native#text/plain
tests/test/cg/tcalobj1.pp svneol=native#text/plain
tests/test/cg/tcalobj2.pp svneol=native#text/plain
tests/test/cg/tcalobj3.pp svneol=native#text/plain
tests/test/cg/tcalobj4.pp svneol=native#text/plain
tests/test/cg/tcalobj6.pp svneol=native#text/plain
tests/test/cg/tcalobj7.pp svneol=native#text/plain
tests/test/cg/tcalpext.pp svneol=native#text/plain
tests/test/cg/tcalpvr1.pp svneol=native#text/plain
tests/test/cg/tcalpvr2.pp svneol=native#text/plain
tests/test/cg/tcalpvr3.pp svneol=native#text/plain
tests/test/cg/tcalpvr4.pp svneol=native#text/plain
tests/test/cg/tcalpvr6.pp svneol=native#text/plain
tests/test/cg/tcalpvr7.pp svneol=native#text/plain
tests/test/cg/tcalval1.pp svneol=native#text/plain
tests/test/cg/tcalval10.pp svneol=native#text/plain
tests/test/cg/tcalval2.pp svneol=native#text/plain
tests/test/cg/tcalval3.pp svneol=native#text/plain
tests/test/cg/tcalval4.pp svneol=native#text/plain
tests/test/cg/tcalval5.pp svneol=native#text/plain
tests/test/cg/tcalval7.pp svneol=native#text/plain
tests/test/cg/tcalval8.pp svneol=native#text/plain
tests/test/cg/tcalvar1.pp svneol=native#text/plain
tests/test/cg/tcalvar2.pp svneol=native#text/plain
tests/test/cg/tcalvar3.pp svneol=native#text/plain
tests/test/cg/tcalvar4.pp svneol=native#text/plain
tests/test/cg/tcalvar5.pp svneol=native#text/plain
tests/test/cg/tcalvar6.pp svneol=native#text/plain
tests/test/cg/tcalvar7.pp svneol=native#text/plain
tests/test/cg/tcalvar8.pp svneol=native#text/plain
tests/test/cg/tcase.pp svneol=native#text/plain
tests/test/cg/tcase2.pp svneol=native#text/plain
tests/test/cg/tclacla1.pp svneol=native#text/plain
tests/test/cg/tclasize.pp svneol=native#text/plain
tests/test/cg/tclatype.pp svneol=native#text/plain
tests/test/cg/tcnvint1.pp svneol=native#text/plain
tests/test/cg/tcnvint2.pp svneol=native#text/plain
tests/test/cg/tcnvint3.pp svneol=native#text/plain
tests/test/cg/tcnvint4.pp svneol=native#text/plain
tests/test/cg/tcnvint5.pp svneol=native#text/plain
tests/test/cg/tcnvint6.pp svneol=native#text/plain
tests/test/cg/tcnvptr.pp svneol=native#text/plain
tests/test/cg/tcnvset.pp svneol=native#text/plain
tests/test/cg/tcnvstr1.pp svneol=native#text/plain
tests/test/cg/tcnvstr2.pp svneol=native#text/plain
tests/test/cg/tcnvstr3.pp svneol=native#text/plain
tests/test/cg/tcppcl1.pp svneol=native#text/plain
tests/test/cg/tcppcl2.pp svneol=native#text/plain
tests/test/cg/tctr1.pp svneol=native#text/plain
tests/test/cg/tctr1a.pp svneol=native#text/plain
tests/test/cg/tderef.pp svneol=native#text/plain
tests/test/cg/tdivz1.pp svneol=native#text/plain
tests/test/cg/tdivz2.pp svneol=native#text/plain
tests/test/cg/texit.pp svneol=native#text/plain
tests/test/cg/tfor.pp svneol=native#text/plain
tests/test/cg/tformfnc.pp svneol=native#text/plain
tests/test/cg/tfuncret.pp svneol=native#text/plain
tests/test/cg/tin.pp svneol=native#text/plain
tests/test/cg/tincexc.pp svneol=native#text/plain
tests/test/cg/tinitdon.pp svneol=native#text/plain
tests/test/cg/tis.pp svneol=native#text/plain
tests/test/cg/tldparam.pp svneol=native#text/plain
tests/test/cg/tloadvmt.pp svneol=native#text/plain
tests/test/cg/tlohi.pp svneol=native#text/plain
tests/test/cg/tmanypar.pp svneol=native#text/plain
tests/test/cg/tmoddiv.pp svneol=native#text/plain
tests/test/cg/tmoddiv1.pp svneol=native#text/plain
tests/test/cg/tmoddiv2.pp svneol=native#text/plain
tests/test/cg/tmul3264.pp svneol=native#text/plain
tests/test/cg/tneg.pp svneol=native#text/plain
tests/test/cg/tnot.pp svneol=native#text/plain
tests/test/cg/tobjsiz2.pp svneol=native#text/plain
tests/test/cg/tobjsize.pp svneol=native#text/plain
tests/test/cg/tpara1.pp svneol=native#text/plain
tests/test/cg/tpara2.pp svneol=native#text/plain
tests/test/cg/tpara3.pp svneol=native#text/plain
tests/test/cg/tprintf.pp svneol=native#text/plain
tests/test/cg/tprintf2.pp svneol=native#text/plain
tests/test/cg/tprintf3.pp svneol=native#text/plain
tests/test/cg/traise1.pp svneol=native#text/plain
tests/test/cg/traise2.pp svneol=native#text/plain
tests/test/cg/traise3.pp svneol=native#text/plain
tests/test/cg/traise4.pp svneol=native#text/plain
tests/test/cg/traise5.pp svneol=native#text/plain
tests/test/cg/traise6.pp svneol=native#text/plain
tests/test/cg/treadwrt.pp svneol=native#text/plain
tests/test/cg/tsar1.pp svneol=native#text/pascal
tests/test/cg/tshlshr.pp svneol=native#text/plain
tests/test/cg/tstr.pp svneol=native#text/plain
tests/test/cg/tsubst.pp svneol=native#text/plain
tests/test/cg/ttincdec.pp svneol=native#text/plain
tests/test/cg/ttryexc1.pp svneol=native#text/plain
tests/test/cg/ttryfin1.pp svneol=native#text/plain
tests/test/cg/ttryfin2.pp svneol=native#text/plain
tests/test/cg/ttryfin3.pp svneol=native#text/plain
tests/test/cg/ttryfin4.pp svneol=native#text/plain
tests/test/cg/tumin.pp svneol=native#text/plain
tests/test/cg/tvec.pp svneol=native#text/plain
tests/test/cg/uprintf3.pp svneol=native#text/plain
tests/test/cg/variants/ivarol10.pp svneol=native#text/plain
tests/test/cg/variants/ivarol100.pp svneol=native#text/plain
tests/test/cg/variants/ivarol101.pp svneol=native#text/plain
tests/test/cg/variants/ivarol102.pp svneol=native#text/plain
tests/test/cg/variants/ivarol104.pp svneol=native#text/plain
tests/test/cg/variants/ivarol105.pp svneol=native#text/plain
tests/test/cg/variants/ivarol106.pp svneol=native#text/plain
tests/test/cg/variants/ivarol107.pp svneol=native#text/plain
tests/test/cg/variants/ivarol108.pp svneol=native#text/plain
tests/test/cg/variants/ivarol109.pp svneol=native#text/plain
tests/test/cg/variants/ivarol11.pp svneol=native#text/plain
tests/test/cg/variants/ivarol110.pp svneol=native#text/plain
tests/test/cg/variants/ivarol111.pp svneol=native#text/plain
tests/test/cg/variants/ivarol112.pp svneol=native#text/plain
tests/test/cg/variants/ivarol113.pp svneol=native#text/plain
tests/test/cg/variants/ivarol115.pp svneol=native#text/plain
tests/test/cg/variants/ivarol116.pp svneol=native#text/plain
tests/test/cg/variants/ivarol118.pp svneol=native#text/plain
tests/test/cg/variants/ivarol119.pp svneol=native#text/plain
tests/test/cg/variants/ivarol120.pp svneol=native#text/plain
tests/test/cg/variants/ivarol121.pp svneol=native#text/plain
tests/test/cg/variants/ivarol122.pp svneol=native#text/plain
tests/test/cg/variants/ivarol123.pp svneol=native#text/plain
tests/test/cg/variants/ivarol125.pp svneol=native#text/plain
tests/test/cg/variants/ivarol126.pp svneol=native#text/plain
tests/test/cg/variants/ivarol127.pp svneol=native#text/plain
tests/test/cg/variants/ivarol128.pp svneol=native#text/plain
tests/test/cg/variants/ivarol129.pp svneol=native#text/plain
tests/test/cg/variants/ivarol130.pp svneol=native#text/plain
tests/test/cg/variants/ivarol131.pp svneol=native#text/plain
tests/test/cg/variants/ivarol132.pp svneol=native#text/plain
tests/test/cg/variants/ivarol134.pp svneol=native#text/plain
tests/test/cg/variants/ivarol135.pp svneol=native#text/plain
tests/test/cg/variants/ivarol136.pp svneol=native#text/plain
tests/test/cg/variants/ivarol137.pp svneol=native#text/plain
tests/test/cg/variants/ivarol138.pp svneol=native#text/plain
tests/test/cg/variants/ivarol139.pp svneol=native#text/plain
tests/test/cg/variants/ivarol140.pp svneol=native#text/plain
tests/test/cg/variants/ivarol141.pp svneol=native#text/plain
tests/test/cg/variants/ivarol142.pp svneol=native#text/plain
tests/test/cg/variants/ivarol143.pp svneol=native#text/plain
tests/test/cg/variants/ivarol144.pp svneol=native#text/plain
tests/test/cg/variants/ivarol145.pp svneol=native#text/plain
tests/test/cg/variants/ivarol146.pp svneol=native#text/plain
tests/test/cg/variants/ivarol147.pp svneol=native#text/plain
tests/test/cg/variants/ivarol148.pp svneol=native#text/plain
tests/test/cg/variants/ivarol149.pp svneol=native#text/plain
tests/test/cg/variants/ivarol15.pp svneol=native#text/plain
tests/test/cg/variants/ivarol150.pp svneol=native#text/plain
tests/test/cg/variants/ivarol151.pp svneol=native#text/plain
tests/test/cg/variants/ivarol152.pp svneol=native#text/plain
tests/test/cg/variants/ivarol153.pp svneol=native#text/plain
tests/test/cg/variants/ivarol155.pp svneol=native#text/plain
tests/test/cg/variants/ivarol156.pp svneol=native#text/plain
tests/test/cg/variants/ivarol158.pp svneol=native#text/plain
tests/test/cg/variants/ivarol160.pp svneol=native#text/plain
tests/test/cg/variants/ivarol161.pp svneol=native#text/plain
tests/test/cg/variants/ivarol162.pp svneol=native#text/plain
tests/test/cg/variants/ivarol164.pp svneol=native#text/plain
tests/test/cg/variants/ivarol165.pp svneol=native#text/plain
tests/test/cg/variants/ivarol166.pp svneol=native#text/plain
tests/test/cg/variants/ivarol167.pp svneol=native#text/plain
tests/test/cg/variants/ivarol169.pp svneol=native#text/plain
tests/test/cg/variants/ivarol17.pp svneol=native#text/plain
tests/test/cg/variants/ivarol170.pp svneol=native#text/plain
tests/test/cg/variants/ivarol171.pp svneol=native#text/plain
tests/test/cg/variants/ivarol18.pp svneol=native#text/plain
tests/test/cg/variants/ivarol19.pp svneol=native#text/plain
tests/test/cg/variants/ivarol2.pp svneol=native#text/plain
tests/test/cg/variants/ivarol21.pp svneol=native#text/plain
tests/test/cg/variants/ivarol22.pp svneol=native#text/plain
tests/test/cg/variants/ivarol23.pp svneol=native#text/plain
tests/test/cg/variants/ivarol24.pp svneol=native#text/plain
tests/test/cg/variants/ivarol25.pp svneol=native#text/plain
tests/test/cg/variants/ivarol26.pp svneol=native#text/plain
tests/test/cg/variants/ivarol27.pp svneol=native#text/plain
tests/test/cg/variants/ivarol28.pp svneol=native#text/plain
tests/test/cg/variants/ivarol29.pp svneol=native#text/plain
tests/test/cg/variants/ivarol32.pp svneol=native#text/plain
tests/test/cg/variants/ivarol34.pp svneol=native#text/plain
tests/test/cg/variants/ivarol35.pp svneol=native#text/plain
tests/test/cg/variants/ivarol36.pp svneol=native#text/plain
tests/test/cg/variants/ivarol37.pp svneol=native#text/plain
tests/test/cg/variants/ivarol38.pp svneol=native#text/plain
tests/test/cg/variants/ivarol39.pp svneol=native#text/plain
tests/test/cg/variants/ivarol40.pp svneol=native#text/plain
tests/test/cg/variants/ivarol41.pp svneol=native#text/plain
tests/test/cg/variants/ivarol42.pp svneol=native#text/plain
tests/test/cg/variants/ivarol43.pp svneol=native#text/plain
tests/test/cg/variants/ivarol44.pp svneol=native#text/plain
tests/test/cg/variants/ivarol45.pp svneol=native#text/plain
tests/test/cg/variants/ivarol46.pp svneol=native#text/plain
tests/test/cg/variants/ivarol47.pp svneol=native#text/plain
tests/test/cg/variants/ivarol49.pp svneol=native#text/plain
tests/test/cg/variants/ivarol50.pp svneol=native#text/plain
tests/test/cg/variants/ivarol52.pp svneol=native#text/plain
tests/test/cg/variants/ivarol53.pp svneol=native#text/plain
tests/test/cg/variants/ivarol54.pp svneol=native#text/plain
tests/test/cg/variants/ivarol55.pp svneol=native#text/plain
tests/test/cg/variants/ivarol56.pp svneol=native#text/plain
tests/test/cg/variants/ivarol57.pp svneol=native#text/plain
tests/test/cg/variants/ivarol58.pp svneol=native#text/plain
tests/test/cg/variants/ivarol59.pp svneol=native#text/plain
tests/test/cg/variants/ivarol60.pp svneol=native#text/plain
tests/test/cg/variants/ivarol63.pp svneol=native#text/plain
tests/test/cg/variants/ivarol65.pp svneol=native#text/plain
tests/test/cg/variants/ivarol66.pp svneol=native#text/plain
tests/test/cg/variants/ivarol68.pp svneol=native#text/plain
tests/test/cg/variants/ivarol69.pp svneol=native#text/plain
tests/test/cg/variants/ivarol70.pp svneol=native#text/plain
tests/test/cg/variants/ivarol71.pp svneol=native#text/plain
tests/test/cg/variants/ivarol72.pp svneol=native#text/plain
tests/test/cg/variants/ivarol73.pp svneol=native#text/plain
tests/test/cg/variants/ivarol74.pp svneol=native#text/plain
tests/test/cg/variants/ivarol75.pp svneol=native#text/plain
tests/test/cg/variants/ivarol76.pp svneol=native#text/plain
tests/test/cg/variants/ivarol77.pp svneol=native#text/plain
tests/test/cg/variants/ivarol79.pp svneol=native#text/plain
tests/test/cg/variants/ivarol80.pp svneol=native#text/plain
tests/test/cg/variants/ivarol81.pp svneol=native#text/plain
tests/test/cg/variants/ivarol83.pp svneol=native#text/plain
tests/test/cg/variants/ivarol85.pp svneol=native#text/plain
tests/test/cg/variants/ivarol86.pp svneol=native#text/plain
tests/test/cg/variants/ivarol87.pp svneol=native#text/plain
tests/test/cg/variants/ivarol88.pp svneol=native#text/plain
tests/test/cg/variants/ivarol89.pp svneol=native#text/plain
tests/test/cg/variants/ivarol90.pp svneol=native#text/plain
tests/test/cg/variants/ivarol92.pp svneol=native#text/plain
tests/test/cg/variants/ivarol93.pp svneol=native#text/plain
tests/test/cg/variants/ivarol95.pp svneol=native#text/plain
tests/test/cg/variants/ivarol97.pp svneol=native#text/plain
tests/test/cg/variants/ivarol98.pp svneol=native#text/plain
tests/test/cg/variants/ivarol99.pp svneol=native#text/plain
tests/test/cg/variants/tnofalvarol.pp svneol=native#text/plain
tests/test/cg/variants/tvarol1.pp svneol=native#text/plain
tests/test/cg/variants/tvarol103.pp svneol=native#text/plain
tests/test/cg/variants/tvarol114.pp svneol=native#text/plain
tests/test/cg/variants/tvarol117.pp svneol=native#text/plain
tests/test/cg/variants/tvarol12.pp svneol=native#text/plain
tests/test/cg/variants/tvarol124.pp svneol=native#text/plain
tests/test/cg/variants/tvarol13.pp svneol=native#text/plain
tests/test/cg/variants/tvarol133.pp svneol=native#text/plain
tests/test/cg/variants/tvarol14.pp svneol=native#text/plain
tests/test/cg/variants/tvarol154.pp svneol=native#text/plain
tests/test/cg/variants/tvarol157.pp svneol=native#text/plain
tests/test/cg/variants/tvarol159.pp svneol=native#text/plain
tests/test/cg/variants/tvarol16.pp svneol=native#text/plain
tests/test/cg/variants/tvarol163.pp svneol=native#text/plain
tests/test/cg/variants/tvarol168.pp svneol=native#text/plain
tests/test/cg/variants/tvarol20.pp svneol=native#text/plain
tests/test/cg/variants/tvarol3.pp svneol=native#text/plain
tests/test/cg/variants/tvarol30.pp svneol=native#text/plain
tests/test/cg/variants/tvarol31.pp svneol=native#text/plain
tests/test/cg/variants/tvarol33.pp svneol=native#text/plain
tests/test/cg/variants/tvarol4.pp svneol=native#text/plain
tests/test/cg/variants/tvarol48.pp svneol=native#text/plain
tests/test/cg/variants/tvarol5.pp svneol=native#text/plain
tests/test/cg/variants/tvarol51.pp svneol=native#text/plain
tests/test/cg/variants/tvarol6.pp svneol=native#text/plain
tests/test/cg/variants/tvarol61.pp svneol=native#text/plain
tests/test/cg/variants/tvarol62.pp svneol=native#text/plain
tests/test/cg/variants/tvarol64.pp svneol=native#text/plain
tests/test/cg/variants/tvarol67.pp svneol=native#text/plain
tests/test/cg/variants/tvarol7.pp svneol=native#text/plain
tests/test/cg/variants/tvarol78.pp svneol=native#text/plain
tests/test/cg/variants/tvarol8.pp svneol=native#text/plain
tests/test/cg/variants/tvarol82.pp svneol=native#text/plain
tests/test/cg/variants/tvarol84.pp svneol=native#text/plain
tests/test/cg/variants/tvarol9.pp svneol=native#text/plain
tests/test/cg/variants/tvarol91.pp svneol=native#text/plain
tests/test/cg/variants/tvarol94.pp svneol=native#text/plain
tests/test/cg/variants/tvarol96.pp svneol=native#text/plain
tests/test/dumpclass.pp svneol=native#text/plain
tests/test/dumpmethods.pp svneol=native#text/plain
tests/test/jvm/JavaClass.java svneol=native#text/plain
tests/test/jvm/classlist.pp svneol=native#text/plain
tests/test/jvm/classmeth.pp svneol=native#text/plain
tests/test/jvm/forw.pp svneol=native#text/plain
tests/test/jvm/getbit.pp svneol=native#text/plain
tests/test/jvm/nested.pp svneol=native#text/plain
tests/test/jvm/outpara.pp svneol=native#text/plain
tests/test/jvm/sort.pp svneol=native#text/plain
tests/test/jvm/tabs.pp svneol=native#text/plain
tests/test/jvm/taddbool.pp svneol=native#text/plain
tests/test/jvm/taddset.pp svneol=native#text/plain
tests/test/jvm/taddsetint.pp svneol=native#text/plain
tests/test/jvm/tarray2.pp svneol=native#text/plain
tests/test/jvm/tarray3.pp svneol=native#text/plain
tests/test/jvm/tassert.pp svneol=native#text/plain
tests/test/jvm/tbyte.pp svneol=native#text/plain
tests/test/jvm/tbytearrres.pp svneol=native#text/plain
tests/test/jvm/tclassproptest.pp svneol=native#text/plain
tests/test/jvm/tcnvstr1.pp svneol=native#text/plain
tests/test/jvm/tcnvstr3.pp svneol=native#text/plain
tests/test/jvm/tconst.pp svneol=native#text/plain
tests/test/jvm/tdefpara.pp svneol=native#text/plain
tests/test/jvm/tdynarrec.pp svneol=native#text/plain
tests/test/jvm/tdynarrnil.pp svneol=native#text/plain
tests/test/jvm/tenum.pp svneol=native#text/plain
tests/test/jvm/tenum2.pp svneol=native#text/plain
tests/test/jvm/test.pp svneol=native#text/plain
tests/test/jvm/testall.bat -text svneol=native#application/x-bat
tests/test/jvm/testall.sh -text svneol=native#application/x-sh
tests/test/jvm/testansi.pp svneol=native#text/plain
tests/test/jvm/testintf.pp svneol=native#text/plain
tests/test/jvm/testshort.pp svneol=native#text/plain
tests/test/jvm/tformalpara.pp svneol=native#text/plain
tests/test/jvm/tint.pp svneol=native#text/plain
tests/test/jvm/tintstr.pp svneol=native#text/plain
tests/test/jvm/tnestdynarr.pp svneol=native#text/plain
tests/test/jvm/tnestedset.pp svneol=native#text/plain
tests/test/jvm/tnestproc.pp svneol=native#text/plain
tests/test/jvm/topovl.pp svneol=native#text/plain
tests/test/jvm/tprop.pp svneol=native#text/plain
tests/test/jvm/tprop2.pp svneol=native#text/plain
tests/test/jvm/tpvar.pp svneol=native#text/plain
tests/test/jvm/tpvardelphi.pp svneol=native#text/plain
tests/test/jvm/tpvarglobal.pp svneol=native#text/plain
tests/test/jvm/tpvarglobaldelphi.pp svneol=native#text/plain
tests/test/jvm/trange1.pp svneol=native#text/plain
tests/test/jvm/trange2.pp svneol=native#text/plain
tests/test/jvm/trange3.pp svneol=native#text/plain
tests/test/jvm/tset1.pp svneol=native#text/plain
tests/test/jvm/tset3.pp svneol=native#text/plain
tests/test/jvm/tset7.pp svneol=native#text/plain
tests/test/jvm/tsetansistr.pp -text svneol=native#text/plain
tests/test/jvm/tstr.pp svneol=native#text/plain
tests/test/jvm/tstring1.pp svneol=native#text/plain
tests/test/jvm/tstring9.pp svneol=native#text/plain
tests/test/jvm/tstrreal1.pp svneol=native#text/plain
tests/test/jvm/tstrreal2.pp svneol=native#text/plain
tests/test/jvm/tthreadvar.pp svneol=native#text/plain
tests/test/jvm/ttrig.pp svneol=native#text/plain
tests/test/jvm/ttrunc.pp svneol=native#text/plain
tests/test/jvm/tval.inc svneol=native#text/plain
tests/test/jvm/tval.pp svneol=native#text/plain
tests/test/jvm/tval1.pp svneol=native#text/plain
tests/test/jvm/tval2.pp svneol=native#text/plain
tests/test/jvm/tval3.pp svneol=native#text/plain
tests/test/jvm/tval4.pp svneol=native#text/plain
tests/test/jvm/tval5.pp svneol=native#text/plain
tests/test/jvm/tvalc.pp svneol=native#text/plain
tests/test/jvm/tvarpara.pp svneol=native#text/plain
tests/test/jvm/tvirtclmeth.pp svneol=native#text/plain
tests/test/jvm/tw20212.pp svneol=native#text/plain
tests/test/jvm/tw22807.pp -text svneol=native#text/plain
tests/test/jvm/twith.pp svneol=native#text/plain
tests/test/jvm/uenum.pp svneol=native#text/plain
tests/test/jvm/unsupported.pp svneol=native#text/plain
tests/test/lcpref.inc svneol=native#text/plain
tests/test/library/testdll.pp svneol=native#text/plain
tests/test/library/testdll2.pp svneol=native#text/plain
tests/test/library/tlib1a.pp svneol=native#text/plain
tests/test/library/tlib1a2.pp svneol=native#text/plain
tests/test/library/tlib1b.pp svneol=native#text/plain
tests/test/library/tlib2b.pp svneol=native#text/plain
tests/test/library/tlib3a.pp svneol=native#text/plain
tests/test/library/tlib3b.pp svneol=native#text/plain
tests/test/library/tlib3c.pp svneol=native#text/plain
tests/test/library/tlib3d.pp svneol=native#text/plain
tests/test/library/ttdllexe.pp svneol=native#text/plain
tests/test/library/ttdlltest.pp svneol=native#text/plain
tests/test/library/ulib2a.pp svneol=native#text/plain
tests/test/library/ulib2b.pp svneol=native#text/plain
tests/test/opt/README.txt svneol=native#text/plain
tests/test/opt/tarmshift.pp svneol=native#text/plain
tests/test/opt/tcaseopt1.pp svneol=native#text/plain
tests/test/opt/tcmov.pp svneol=native#text/plain
tests/test/opt/tcse1.pp svneol=native#text/plain
tests/test/opt/tcse2.pp svneol=native#text/plain
tests/test/opt/tcse3.pp svneol=native#text/plain
tests/test/opt/tcse4.pp svneol=native#text/pascal
tests/test/opt/tcse5.pp svneol=native#text/pascal
tests/test/opt/tdfa1.pp svneol=native#text/pascal
tests/test/opt/tdfa2.pp svneol=native#text/pascal
tests/test/opt/tgotoreg.pp svneol=native#text/plain
tests/test/opt/treg1.pp svneol=native#text/plain
tests/test/opt/treg2.pp svneol=native#text/plain
tests/test/opt/treg3.pp svneol=native#text/plain
tests/test/opt/treg4.pp svneol=native#text/plain
tests/test/opt/tretopt.pp svneol=native#text/plain
tests/test/opt/tspace.pp svneol=native#text/plain
tests/test/opt/twpo1.pp svneol=native#text/plain
tests/test/opt/twpo2.pp svneol=native#text/plain
tests/test/opt/twpo3.pp svneol=native#text/plain
tests/test/opt/twpo4.pp svneol=native#text/plain
tests/test/opt/twpo5.pp svneol=native#text/plain
tests/test/opt/twpo6.pp svneol=native#text/plain
tests/test/opt/twpo7.pp svneol=native#text/plain
tests/test/opt/uwpo2.pp svneol=native#text/plain
tests/test/packages/bzip2/tbzip2streamtest.pp svneol=native#text/plain
tests/test/packages/bzip2/testbzip2.res -text
tests/test/packages/cocoaint/tobjc33.pp svneol=native#text/plain
tests/test/packages/cocoaint/tobjc33a.pp svneol=native#text/plain
tests/test/packages/cocoaint/tobjcnh1.pp svneol=native#text/plain
tests/test/packages/cocoaint/tvarpara.pp svneol=native#text/plain
tests/test/packages/cocoaint/tw16329.pp svneol=native#text/plain
tests/test/packages/cocoaint/tw20875.pp svneol=native#text/plain
tests/test/packages/cocoaint/tw20876.pp svneol=native#text/plain
tests/test/packages/cocoaint/uw20875a.pp svneol=native#text/plain
tests/test/packages/cocoaint/uw20875b.pp svneol=native#text/plain
tests/test/packages/fcl-base/tascii85.pp svneol=native#text/plain
tests/test/packages/fcl-base/testuri.pp svneol=native#text/plain
tests/test/packages/fcl-base/tgettext1.pp svneol=native#text/plain
tests/test/packages/fcl-db/assertions.pas svneol=native#text/plain
tests/test/packages/fcl-db/dbftoolsunit.pas svneol=native#text/plain
tests/test/packages/fcl-db/tdb1.pp svneol=native#text/plain
tests/test/packages/fcl-db/tdb2.pp svneol=native#text/plain
tests/test/packages/fcl-db/tdb3.pp svneol=native#text/plain
tests/test/packages/fcl-db/tdb4.pp svneol=native#text/plain
tests/test/packages/fcl-db/tdb5.pp svneol=native#text/plain
tests/test/packages/fcl-db/tdb6.pp svneol=native#text/plain
tests/test/packages/fcl-db/toolsunit.pas svneol=native#text/plain
tests/test/packages/fcl-registry/tregistry1.pp svneol=native#text/plain
tests/test/packages/fcl-xml/thtmlwriter.pp svneol=native#text/plain
tests/test/packages/fcl-xml/tw22495.pp svneol=native#text/plain
tests/test/packages/fcl-xml/uw22495.pp svneol=native#text/plain
tests/test/packages/hash/sha1test.pp svneol=native#text/plain
tests/test/packages/hash/tmdtest.pp svneol=native#text/plain
tests/test/packages/webtbs/tw10045.pp svneol=native#text/plain
tests/test/packages/webtbs/tw11142.pp svneol=native#text/plain
tests/test/packages/webtbs/tw11570.pp svneol=native#text/plain
tests/test/packages/webtbs/tw12830.pp svneol=native#text/plain
tests/test/packages/webtbs/tw14265.pp svneol=native#text/plain
tests/test/packages/webtbs/tw1808.pp svneol=native#text/plain
tests/test/packages/webtbs/tw3820.pp svneol=native#text/plain
tests/test/packages/win-base/tdispvar1.pp svneol=native#text/plain
tests/test/packages/zlib/tzlib1.pp svneol=native#text/plain
tests/test/t4cc1.pp svneol=native#text/plain
tests/test/t4cc2.pp svneol=native#text/plain
tests/test/tabstract1.pp svneol=native#text/pascal
tests/test/tabstrcl.pp svneol=native#text/plain
tests/test/tabsvr1.pp svneol=native#text/plain
tests/test/tabsvr2.pp svneol=native#text/plain
tests/test/tabsvr3.pp svneol=native#text/plain
tests/test/tabsvr4.pp svneol=native#text/plain
tests/test/tabsvr5.pp svneol=native#text/plain
tests/test/taddstr1.pp svneol=native#text/plain
tests/test/taes1.pp svneol=native#text/plain
tests/test/talign.pp svneol=native#text/plain
tests/test/talign1.pp svneol=native#text/plain
tests/test/talign2.pp svneol=native#text/plain
tests/test/targ1a.pp svneol=native#text/plain
tests/test/targ1b.pp svneol=native#text/plain
tests/test/tarray1.pp svneol=native#text/plain
tests/test/tarray10.pp svneol=native#text/plain
tests/test/tarray2.pp svneol=native#text/plain
tests/test/tarray3.pp svneol=native#text/plain
tests/test/tarray4.pp svneol=native#text/plain
tests/test/tarray5.pp svneol=native#text/plain
tests/test/tarray6.pp svneol=native#text/plain
tests/test/tarray7.pp svneol=native#text/plain
tests/test/tarray8.pp svneol=native#text/plain
tests/test/tarray9.pp svneol=native#text/plain
tests/test/tarrconstr1.pp svneol=native#text/pascal
tests/test/tarrconstr2.pp svneol=native#text/pascal
tests/test/tarrconstr3.pp svneol=native#text/pascal
tests/test/tarrconstr4.pp svneol=native#text/pascal
tests/test/tasm1.pp svneol=native#text/plain
tests/test/tasm2.pp svneol=native#text/plain
tests/test/tasm3.pp svneol=native#text/plain
tests/test/tasm4.pp svneol=native#text/plain
tests/test/tasm5.pp svneol=native#text/plain
tests/test/tasm6.pp svneol=native#text/plain
tests/test/tasm7.pp svneol=native#text/plain
tests/test/tasmread.pp svneol=native#text/plain
tests/test/tasout.pp svneol=native#text/plain
tests/test/tassignmentoperator1.pp svneol=native#text/pascal
tests/test/tbopr.pp svneol=native#text/plain
tests/test/tbrtlevt.pp svneol=native#text/plain
tests/test/tbsx1.pp svneol=native#text/plain
tests/test/tcas128.pp svneol=native#text/pascal
tests/test/tcase0.pp svneol=native#text/pascal
tests/test/tcase1.pp svneol=native#text/plain
tests/test/tcase10.pp svneol=native#text/pascal
tests/test/tcase11.pp svneol=native#text/pascal
tests/test/tcase12.pp svneol=native#text/pascal
tests/test/tcase13.pp svneol=native#text/pascal
tests/test/tcase14.pp svneol=native#text/pascal
tests/test/tcase15.pp svneol=native#text/pascal
tests/test/tcase16.pp svneol=native#text/pascal
tests/test/tcase17.pp svneol=native#text/pascal
tests/test/tcase18.pp svneol=native#text/pascal
tests/test/tcase19.pp svneol=native#text/pascal
tests/test/tcase2.pp svneol=native#text/plain
tests/test/tcase20.pp svneol=native#text/pascal
tests/test/tcase21.pp svneol=native#text/pascal
tests/test/tcase22.pp svneol=native#text/pascal
tests/test/tcase23.pp svneol=native#text/pascal
tests/test/tcase24.pp svneol=native#text/pascal
tests/test/tcase25.pp svneol=native#text/pascal
tests/test/tcase26.pp svneol=native#text/pascal
tests/test/tcase27.pp svneol=native#text/pascal
tests/test/tcase28.pp svneol=native#text/pascal
tests/test/tcase29.pp svneol=native#text/pascal
tests/test/tcase3.pp svneol=native#text/pascal
tests/test/tcase30.pp svneol=native#text/pascal
tests/test/tcase31.pp svneol=native#text/pascal
tests/test/tcase32.pp svneol=native#text/pascal
tests/test/tcase33.pp svneol=native#text/pascal
tests/test/tcase34.pp svneol=native#text/pascal
tests/test/tcase35.pp svneol=native#text/pascal
tests/test/tcase36.pp svneol=native#text/pascal
tests/test/tcase37.pp svneol=native#text/pascal
tests/test/tcase38.pp svneol=native#text/pascal
tests/test/tcase39.pp svneol=native#text/pascal
tests/test/tcase4.pp svneol=native#text/pascal
tests/test/tcase40.pp svneol=native#text/pascal
tests/test/tcase41.pp svneol=native#text/pascal
tests/test/tcase42.pp svneol=native#text/pascal
tests/test/tcase43.pp svneol=native#text/pascal
tests/test/tcase44.pp svneol=native#text/pascal
tests/test/tcase45.pp svneol=native#text/pascal
tests/test/tcase45_2.pp svneol=native#text/pascal
tests/test/tcase46.pp svneol=native#text/pascal
tests/test/tcase46_2.pp svneol=native#text/pascal
tests/test/tcase47.pp svneol=native#text/pascal
tests/test/tcase47_2.pp svneol=native#text/pascal
tests/test/tcase48.pp svneol=native#text/pascal
tests/test/tcase48_2.pp svneol=native#text/pascal
tests/test/tcase5.pp svneol=native#text/pascal
tests/test/tcase6.pp svneol=native#text/pascal
tests/test/tcase7.pp svneol=native#text/pascal
tests/test/tcase8.pp svneol=native#text/pascal
tests/test/tcase9.pp svneol=native#text/pascal
tests/test/tcg1.pp svneol=native#text/plain
tests/test/tchlp1.pp svneol=native#text/pascal
tests/test/tchlp10.pp svneol=native#text/pascal
tests/test/tchlp11.pp svneol=native#text/pascal
tests/test/tchlp12.pp svneol=native#text/pascal
tests/test/tchlp13.pp svneol=native#text/pascal
tests/test/tchlp14.pp svneol=native#text/pascal
tests/test/tchlp15.pp svneol=native#text/pascal
tests/test/tchlp16.pp svneol=native#text/pascal
tests/test/tchlp17.pp svneol=native#text/pascal
tests/test/tchlp18.pp svneol=native#text/pascal
tests/test/tchlp19.pp svneol=native#text/pascal
tests/test/tchlp2.pp svneol=native#text/pascal
tests/test/tchlp20.pp svneol=native#text/pascal
tests/test/tchlp21.pp svneol=native#text/pascal
tests/test/tchlp22.pp svneol=native#text/pascal
tests/test/tchlp23.pp svneol=native#text/pascal
tests/test/tchlp24.pp svneol=native#text/pascal
tests/test/tchlp25.pp svneol=native#text/pascal
tests/test/tchlp26.pp svneol=native#text/pascal
tests/test/tchlp27.pp svneol=native#text/pascal
tests/test/tchlp28.pp svneol=native#text/pascal
tests/test/tchlp29.pp svneol=native#text/pascal
tests/test/tchlp3.pp svneol=native#text/pascal
tests/test/tchlp30.pp svneol=native#text/pascal
tests/test/tchlp31.pp svneol=native#text/pascal
tests/test/tchlp32.pp svneol=native#text/pascal
tests/test/tchlp33.pp svneol=native#text/pascal
tests/test/tchlp34.pp svneol=native#text/pascal
tests/test/tchlp35.pp svneol=native#text/pascal
tests/test/tchlp36.pp svneol=native#text/pascal
tests/test/tchlp37.pp svneol=native#text/pascal
tests/test/tchlp38.pp svneol=native#text/pascal
tests/test/tchlp39.pp svneol=native#text/pascal
tests/test/tchlp4.pp svneol=native#text/pascal
tests/test/tchlp40.pp svneol=native#text/pascal
tests/test/tchlp41.pp svneol=native#text/pascal
tests/test/tchlp42.pp svneol=native#text/pascal
tests/test/tchlp43.pp svneol=native#text/pascal
tests/test/tchlp44.pp svneol=native#text/pascal
tests/test/tchlp45.pp svneol=native#text/pascal
tests/test/tchlp46.pp svneol=native#text/pascal
tests/test/tchlp47.pp svneol=native#text/pascal
tests/test/tchlp48.pp svneol=native#text/pascal
tests/test/tchlp49.pp svneol=native#text/pascal
tests/test/tchlp5.pp svneol=native#text/pascal
tests/test/tchlp50.pp svneol=native#text/pascal
tests/test/tchlp51.pp svneol=native#text/pascal
tests/test/tchlp52.pp svneol=native#text/pascal
tests/test/tchlp53.pp svneol=native#text/pascal
tests/test/tchlp54.pp svneol=native#text/pascal
tests/test/tchlp55.pp svneol=native#text/pascal
tests/test/tchlp56.pp svneol=native#text/pascal
tests/test/tchlp57.pp svneol=native#text/pascal
tests/test/tchlp58.pp svneol=native#text/pascal
tests/test/tchlp6.pp svneol=native#text/pascal
tests/test/tchlp7.pp svneol=native#text/pascal
tests/test/tchlp8.pp svneol=native#text/pascal
tests/test/tchlp9.pp svneol=native#text/pascal
tests/test/tcint64.pp svneol=native#text/plain
tests/test/tclass1.pp svneol=native#text/plain
tests/test/tclass10.pp svneol=native#text/pascal
tests/test/tclass10a.pp svneol=native#text/pascal
tests/test/tclass10b.pp svneol=native#text/pascal
tests/test/tclass10c.pp svneol=native#text/pascal
tests/test/tclass11a.pp svneol=native#text/pascal
tests/test/tclass11b.pp svneol=native#text/pascal
tests/test/tclass12a.pp svneol=native#text/pascal
tests/test/tclass12b.pp svneol=native#text/pascal
tests/test/tclass12c.pp svneol=native#text/pascal
tests/test/tclass12d.pp svneol=native#text/plain
tests/test/tclass13.pp svneol=native#text/pascal
tests/test/tclass13a.pp svneol=native#text/plain
tests/test/tclass13b.pp svneol=native#text/plain
tests/test/tclass13c.pp svneol=native#text/pascal
tests/test/tclass13d.pp svneol=native#text/pascal
tests/test/tclass14a.pp svneol=native#text/pascal
tests/test/tclass14b.pp svneol=native#text/pascal
tests/test/tclass15.pp svneol=native#text/pascal
tests/test/tclass2.pp svneol=native#text/plain
tests/test/tclass3.pp svneol=native#text/plain
tests/test/tclass4.pp svneol=native#text/plain
tests/test/tclass5.pp svneol=native#text/plain
tests/test/tclass6.pp svneol=native#text/plain
tests/test/tclass7.pp svneol=native#text/plain
tests/test/tclass8.pp svneol=native#text/plain
tests/test/tclass9.pp svneol=native#text/pascal
tests/test/tclassinfo1.pp svneol=native#text/pascal
tests/test/tclrprop.pp svneol=native#text/plain
tests/test/tcmov1.pp svneol=native#text/plain
tests/test/tcmp.pp svneol=native#text/plain
tests/test/tcmp0.pp svneol=native#text/plain
tests/test/tconstref1.pp svneol=native#text/pascal
tests/test/tconstref2.pp svneol=native#text/pascal
tests/test/tconstref3.pp svneol=native#text/pascal
tests/test/tconstref4.pp svneol=native#text/pascal
tests/test/tcpstr1.pp svneol=native#text/plain
tests/test/tcpstr10.pp svneol=native#text/pascal
tests/test/tcpstr11.pp svneol=native#text/pascal
tests/test/tcpstr12.pp svneol=native#text/pascal
tests/test/tcpstr13.pp svneol=native#text/pascal
tests/test/tcpstr14.pp svneol=native#text/pascal
tests/test/tcpstr15.pp svneol=native#text/pascal
tests/test/tcpstr16.pp svneol=native#text/pascal
tests/test/tcpstr17.pp svneol=native#text/pascal
tests/test/tcpstr18.pp svneol=native#text/pascal
tests/test/tcpstr19.pp svneol=native#text/pascal
tests/test/tcpstr2.pp svneol=native#text/plain
tests/test/tcpstr20.pp svneol=native#text/pascal
tests/test/tcpstr21.pp svneol=native#text/pascal
tests/test/tcpstr21a.pp svneol=native#text/pascal
tests/test/tcpstr22.pp svneol=native#text/pascal
tests/test/tcpstr23.pp svneol=native#text/pascal
tests/test/tcpstr2a.pp svneol=native#text/plain
tests/test/tcpstr3.pp svneol=native#text/plain
tests/test/tcpstr4.pp svneol=native#text/plain
tests/test/tcpstr5.pp svneol=native#text/plain
tests/test/tcpstr6.pp svneol=native#text/plain
tests/test/tcpstr7.pp svneol=native#text/plain
tests/test/tcpstr8.pp svneol=native#text/pascal
tests/test/tcpstr9.pp svneol=native#text/pascal
tests/test/tcpstransistr2shortstring.pp svneol=native#text/plain
tests/test/tcpstransistr2widechararray.pp svneol=native#text/plain
tests/test/tcpstransistrcompare.pp svneol=native#text/plain
tests/test/tcpstransistrcompareequal.pp svneol=native#text/plain
tests/test/tcpstransistrcopy.pp svneol=native#text/plain
tests/test/tcpstrassignansistr.pp svneol=native#text/plain
tests/test/tcpstrchar2ansistr.pp svneol=native#text/plain
tests/test/tcpstrconcat.pp svneol=native#text/plain
tests/test/tcpstrconcat2.pp svneol=native#text/plain
tests/test/tcpstrconcat3.pp svneol=native#text/plain
tests/test/tcpstrconcatmulti.pp svneol=native#text/plain
tests/test/tcpstrconcatmulti2.pp svneol=native#text/plain
tests/test/tcpstrpchar2ansistr.pp svneol=native#text/plain
tests/test/tcpstrsetlength.pp svneol=native#text/plain
tests/test/tcpstrsetlength2.pp svneol=native#text/plain
tests/test/tcpstrshortstr2ansistr.pp svneol=native#text/plain
tests/test/tcptypedconst.pp svneol=native#text/plain
tests/test/tcptypedconst2.pp svneol=native#text/plain
tests/test/tcptypedconst3.pp svneol=native#text/plain
tests/test/tcstring1.pp svneol=native#text/pascal
tests/test/tcstring2.pp svneol=native#text/pascal
tests/test/tdefault1.pp svneol=native#text/pascal
tests/test/tdefault10.pp svneol=native#text/pascal
tests/test/tdefault11.pp svneol=native#text/pascal
tests/test/tdefault12.pp svneol=native#text/pascal
tests/test/tdefault13.pp svneol=native#text/pascal
tests/test/tdefault14.pp svneol=native#text/pascal
tests/test/tdefault15.pp svneol=native#text/pascal
tests/test/tdefault2.pp svneol=native#text/pascal
tests/test/tdefault3.pp svneol=native#text/pascal
tests/test/tdefault4.pp svneol=native#text/pascal
tests/test/tdefault5.pp svneol=native#text/pascal
tests/test/tdefault6.pp svneol=native#text/pascal
tests/test/tdefault7.pp svneol=native#text/pascal
tests/test/tdefault8.pp svneol=native#text/pascal
tests/test/tdefault9.pp svneol=native#text/pascal
tests/test/tdel1.pp svneol=native#text/plain
tests/test/tdel2.pp svneol=native#text/plain
tests/test/tdispinterface1a.pp svneol=native#text/pascal
tests/test/tdispinterface1b.pp svneol=native#text/pascal
tests/test/tdispinterface2.pp svneol=native#text/plain
tests/test/tdotunits1.pp svneol=native#text/pascal
tests/test/tdotunits2.pp svneol=native#text/pascal
tests/test/tdotunits3.pp svneol=native#text/pascal
tests/test/tdotunits4.pp svneol=native#text/pascal
tests/test/tendian1.pp svneol=native#text/plain
tests/test/tenum1.pp svneol=native#text/plain
tests/test/tenum2.pp svneol=native#text/plain
tests/test/tenum3.pp svneol=native#text/plain
tests/test/tenum4.pp svneol=native#text/plain
tests/test/tenum5.pp svneol=native#text/plain
tests/test/tenum6.pp svneol=native#text/pascal
tests/test/tenumerators1.pp svneol=native#text/pascal
tests/test/terecs1.pp svneol=native#text/pascal
tests/test/terecs10.pp svneol=native#text/pascal
tests/test/terecs11.pp svneol=native#text/pascal
tests/test/terecs12.pp svneol=native#text/pascal
tests/test/terecs13.pp svneol=native#text/pascal
tests/test/terecs14.pp svneol=native#text/pascal
tests/test/terecs2.pp svneol=native#text/pascal
tests/test/terecs3.pp svneol=native#text/pascal
tests/test/terecs4.pp svneol=native#text/pascal
tests/test/terecs5.pp svneol=native#text/pascal
tests/test/terecs6.pp svneol=native#text/pascal
tests/test/terecs7.pp svneol=native#text/pascal
tests/test/terecs8.pp svneol=native#text/pascal
tests/test/terecs9.pp svneol=native#text/pascal
tests/test/terecs_u1.pp svneol=native#text/pascal
tests/test/testcmem.pp svneol=native#text/plain
tests/test/testda1.pp svneol=native#text/plain
tests/test/testfpuc.pp svneol=native#text/plain
tests/test/testlderror.pp svneol=native#text/pascal
tests/test/testmovd.pp svneol=native#text/plain
tests/test/tests.pp svneol=native#text/plain
tests/test/testsse2.pp svneol=native#text/plain
tests/test/testv1.pp svneol=native#text/plain
tests/test/testv10.pp svneol=native#text/plain
tests/test/testv2.pp svneol=native#text/plain
tests/test/testv3.pp svneol=native#text/plain
tests/test/testv4.pp svneol=native#text/plain
tests/test/testv5.pp svneol=native#text/plain
tests/test/testv6.pp svneol=native#text/plain
tests/test/testv7.pp svneol=native#text/plain
tests/test/testv8.pp svneol=native#text/plain
tests/test/testv9.pp svneol=native#text/plain
tests/test/texception1.pp svneol=native#text/plain
tests/test/texception10.pp svneol=native#text/plain
tests/test/texception2.pp svneol=native#text/plain
tests/test/texception3.pp svneol=native#text/plain
tests/test/texception4.pp svneol=native#text/plain
tests/test/texception5.pp svneol=native#text/plain
tests/test/texception6.pp svneol=native#text/plain
tests/test/texception7.pp svneol=native#text/plain
tests/test/texception8.pp svneol=native#text/plain
tests/test/texception9.pp svneol=native#text/plain
tests/test/textthr.pp svneol=native#text/plain
tests/test/tfillchr.pp svneol=native#text/plain
tests/test/tfinal1.pp svneol=native#text/pascal
tests/test/tfinal2.pp svneol=native#text/pascal
tests/test/tforin1.pp svneol=native#text/pascal
tests/test/tforin10.pp svneol=native#text/plain
tests/test/tforin11.pp svneol=native#text/plain
tests/test/tforin12.pp svneol=native#text/pascal
tests/test/tforin13.pp svneol=native#text/pascal
tests/test/tforin14.pp svneol=native#text/pascal
tests/test/tforin15.pp svneol=native#text/pascal
tests/test/tforin16.pp svneol=native#text/pascal
tests/test/tforin17.pp svneol=native#text/pascal
tests/test/tforin18.pp svneol=native#text/pascal
tests/test/tforin19.pp svneol=native#text/pascal
tests/test/tforin2.pp svneol=native#text/pascal
tests/test/tforin20.pp svneol=native#text/pascal
tests/test/tforin21.pp svneol=native#text/pascal
tests/test/tforin22.pp svneol=native#text/pascal
tests/test/tforin23.pp svneol=native#text/pascal
tests/test/tforin24.pp svneol=native#text/pascal
tests/test/tforin25.pp svneol=native#text/pascal
tests/test/tforin3.pp svneol=native#text/pascal
tests/test/tforin4.pp svneol=native#text/pascal
tests/test/tforin5.pp svneol=native#text/pascal
tests/test/tforin6.pp svneol=native#text/pascal
tests/test/tforin7.pp svneol=native#text/pascal
tests/test/tforin8.pp svneol=native#text/pascal
tests/test/tforin9.pp svneol=native#text/pascal
tests/test/tfpu1.pp svneol=native#text/plain
tests/test/tfpu2.pp svneol=native#text/plain
tests/test/tfpu3.pp svneol=native#text/plain
tests/test/tfpu4.pp svneol=native#text/plain
tests/test/tfpu5.pp svneol=native#text/plain
tests/test/tfpuover.pp svneol=native#text/plain
tests/test/tfwork1.pp svneol=native#text/plain
tests/test/tfwork2.pp svneol=native#text/plain
tests/test/tgeneric1.pp svneol=native#text/plain
tests/test/tgeneric10.pp svneol=native#text/plain
tests/test/tgeneric11.pp svneol=native#text/plain
tests/test/tgeneric12.pp svneol=native#text/plain
tests/test/tgeneric13.pp svneol=native#text/plain
tests/test/tgeneric14.pp svneol=native#text/plain
tests/test/tgeneric15.pp svneol=native#text/plain
tests/test/tgeneric16.pp svneol=native#text/plain
tests/test/tgeneric17.pp svneol=native#text/plain
tests/test/tgeneric18.pp svneol=native#text/pascal
tests/test/tgeneric19.pp svneol=native#text/pascal
tests/test/tgeneric2.pp svneol=native#text/plain
tests/test/tgeneric20.pp svneol=native#text/pascal
tests/test/tgeneric21.pp svneol=native#text/pascal
tests/test/tgeneric22.pp svneol=native#text/pascal
tests/test/tgeneric23.pp svneol=native#text/pascal
tests/test/tgeneric24.pp svneol=native#text/pascal
tests/test/tgeneric25.pp svneol=native#text/pascal
tests/test/tgeneric26.pp svneol=native#text/pascal
tests/test/tgeneric27.pp svneol=native#text/pascal
tests/test/tgeneric28.pp svneol=native#text/pascal
tests/test/tgeneric29.pp svneol=native#text/pascal
tests/test/tgeneric3.pp svneol=native#text/plain
tests/test/tgeneric30.pp svneol=native#text/pascal
tests/test/tgeneric31.pp svneol=native#text/pascal
tests/test/tgeneric32.pp svneol=native#text/pascal
tests/test/tgeneric33.pp svneol=native#text/pascal
tests/test/tgeneric34.pp svneol=native#text/pascal
tests/test/tgeneric35.pp svneol=native#text/pascal
tests/test/tgeneric36.pp svneol=native#text/pascal
tests/test/tgeneric37.pp svneol=native#text/pascal
tests/test/tgeneric38.pp svneol=native#text/pascal
tests/test/tgeneric39.pp svneol=native#text/pascal
tests/test/tgeneric4.pp svneol=native#text/plain
tests/test/tgeneric40.pp svneol=native#text/pascal
tests/test/tgeneric41.pp svneol=native#text/pascal
tests/test/tgeneric42.pp svneol=native#text/pascal
tests/test/tgeneric43.pp svneol=native#text/pascal
tests/test/tgeneric44.pp svneol=native#text/pascal
tests/test/tgeneric45.pp svneol=native#text/pascal
tests/test/tgeneric46.pp svneol=native#text/pascal
tests/test/tgeneric47.pp svneol=native#text/pascal
tests/test/tgeneric48.pp svneol=native#text/pascal
tests/test/tgeneric49.pp svneol=native#text/pascal
tests/test/tgeneric5.pp svneol=native#text/plain
tests/test/tgeneric50.pp svneol=native#text/pascal
tests/test/tgeneric51.pp svneol=native#text/pascal
tests/test/tgeneric52.pp svneol=native#text/pascal
tests/test/tgeneric53.pp svneol=native#text/pascal
tests/test/tgeneric54.pp svneol=native#text/pascal
tests/test/tgeneric55.pp svneol=native#text/pascal
tests/test/tgeneric56.pp svneol=native#text/pascal
tests/test/tgeneric57.pp svneol=native#text/pascal
tests/test/tgeneric58.pp svneol=native#text/pascal
tests/test/tgeneric59.pp svneol=native#text/pascal
tests/test/tgeneric6.pp svneol=native#text/plain
tests/test/tgeneric60.pp svneol=native#text/pascal
tests/test/tgeneric61.pp svneol=native#text/pascal
tests/test/tgeneric62.pp svneol=native#text/pascal
tests/test/tgeneric63.pp svneol=native#text/pascal
tests/test/tgeneric64.pp svneol=native#text/pascal
tests/test/tgeneric65.pp svneol=native#text/pascal
tests/test/tgeneric66.pp svneol=native#text/pascal
tests/test/tgeneric67.pp svneol=native#text/pascal
tests/test/tgeneric68.pp svneol=native#text/pascal
tests/test/tgeneric69.pp svneol=native#text/pascal
tests/test/tgeneric7.pp svneol=native#text/plain
tests/test/tgeneric70.pp svneol=native#text/pascal
tests/test/tgeneric71.pp svneol=native#text/pascal
tests/test/tgeneric72.pp svneol=native#text/pascal
tests/test/tgeneric73.pp svneol=native#text/pascal
tests/test/tgeneric74.pp svneol=native#text/pascal
tests/test/tgeneric75.pp svneol=native#text/pascal
tests/test/tgeneric76.pp svneol=native#text/pascal
tests/test/tgeneric77.pp svneol=native#text/pascal
tests/test/tgeneric78.pp svneol=native#text/pascal
tests/test/tgeneric79.pp svneol=native#text/pascal
tests/test/tgeneric8.pp svneol=native#text/plain
tests/test/tgeneric80.pp svneol=native#text/pascal
tests/test/tgeneric81.pp svneol=native#text/pascal
tests/test/tgeneric82.pp svneol=native#text/pascal
tests/test/tgeneric83.pp svneol=native#text/pascal
tests/test/tgeneric84.pp svneol=native#text/pascal
tests/test/tgeneric85.pp svneol=native#text/pascal
tests/test/tgeneric86.pp svneol=native#text/pascal
tests/test/tgeneric87.pp svneol=native#text/pascal
tests/test/tgeneric88.pp svneol=native#text/pascal
tests/test/tgeneric89.pp svneol=native#text/pascal
tests/test/tgeneric9.pp svneol=native#text/plain
tests/test/tgeneric90.pp svneol=native#text/pascal
tests/test/tgeneric91.pp svneol=native#text/pascal
tests/test/tgoto.pp svneol=native#text/plain
tests/test/theap.pp svneol=native#text/plain
tests/test/theapthread.pp svneol=native#text/plain
tests/test/thintdir.pp svneol=native#text/plain
tests/test/thintdir1.pp svneol=native#text/pascal
tests/test/thlp1.pp svneol=native#text/pascal
tests/test/thlp10.pp svneol=native#text/pascal
tests/test/thlp11.pp svneol=native#text/pascal
tests/test/thlp12.pp svneol=native#text/pascal
tests/test/thlp13.pp svneol=native#text/pascal
tests/test/thlp14.pp svneol=native#text/pascal
tests/test/thlp15.pp svneol=native#text/pascal
tests/test/thlp16.pp svneol=native#text/pascal
tests/test/thlp17.pp svneol=native#text/pascal
tests/test/thlp18.pp svneol=native#text/pascal
tests/test/thlp19.pp svneol=native#text/pascal
tests/test/thlp2.pp svneol=native#text/pascal
tests/test/thlp20.pp svneol=native#text/pascal
tests/test/thlp21.pp svneol=native#text/pascal
tests/test/thlp22.pp svneol=native#text/pascal
tests/test/thlp23.pp svneol=native#text/pascal
tests/test/thlp24.pp svneol=native#text/pascal
tests/test/thlp25.pp svneol=native#text/pascal
tests/test/thlp26.pp svneol=native#text/pascal
tests/test/thlp27.pp svneol=native#text/pascal
tests/test/thlp28.pp svneol=native#text/pascal
tests/test/thlp29.pp svneol=native#text/pascal
tests/test/thlp3.pp svneol=native#text/pascal
tests/test/thlp30.pp svneol=native#text/pascal
tests/test/thlp31.pp svneol=native#text/pascal
tests/test/thlp32.pp svneol=native#text/pascal
tests/test/thlp33.pp svneol=native#text/pascal
tests/test/thlp34.pp svneol=native#text/pascal
tests/test/thlp35.pp svneol=native#text/pascal
tests/test/thlp36.pp svneol=native#text/pascal
tests/test/thlp37.pp svneol=native#text/pascal
tests/test/thlp38.pp svneol=native#text/pascal
tests/test/thlp39.pp svneol=native#text/pascal
tests/test/thlp4.pp svneol=native#text/pascal
tests/test/thlp40.pp svneol=native#text/pascal
tests/test/thlp41.pp svneol=native#text/pascal
tests/test/thlp42.pp svneol=native#text/pascal
tests/test/thlp43.pp svneol=native#text/pascal
tests/test/thlp44.pp svneol=native#text/pascal
tests/test/thlp45.pp svneol=native#text/pascal
tests/test/thlp5.pp svneol=native#text/pascal
tests/test/thlp6.pp svneol=native#text/pascal
tests/test/thlp7.pp svneol=native#text/pascal
tests/test/thlp8.pp svneol=native#text/pascal
tests/test/thlp9.pp svneol=native#text/pascal
tests/test/timplements1.pp svneol=native#text/plain
tests/test/timplements2.pp svneol=native#text/plain
tests/test/timplements3.pp svneol=native#text/plain
tests/test/timplements4.pp svneol=native#text/plain
tests/test/timplements4a.pp svneol=native#text/plain
tests/test/timplements4b.pp svneol=native#text/plain
tests/test/timplements7.pp svneol=native#text/plain
tests/test/timplprog.pp svneol=native#text/plain
tests/test/tindex.pp svneol=native#text/plain
tests/test/tinivar.pp svneol=native#text/plain
tests/test/tinlin64.pp svneol=native#text/plain
tests/test/tinline1.pp svneol=native#text/plain
tests/test/tinline10.pp svneol=native#text/plain
tests/test/tinline2.pp svneol=native#text/plain
tests/test/tinline3.pp svneol=native#text/plain
tests/test/tinline4.pp svneol=native#text/plain
tests/test/tinline5.pp svneol=native#text/plain
tests/test/tinline6.pp svneol=native#text/plain
tests/test/tinline7.pp svneol=native#text/plain
tests/test/tinline8.pp svneol=native#text/plain
tests/test/tinline9.pp svneol=native#text/plain
tests/test/tint2str1.pp svneol=native#text/plain
tests/test/tint2str2.pp svneol=native#text/plain
tests/test/tint641.pp svneol=native#text/plain
tests/test/tint642.pp svneol=native#text/plain
tests/test/tint643.pp svneol=native#text/plain
tests/test/tint644.pp svneol=native#text/plain
tests/test/tinterface1.pp svneol=native#text/plain
tests/test/tinterface2.pp svneol=native#text/plain
tests/test/tinterface3.pp svneol=native#text/plain
tests/test/tinterface4.pp svneol=native#text/plain
tests/test/tinterface5.pp svneol=native#text/plain
tests/test/tinterface6.pp svneol=native#text/plain
tests/test/tinterrupt.pp svneol=native#text/plain
tests/test/tintfcdecl1.pp svneol=native#text/plain
tests/test/tintfcdecl2.pp svneol=native#text/plain
tests/test/tintfdef.pp svneol=native#text/plain
tests/test/tintuint.pp svneol=native#text/plain
tests/test/tisogoto1.pp svneol=native#text/pascal
tests/test/tisogoto2.pp svneol=native#text/pascal
tests/test/tisogoto3.pp svneol=native#text/pascal
tests/test/tisogoto4.pp svneol=native#text/pascal
tests/test/tisogoto5.pp svneol=native#text/pascal
tests/test/tlib1a.pp svneol=native#text/plain
tests/test/tlib1b.pp svneol=native#text/plain
tests/test/tlib2a.pp svneol=native#text/plain
tests/test/tlib2b.pp svneol=native#text/plain
tests/test/tlibrary1.pp svneol=native#text/plain
tests/test/tlibrary2.pp svneol=native#text/plain
tests/test/tlibrary3.pp svneol=native#text/plain
tests/test/tmacbool.pp svneol=native#text/plain
tests/test/tmacfunret.pp svneol=native#text/plain
tests/test/tmaclocalprocparam1.pp svneol=native#text/plain
tests/test/tmaclocalprocparam1a.pp svneol=native#text/plain
tests/test/tmaclocalprocparam2.pp svneol=native#text/plain
tests/test/tmaclocalprocparam2a.pp svneol=native#text/plain
tests/test/tmaclocalprocparam2b.pp svneol=native#text/plain
tests/test/tmaclocalprocparam2c.pp svneol=native#text/plain
tests/test/tmaclocalprocparam2d.pp svneol=native#text/plain
tests/test/tmaclocalprocparam2e.pp svneol=native#text/plain
tests/test/tmaclocalprocparam2f.pp svneol=native#text/plain
tests/test/tmaclocalprocparam3.pp svneol=native#text/plain
tests/test/tmaclocalprocparam3a.pp svneol=native#text/plain
tests/test/tmaclocalprocparam3b.pp svneol=native#text/plain
tests/test/tmaclocalprocparam3c.pp svneol=native#text/plain
tests/test/tmaclocalprocparam3d.pp svneol=native#text/plain
tests/test/tmaclocalprocparam3e.pp svneol=native#text/plain
tests/test/tmaclocalprocparam3f.pp svneol=native#text/plain
tests/test/tmaclocalprocparam4.pp svneol=native#text/plain
tests/test/tmaclocalprocparam4a.pp svneol=native#text/plain
tests/test/tmaclocalprocparam4b.pp svneol=native#text/plain
tests/test/tmaclocalprocparam4c.pp svneol=native#text/plain
tests/test/tmaclocalprocparam4d.pp svneol=native#text/plain
tests/test/tmaclocalprocparam4e.pp svneol=native#text/plain
tests/test/tmaclocalprocparam4f.pp svneol=native#text/plain
tests/test/tmaclocalprocparam4g.pp svneol=native#text/plain
tests/test/tmaclocalprocparam4h.pp svneol=native#text/plain
tests/test/tmacnonlocalexit.pp svneol=native#text/plain
tests/test/tmacnonlocalgoto.pp svneol=native#text/plain
tests/test/tmacpas1.pp svneol=native#text/plain
tests/test/tmacpas2.pp svneol=native#text/plain
tests/test/tmacpas3.pp svneol=native#text/plain
tests/test/tmacpas4.pp svneol=native#text/plain
tests/test/tmacpas5.pp svneol=native#text/plain
tests/test/tmacprocvar.pp svneol=native#text/plain
tests/test/tmainnam.pp svneol=native#text/plain
tests/test/tmath1.pp svneol=native#text/plain
tests/test/tmcbool2.pp svneol=native#text/plain
tests/test/tmmx1.pp svneol=native#text/plain
tests/test/tmove.pp svneol=native#text/plain
tests/test/tmsg1.pp svneol=native#text/plain
tests/test/tmsg2.pp svneol=native#text/plain
tests/test/tmsg3.pp svneol=native#text/plain
tests/test/tmsg4.pp svneol=native#text/plain
tests/test/tmt1.pp svneol=native#text/plain
tests/test/tmul1.pp svneol=native#text/pascal
tests/test/tnoext1.pp svneol=native#text/plain
tests/test/tnoext2.pp svneol=native#text/plain
tests/test/tnoext3.pp svneol=native#text/plain
tests/test/tnoext4.pp svneol=native#text/plain
tests/test/tnonlocalgoto1.pp svneol=native#text/pascal
tests/test/tnonlocalgoto2.pp svneol=native#text/pascal
tests/test/tnonlocalgoto3.pp svneol=native#text/pascal
tests/test/tobjc1.pp svneol=native#text/plain
tests/test/tobjc10.pp svneol=native#text/plain
tests/test/tobjc11.pp svneol=native#text/plain
tests/test/tobjc12.pp svneol=native#text/plain
tests/test/tobjc13.pp svneol=native#text/plain
tests/test/tobjc13a.pp svneol=native#text/plain
tests/test/tobjc13b.pp svneol=native#text/plain
tests/test/tobjc14.pp svneol=native#text/plain
tests/test/tobjc15.pp svneol=native#text/plain
tests/test/tobjc16.pp svneol=native#text/plain
tests/test/tobjc17.pp svneol=native#text/plain
tests/test/tobjc18.pp svneol=native#text/plain
tests/test/tobjc19.pp svneol=native#text/plain
tests/test/tobjc2.pp svneol=native#text/plain
tests/test/tobjc20.pp svneol=native#text/plain
tests/test/tobjc21.pp svneol=native#text/plain
tests/test/tobjc22.pp svneol=native#text/plain
tests/test/tobjc22a.pp svneol=native#text/plain
tests/test/tobjc22b.pp svneol=native#text/plain
tests/test/tobjc23.pp svneol=native#text/plain
tests/test/tobjc24.pp svneol=native#text/plain
tests/test/tobjc25.pp svneol=native#text/plain
tests/test/tobjc26.pp svneol=native#text/plain
tests/test/tobjc26a.pp svneol=native#text/plain
tests/test/tobjc27a.pp svneol=native#text/plain
tests/test/tobjc27b.pp svneol=native#text/plain
tests/test/tobjc28.pp svneol=native#text/plain
tests/test/tobjc29.pp svneol=native#text/plain
tests/test/tobjc29a.pp svneol=native#text/plain
tests/test/tobjc29b.pp svneol=native#text/plain
tests/test/tobjc3.pp svneol=native#text/plain
tests/test/tobjc30.pp svneol=native#text/plain
tests/test/tobjc30a.pp svneol=native#text/plain
tests/test/tobjc30b.pp svneol=native#text/plain
tests/test/tobjc30c.pp svneol=native#text/plain
tests/test/tobjc31.pp svneol=native#text/plain
tests/test/tobjc32.pp svneol=native#text/plain
tests/test/tobjc32a.pp svneol=native#text/plain
tests/test/tobjc32b.pp svneol=native#text/plain
tests/test/tobjc34.pp svneol=native#text/plain
tests/test/tobjc34a.pp svneol=native#text/plain
tests/test/tobjc35a.pp svneol=native#text/plain
tests/test/tobjc35b.pp svneol=native#text/plain
tests/test/tobjc35c.pp svneol=native#text/plain
tests/test/tobjc35d.pp svneol=native#text/plain
tests/test/tobjc35f.pp svneol=native#text/plain
tests/test/tobjc35g.pp svneol=native#text/plain
tests/test/tobjc35h.pp svneol=native#text/plain
tests/test/tobjc35i.pp svneol=native#text/plain
tests/test/tobjc36.pp svneol=native#text/plain
tests/test/tobjc36a.pp svneol=native#text/plain
tests/test/tobjc37.pp svneol=native#text/plain
tests/test/tobjc38.pp svneol=native#text/plain
tests/test/tobjc39.pp svneol=native#text/plain
tests/test/tobjc4.pp svneol=native#text/plain
tests/test/tobjc40.pp svneol=native#text/plain
tests/test/tobjc4a.pp svneol=native#text/plain
tests/test/tobjc5.pp svneol=native#text/plain
tests/test/tobjc5a.pp svneol=native#text/plain
tests/test/tobjc6.pp svneol=native#text/plain
tests/test/tobjc7.pp svneol=native#text/plain
tests/test/tobjc7a.pp svneol=native#text/plain
tests/test/tobjc7b.pp svneol=native#text/plain
tests/test/tobjc7c.pp svneol=native#text/plain
tests/test/tobjc8.pp svneol=native#text/plain
tests/test/tobjc8a.pp svneol=native#text/plain
tests/test/tobjc9.pp svneol=native#text/plain
tests/test/tobjc9a.pp svneol=native#text/plain
tests/test/tobjc9b.pp svneol=native#text/plain
tests/test/tobjcl1.pp svneol=native#text/plain
tests/test/tobjcl2.pp svneol=native#text/plain
tests/test/tobjcl3.pp svneol=native#text/plain
tests/test/tobjcl4.pp svneol=native#text/plain
tests/test/tobject1.pp svneol=native#text/plain
tests/test/tobject2.pp svneol=native#text/plain
tests/test/tobject3.pp svneol=native#text/plain
tests/test/tobject4.pp svneol=native#text/plain
tests/test/tobject5.pp svneol=native#text/pascal
tests/test/tobject6.pp svneol=native#text/plain
tests/test/tobject7.pp svneol=native#text/plain
tests/test/tobject8.pp svneol=native#text/plain
tests/test/toperator1.pp svneol=native#text/plain
tests/test/toperator10.pp svneol=native#text/pascal
tests/test/toperator11.pp svneol=native#text/pascal
tests/test/toperator12.pp svneol=native#text/pascal
tests/test/toperator13.pp svneol=native#text/pascal
tests/test/toperator14.pp svneol=native#text/pascal
tests/test/toperator15.pp svneol=native#text/pascal
tests/test/toperator16.pp svneol=native#text/pascal
tests/test/toperator17.pp svneol=native#text/pascal
tests/test/toperator18.pp svneol=native#text/pascal
tests/test/toperator19.pp svneol=native#text/pascal
tests/test/toperator2.pp svneol=native#text/plain
tests/test/toperator20.pp svneol=native#text/pascal
tests/test/toperator21.pp svneol=native#text/pascal
tests/test/toperator22.pp svneol=native#text/pascal
tests/test/toperator23.pp svneol=native#text/pascal
tests/test/toperator24.pp svneol=native#text/pascal
tests/test/toperator25.pp svneol=native#text/pascal
tests/test/toperator26.pp svneol=native#text/pascal
tests/test/toperator27.pp svneol=native#text/pascal
tests/test/toperator28.pp svneol=native#text/pascal
tests/test/toperator29.pp svneol=native#text/pascal
tests/test/toperator3.pp svneol=native#text/plain
tests/test/toperator30.pp svneol=native#text/pascal
tests/test/toperator31.pp svneol=native#text/pascal
tests/test/toperator32.pp svneol=native#text/pascal
tests/test/toperator33.pp svneol=native#text/pascal
tests/test/toperator34.pp svneol=native#text/pascal
tests/test/toperator35.pp svneol=native#text/pascal
tests/test/toperator36.pp svneol=native#text/pascal
tests/test/toperator37.pp svneol=native#text/pascal
tests/test/toperator38.pp svneol=native#text/pascal
tests/test/toperator39.pp svneol=native#text/pascal
tests/test/toperator4.pp svneol=native#text/plain
tests/test/toperator40.pp svneol=native#text/pascal
tests/test/toperator41.pp svneol=native#text/pascal
tests/test/toperator42.pp svneol=native#text/pascal
tests/test/toperator43.pp svneol=native#text/pascal
tests/test/toperator44.pp svneol=native#text/pascal
tests/test/toperator45.pp svneol=native#text/pascal
tests/test/toperator46.pp svneol=native#text/pascal
tests/test/toperator47.pp svneol=native#text/pascal
tests/test/toperator48.pp svneol=native#text/pascal
tests/test/toperator49.pp svneol=native#text/pascal
tests/test/toperator5.pp svneol=native#text/plain
tests/test/toperator50.pp svneol=native#text/pascal
tests/test/toperator51.pp svneol=native#text/pascal
tests/test/toperator52.pp svneol=native#text/pascal
tests/test/toperator53.pp svneol=native#text/pascal
tests/test/toperator54.pp svneol=native#text/pascal
tests/test/toperator55.pp svneol=native#text/pascal
tests/test/toperator56.pp svneol=native#text/pascal
tests/test/toperator57.pp svneol=native#text/pascal
tests/test/toperator58.pp svneol=native#text/pascal
tests/test/toperator59.pp svneol=native#text/pascal
tests/test/toperator6.pp svneol=native#text/plain
tests/test/toperator60.pp svneol=native#text/pascal
tests/test/toperator61.pp svneol=native#text/pascal
tests/test/toperator62.pp svneol=native#text/pascal
tests/test/toperator63.pp svneol=native#text/pascal
tests/test/toperator64.pp svneol=native#text/pascal
tests/test/toperator65.pp svneol=native#text/pascal
tests/test/toperator66.pp svneol=native#text/pascal
tests/test/toperator67.pp svneol=native#text/pascal
tests/test/toperator68.pp svneol=native#text/pascal
tests/test/toperator69.pp svneol=native#text/pascal
tests/test/toperator7.pp svneol=native#text/plain
tests/test/toperator70.pp svneol=native#text/pascal
tests/test/toperator71.pp svneol=native#text/pascal
tests/test/toperator72.pp svneol=native#text/pascal
tests/test/toperator73.pp svneol=native#text/pascal
tests/test/toperator74.pp svneol=native#text/pascal
tests/test/toperator75.pp svneol=native#text/pascal
tests/test/toperator76.pp svneol=native#text/pascal
tests/test/toperator77.pp svneol=native#text/pascal
tests/test/toperator78.pp svneol=native#text/pascal
tests/test/toperator79.pp svneol=native#text/pascal
tests/test/toperator8.pp svneol=native#text/pascal
tests/test/toperator80.pp svneol=native#text/pascal
tests/test/toperator81.pp svneol=native#text/pascal
tests/test/toperator82.pp svneol=native#text/pascal
tests/test/toperator83.pp svneol=native#text/pascal
tests/test/toperator84.pp svneol=native#text/pascal
tests/test/toperator85.pp svneol=native#text/pascal
tests/test/toperator86.pp svneol=native#text/pascal
tests/test/toperator87.pp svneol=native#text/pascal
tests/test/toperator88.pp svneol=native#text/pascal
tests/test/toperator9.pp svneol=native#text/pascal
tests/test/tover1.pp svneol=native#text/plain
tests/test/tover2.pp svneol=native#text/plain
tests/test/tover3.pp svneol=native#text/plain
tests/test/tpackrec.pp svneol=native#text/plain
tests/test/tparray1.pp svneol=native#text/plain
tests/test/tparray10.pp svneol=native#text/plain
tests/test/tparray11.pp svneol=native#text/plain
tests/test/tparray12.pp svneol=native#text/plain
tests/test/tparray13.pp svneol=native#text/plain
tests/test/tparray14.pp svneol=native#text/plain
tests/test/tparray15.pp svneol=native#text/plain
tests/test/tparray16.pp svneol=native#text/plain
tests/test/tparray17.pp svneol=native#text/plain
tests/test/tparray18.pp svneol=native#text/plain
tests/test/tparray19.pp svneol=native#text/plain
tests/test/tparray2.pp svneol=native#text/plain
tests/test/tparray20.pp svneol=native#text/plain
tests/test/tparray21.pp svneol=native#text/plain
tests/test/tparray22.pp svneol=native#text/plain
tests/test/tparray23.pp svneol=native#text/plain
tests/test/tparray24.pp svneol=native#text/plain
tests/test/tparray25.pp svneol=native#text/plain
tests/test/tparray26.pp svneol=native#text/plain
tests/test/tparray3.pp svneol=native#text/plain
tests/test/tparray4.pp svneol=native#text/plain
tests/test/tparray5.pp svneol=native#text/plain
tests/test/tparray6.pp svneol=native#text/plain
tests/test/tparray7.pp svneol=native#text/plain
tests/test/tparray8.pp svneol=native#text/plain
tests/test/tparray9.pp svneol=native#text/plain
tests/test/tpftch1.pp svneol=native#text/plain
tests/test/tpointermath1.pp svneol=native#text/pascal
tests/test/tpointermath2.pp svneol=native#text/pascal
tests/test/tpointermath3.pp svneol=native#text/pascal
tests/test/tpoll.pp svneol=native#text/plain
tests/test/tpopcnt1.pp svneol=native#text/pascal
tests/test/tprec1.pp svneol=native#text/plain
tests/test/tprec10.pp svneol=native#text/plain
tests/test/tprec11.pp svneol=native#text/plain
tests/test/tprec12.pp svneol=native#text/plain
tests/test/tprec13.pp svneol=native#text/plain
tests/test/tprec14.pp svneol=native#text/plain
tests/test/tprec15.pp svneol=native#text/plain
tests/test/tprec16.pp svneol=native#text/plain
tests/test/tprec17.pp svneol=native#text/plain
tests/test/tprec18.pp svneol=native#text/plain
tests/test/tprec19.pp svneol=native#text/plain
tests/test/tprec2.pp svneol=native#text/plain
tests/test/tprec20.pp svneol=native#text/plain
tests/test/tprec21.pp svneol=native#text/plain
tests/test/tprec22.pp svneol=native#text/plain
tests/test/tprec23.pp svneol=native#text/plain
tests/test/tprec24.pp svneol=native#text/plain
tests/test/tprec3.pp svneol=native#text/plain
tests/test/tprec4.pp svneol=native#text/plain
tests/test/tprec5.pp svneol=native#text/plain
tests/test/tprec6.pp svneol=native#text/plain
tests/test/tprec7.pp svneol=native#text/plain
tests/test/tprec8.pp svneol=native#text/plain
tests/test/tprec9.pp svneol=native#text/plain
tests/test/tprocext.pp svneol=native#text/plain
tests/test/tprocvar1.pp svneol=native#text/plain
tests/test/tprocvar2.pp svneol=native#text/plain
tests/test/tprocvar3.pp svneol=native#text/plain
tests/test/tprop.pp svneol=native#text/plain
tests/test/tprop1.pp svneol=native#text/plain
tests/test/tprop2.pp svneol=native#text/plain
tests/test/trange1.pp svneol=native#text/plain
tests/test/trange2.pp svneol=native#text/plain
tests/test/trange3.pp svneol=native#text/plain
tests/test/trange4.pp svneol=native#text/plain
tests/test/trange5.pp svneol=native#text/plain
tests/test/trangeob.pp svneol=native#text/plain
tests/test/trecreg.pp svneol=native#text/plain
tests/test/trecreg2.pp svneol=native#text/plain
tests/test/trecreg3.pp svneol=native#text/plain
tests/test/trecreg4.pp svneol=native#text/plain
tests/test/tresstr.pp svneol=native#text/plain
tests/test/trhlp1.pp svneol=native#text/pascal
tests/test/trhlp10.pp svneol=native#text/pascal
tests/test/trhlp11.pp svneol=native#text/pascal
tests/test/trhlp12.pp svneol=native#text/pascal
tests/test/trhlp13.pp svneol=native#text/pascal
tests/test/trhlp14.pp svneol=native#text/pascal
tests/test/trhlp15.pp svneol=native#text/pascal
tests/test/trhlp16.pp svneol=native#text/pascal
tests/test/trhlp17.pp svneol=native#text/pascal
tests/test/trhlp18.pp svneol=native#text/pascal
tests/test/trhlp19.pp svneol=native#text/pascal
tests/test/trhlp2.pp svneol=native#text/pascal
tests/test/trhlp20.pp svneol=native#text/pascal
tests/test/trhlp21.pp svneol=native#text/pascal
tests/test/trhlp22.pp svneol=native#text/pascal
tests/test/trhlp23.pp svneol=native#text/pascal
tests/test/trhlp24.pp svneol=native#text/pascal
tests/test/trhlp25.pp svneol=native#text/pascal
tests/test/trhlp26.pp svneol=native#text/pascal
tests/test/trhlp27.pp svneol=native#text/pascal
tests/test/trhlp28.pp svneol=native#text/pascal
tests/test/trhlp29.pp svneol=native#text/pascal
tests/test/trhlp3.pp svneol=native#text/pascal
tests/test/trhlp30.pp svneol=native#text/pascal
tests/test/trhlp31.pp svneol=native#text/pascal
tests/test/trhlp32.pp svneol=native#text/pascal
tests/test/trhlp33.pp svneol=native#text/pascal
tests/test/trhlp34.pp svneol=native#text/pascal
tests/test/trhlp35.pp svneol=native#text/pascal
tests/test/trhlp36.pp svneol=native#text/pascal
tests/test/trhlp37.pp svneol=native#text/pascal
tests/test/trhlp38.pp svneol=native#text/pascal
tests/test/trhlp39.pp svneol=native#text/pascal
tests/test/trhlp4.pp svneol=native#text/pascal
tests/test/trhlp40.pp svneol=native#text/pascal
tests/test/trhlp41.pp svneol=native#text/pascal
tests/test/trhlp42.pp svneol=native#text/pascal
tests/test/trhlp43.pp svneol=native#text/pascal
tests/test/trhlp44.pp svneol=native#text/pascal
tests/test/trhlp5.pp svneol=native#text/pascal
tests/test/trhlp6.pp svneol=native#text/pascal
tests/test/trhlp7.pp svneol=native#text/pascal
tests/test/trhlp8.pp svneol=native#text/pascal
tests/test/trhlp9.pp svneol=native#text/pascal
tests/test/trox1.pp svneol=native#text/plain
tests/test/trox2.pp svneol=native#text/plain
tests/test/trox3.pp svneol=native#text/pascal
tests/test/trox4.pp svneol=native#text/pascal
tests/test/trox5.pp svneol=native#text/pascal
tests/test/trstr1.pp svneol=native#text/plain
tests/test/trstr2.pp svneol=native#text/plain
tests/test/trstr3.pp svneol=native#text/plain
tests/test/trstr4.pp svneol=native#text/plain
tests/test/trstr5.pp svneol=native#text/plain
tests/test/trstr6.pp svneol=native#text/plain
tests/test/trstr7.pp svneol=native#text/plain
tests/test/trstr8.pp svneol=native#text/plain
tests/test/trtti1.pp svneol=native#text/plain
tests/test/trtti2.pp svneol=native#text/plain
tests/test/trtti3.pp svneol=native#text/plain
tests/test/trtti4.pp svneol=native#text/plain
tests/test/trtti5.pp svneol=native#text/plain
tests/test/tsafecall1.pp svneol=native#text/plain
tests/test/tsafecall2.pp svneol=native#text/pascal
tests/test/tsafecall3.pp svneol=native#text/pascal
tests/test/tsafecall4.pp svneol=native#text/pascal
tests/test/tsealed1.pp svneol=native#text/pascal
tests/test/tsealed2.pp svneol=native#text/pascal
tests/test/tsealed3.pp svneol=native#text/pascal
tests/test/tsealed4.pp svneol=native#text/pascal
tests/test/tsealed5.pp svneol=native#text/pascal
tests/test/tsealed6.pp svneol=native#text/pascal
tests/test/tsec1.pp svneol=native#text/plain
tests/test/tsel1.pp svneol=native#text/plain
tests/test/tsel2.pp svneol=native#text/plain
tests/test/tset1.pp svneol=native#text/plain
tests/test/tset2.pp svneol=native#text/plain
tests/test/tset2a.pp svneol=native#text/plain
tests/test/tset2b.pp svneol=native#text/plain
tests/test/tset2c.pp svneol=native#text/plain
tests/test/tset2d.pp svneol=native#text/plain
tests/test/tset3.pp svneol=native#text/plain
tests/test/tset4.pp svneol=native#text/plain
tests/test/tset5.pp svneol=native#text/plain
tests/test/tset5a.pp svneol=native#text/plain
tests/test/tset6.pp svneol=native#text/plain
tests/test/tset7.pp svneol=native#text/plain
tests/test/tsetsize.pp svneol=native#text/plain
tests/test/tshuffle1.pp svneol=native#text/pascal
tests/test/tstack.pp svneol=native#text/plain
tests/test/tstatic1.pp svneol=native#text/pascal
tests/test/tstatic2.pp svneol=native#text/pascal
tests/test/tstatic3.pp svneol=native#text/pascal
tests/test/tstatic4.pp svneol=native#text/pascal
tests/test/tstatic5.pp svneol=native#text/pascal
tests/test/tstdhandle.pp svneol=native#text/plain
tests/test/tstprocv.pp svneol=native#text/plain
tests/test/tstring1.pp svneol=native#text/plain
tests/test/tstring10.pp svneol=native#text/plain
tests/test/tstring2.pp svneol=native#text/plain
tests/test/tstring3.pp svneol=native#text/plain
tests/test/tstring4.pp svneol=native#text/plain
tests/test/tstring5.pp svneol=native#text/plain
tests/test/tstring6.pp svneol=native#text/plain
tests/test/tstring7.pp svneol=native#text/plain
tests/test/tstring8.pp svneol=native#text/plain
tests/test/tstring9.pp svneol=native#text/plain
tests/test/tstrreal1.pp svneol=native#text/plain
tests/test/tstrreal2.pp svneol=native#text/plain
tests/test/tstrreal3.pp svneol=native#text/plain
tests/test/tstrreal4.pp svneol=native#text/plain
tests/test/tstrreal5.pp svneol=native#text/plain
tests/test/tstrutils1.pp svneol=native#text/plain
tests/test/tstrutils2.pp svneol=native#text/plain
tests/test/tsubdecl.pp svneol=native#text/plain
tests/test/tsymlibrary1.pp svneol=native#text/pascal
tests/test/ttpara1.pp svneol=native#text/plain
tests/test/ttpara2.pp svneol=native#text/plain
tests/test/ttypeconvtypes.pp svneol=native#text/pascal
tests/test/ttypedarray1.pp svneol=native#text/pascal
tests/test/ttypedrecord1.pp svneol=native#text/plain
tests/test/ttypedrecord2.pp svneol=native#text/plain
tests/test/ttypedrecord3.pp svneol=native#text/plain
tests/test/ttypedrecord4.pp svneol=native#text/plain
tests/test/tunaligned1.pp svneol=native#text/plain
tests/test/tunistr1.pp svneol=native#text/plain
tests/test/tunistr2.pp svneol=native#text/plain
tests/test/tunistr4.pp svneol=native#text/plain
tests/test/tunistr5.pp svneol=native#text/plain
tests/test/tunistr6.pp svneol=native#text/plain
tests/test/tunistr7.pp svneol=native#text/plain
tests/test/tunistrcopy.pp svneol=native#text/plain
tests/test/tunit1.pp svneol=native#text/plain
tests/test/tunit2.pp svneol=native#text/plain
tests/test/tunit3.pp svneol=native#text/plain
tests/test/tunroll1.pp svneol=native#text/plain
tests/test/tutf81.pp svneol=native#text/plain
tests/test/tutf82.pp svneol=native#text/plain
tests/test/tvarpropsetter1.pp svneol=native#text/plain
tests/test/tvarpropsetter2.pp svneol=native#text/plain
tests/test/tvarset1.pp svneol=native#text/plain
tests/test/twarn1.pp svneol=native#text/pascal
tests/test/tweaklib1.pp svneol=native#text/plain
tests/test/tweaklib2.pp svneol=native#text/plain
tests/test/tweaklib3.pp svneol=native#text/plain
tests/test/tweaklib4.pp svneol=native#text/plain
tests/test/twide1.pp svneol=native#text/plain
tests/test/twide2.pp svneol=native#text/plain
tests/test/twide3.pp svneol=native#text/plain
tests/test/twide4.pp svneol=native#text/plain
tests/test/twide5.pp svneol=native#text/plain
tests/test/twide6.pp svneol=native#text/plain
tests/test/twide7.pp svneol=native#text/plain
tests/test/twrstr1.pp svneol=native#text/plain
tests/test/twrstr2.pp svneol=native#text/plain
tests/test/twrstr3.pp svneol=native#text/plain
tests/test/twrstr4.pp svneol=native#text/plain
tests/test/twrstr5.pp svneol=native#text/plain
tests/test/twrstr6.pp svneol=native#text/plain
tests/test/twrstr7.pp svneol=native#text/plain
tests/test/twrstr8.pp svneol=native#text/plain
tests/test/uabstrcl.pp svneol=native#text/plain
tests/test/uchlp12.pp svneol=native#text/pascal
tests/test/uchlp18.pp svneol=native#text/pascal
tests/test/udots.dot.next.pp svneol=native#text/pascal
tests/test/udots.dot.pp svneol=native#text/pascal
tests/test/udots.dot.prog.pp svneol=native#text/pascal
tests/test/udots.pp svneol=native#text/pascal
tests/test/udots.prog.pp svneol=native#text/pascal
tests/test/udots.test.pp svneol=native#text/pascal
tests/test/uenum2a.pp svneol=native#text/plain
tests/test/uenum2b.pp svneol=native#text/plain
tests/test/ugeneric.test75.pp svneol=native#text/pascal
tests/test/ugeneric10.pp svneol=native#text/plain
tests/test/ugeneric14.pp svneol=native#text/plain
tests/test/ugeneric3.pp svneol=native#text/plain
tests/test/ugeneric4.pp svneol=native#text/plain
tests/test/ugeneric59a.pp svneol=native#text/pascal
tests/test/ugeneric59b.pp svneol=native#text/pascal
tests/test/ugeneric7.pp svneol=native#text/plain
tests/test/ugeneric74a.pp svneol=native#text/pascal
tests/test/ugeneric74b.pp svneol=native#text/pascal
tests/test/ugeneric75.pp svneol=native#text/pascal
tests/test/ugeneric91a.pp svneol=native#text/pascal
tests/test/ugeneric91b.pp svneol=native#text/pascal
tests/test/uhintdir.pp svneol=native#text/plain
tests/test/uhlp3.pp svneol=native#text/pascal
tests/test/uhlp31.pp svneol=native#text/pascal
tests/test/uhlp39.pp svneol=native#text/pascal
tests/test/uhlp41a.pp svneol=native#text/pascal
tests/test/uhlp41b.pp svneol=native#text/pascal
tests/test/uhlp43.pp svneol=native#text/pascal
tests/test/uimpluni1.pp svneol=native#text/plain
tests/test/uimpluni2.pp svneol=native#text/plain
tests/test/uinline4a.pp svneol=native#text/plain
tests/test/uinline4b.pp svneol=native#text/plain
tests/test/ulib2a.pp svneol=native#text/plain
tests/test/umaclocalprocparam3f.pp svneol=native#text/plain
tests/test/umacpas1.pp svneol=native#text/plain
tests/test/umainnam.pp svneol=native#text/plain
tests/test/units/character/tgetnumericvalue.pp svneol=native#text/pascal
tests/test/units/character/tgetnumericvalue2.pp svneol=native#text/pascal
tests/test/units/character/tgetnumericvalue3.pp svneol=native#text/pascal
tests/test/units/character/tgetunicodecategoriesurro.pp svneol=native#text/pascal
tests/test/units/character/tiscontrol.pp svneol=native#text/pascal
tests/test/units/character/tiscontrol2.pp svneol=native#text/pascal
tests/test/units/character/tiscontrol3.pp svneol=native#text/pascal
tests/test/units/character/tisdigit.pp svneol=native#text/pascal
tests/test/units/character/tisdigit2.pp svneol=native#text/pascal
tests/test/units/character/tisdigit3.pp svneol=native#text/pascal
tests/test/units/character/tishighsurrogate.pp svneol=native#text/pascal
tests/test/units/character/tisletter.pp svneol=native#text/pascal
tests/test/units/character/tisletter2.pp svneol=native#text/pascal
tests/test/units/character/tisletterordigit.pp svneol=native#text/pascal
tests/test/units/character/tisletterordigit2.pp svneol=native#text/pascal
tests/test/units/character/tislower2.pp svneol=native#text/pascal
tests/test/units/character/tislowsurrogate.pp svneol=native#text/pascal
tests/test/units/character/tisnumber.pp svneol=native#text/pascal
tests/test/units/character/tisnumber2.pp svneol=native#text/pascal
tests/test/units/character/tispunctuation.pp svneol=native#text/pascal
tests/test/units/character/tisseparator.pp svneol=native#text/pascal
tests/test/units/character/tissurrogate.pp svneol=native#text/pascal
tests/test/units/character/tissurrogatepair.pp svneol=native#text/pascal
tests/test/units/character/tissurrogatepair2.pp svneol=native#text/pascal
tests/test/units/character/tissymbol.pp svneol=native#text/pascal
tests/test/units/character/tisupper.pp svneol=native#text/pascal
tests/test/units/character/tiswhitespace.pp svneol=native#text/pascal
tests/test/units/character/tlowercase.pp svneol=native#text/pascal
tests/test/units/character/tlowercase2.pp svneol=native#text/pascal
tests/test/units/character/ttolower.pp svneol=native#text/pascal
tests/test/units/character/ttolower2.pp svneol=native#text/pascal
tests/test/units/character/ttolower3.pp svneol=native#text/pascal
tests/test/units/character/ttoupper.pp svneol=native#text/pascal
tests/test/units/character/ttoupper2.pp svneol=native#text/pascal
tests/test/units/character/ttoupper3.pp svneol=native#text/pascal
tests/test/units/character/tutf32convert.pp svneol=native#text/pascal
tests/test/units/classes/tbytesstreamtest.pp svneol=native#text/pascal
tests/test/units/classes/tmakeobjinst.pp svneol=native#text/plain
tests/test/units/classes/tsetstream.pp svneol=native#text/plain
tests/test/units/classes/tvclcomobject.pp svneol=native#text/plain
tests/test/units/crt/tcrt.pp svneol=native#text/plain
tests/test/units/crt/tctrlc.pp svneol=native#text/plain
tests/test/units/dos/hello.pp svneol=native#text/plain
tests/test/units/dos/tbreak.pp svneol=native#text/plain
tests/test/units/dos/tdisk.pp svneol=native#text/plain
tests/test/units/dos/tdos.pp svneol=native#text/plain
tests/test/units/dos/tdos2.pp svneol=native#text/plain
tests/test/units/dos/tenv.pp svneol=native#text/plain
tests/test/units/dos/tfattr.pp svneol=native#text/plain
tests/test/units/dos/tfexpand.pp svneol=native#text/plain
tests/test/units/dos/tfsearch.pp svneol=native#text/plain
tests/test/units/dos/tidos.pp svneol=native#text/plain
tests/test/units/dos/tidos2.pp svneol=native#text/plain
tests/test/units/dos/tverify.pp svneol=native#text/plain
tests/test/units/dos/tversion.pp svneol=native#text/plain
tests/test/units/fmtbcd/tfmtbcd.pp svneol=native#text/plain
tests/test/units/fpcunit/fplists.pp svneol=native#text/plain
tests/test/units/fpcunit/gencomptest.dpr svneol=native#text/plain
tests/test/units/fpcunit/lists.pp svneol=native#text/plain
tests/test/units/fpcunit/resref2.inc svneol=native#text/plain
tests/test/units/fpcunit/searchbuf.inc svneol=native#text/plain
tests/test/units/fpcunit/sllist2.inc svneol=native#text/plain
tests/test/units/fpcunit/tbucketlist.lpi svneol=native#text/plain
tests/test/units/fpcunit/tbucketlist.lpr svneol=native#text/plain
tests/test/units/fpcunit/tcbucketlist.pp svneol=native#text/plain
tests/test/units/fpcunit/tccollection.pp svneol=native#text/plain
tests/test/units/fpcunit/tccomponent.pp svneol=native#text/plain
tests/test/units/fpcunit/tccompstreaming.pp svneol=native#text/plain
tests/test/units/fpcunit/tcfindnested.pp svneol=native#text/plain
tests/test/units/fpcunit/tclinkedlist.pp svneol=native#text/plain
tests/test/units/fpcunit/tclist.pp svneol=native#text/plain
tests/test/units/fpcunit/tcpersistent.pp svneol=native#text/plain
tests/test/units/fpcunit/tcresref.pp svneol=native#text/plain
tests/test/units/fpcunit/tcstreaming.pp svneol=native#text/plain
tests/test/units/fpcunit/tcstringlist.pp svneol=native#text/plain
tests/test/units/fpcunit/tcstrutils.pp svneol=native#text/plain
tests/test/units/fpcunit/tctparser.pp svneol=native#text/plain
tests/test/units/fpcunit/testclasses.lpi svneol=native#text/plain
tests/test/units/fpcunit/testclasses.lpr svneol=native#text/plain
tests/test/units/fpcunit/testcomps.pp svneol=native#text/plain
tests/test/units/fpcunit/tstrutils.lpi svneol=native#text/plain
tests/test/units/fpcunit/tstrutils.lpr svneol=native#text/plain
tests/test/units/lineinfo/tlininfo.pp svneol=native#text/plain
tests/test/units/math/tdivmod.pp svneol=native#text/plain
tests/test/units/math/tmask.inc svneol=native#text/plain
tests/test/units/math/tmask.pp svneol=native#text/plain
tests/test/units/math/tmask2.pp svneol=native#text/plain
tests/test/units/math/tnaninf.pp svneol=native#text/plain
tests/test/units/math/tpower.pp svneol=native#text/pascal
tests/test/units/math/tsincos.pp svneol=native#text/pascal
tests/test/units/math/ttrig1.pp svneol=native#text/plain
tests/test/units/matrix/tinv1.pp svneol=native#text/pascal
tests/test/units/objects/testobj.pp svneol=native#text/plain
tests/test/units/objects/testobj1.pp svneol=native#text/plain
tests/test/units/objects/testobj2.pp svneol=native#text/plain
tests/test/units/sharemem/libtest.pp svneol=native#text/plain
tests/test/units/sharemem/test1.pp svneol=native#text/plain
tests/test/units/softfpu/sfttst.pp svneol=native#text/plain
tests/test/units/strings/tstrcopy.pp svneol=native#text/plain
tests/test/units/strings/tstrings1.pp svneol=native#text/plain
tests/test/units/strutils/posextest.pp svneol=native#text/plain
tests/test/units/system/interlocked1.pp svneol=native#text/plain
tests/test/units/system/tabs.pp svneol=native#text/plain
tests/test/units/system/talign.pp svneol=native#text/plain
tests/test/units/system/targs.pp svneol=native#text/plain
tests/test/units/system/tassert1.pp svneol=native#text/plain
tests/test/units/system/tassert2.pp svneol=native#text/plain
tests/test/units/system/tassert3.pp svneol=native#text/plain
tests/test/units/system/tassert4.pp svneol=native#text/plain
tests/test/units/system/tassert5.pp svneol=native#text/plain
tests/test/units/system/tassert6.pp svneol=native#text/plain
tests/test/units/system/tassert7.pp svneol=native#text/plain
tests/test/units/system/tassignd.pp svneol=native#text/plain
tests/test/units/system/tdir.pp svneol=native#text/plain
tests/test/units/system/testmac.txt svneol=native#text/plain
tests/test/units/system/testpc.txt svneol=native#text/plain
tests/test/units/system/teststk.pp svneol=native#text/plain
tests/test/units/system/testux.txt svneol=native#text/plain
tests/test/units/system/tgenstr.pp svneol=native#text/pascal
tests/test/units/system/tincdec.pp svneol=native#text/plain
tests/test/units/system/tint.pp svneol=native#text/plain
tests/test/units/system/tintstr.pp svneol=native#text/plain
tests/test/units/system/tio.pp svneol=native#text/plain
tests/test/units/system/tiorte.pp svneol=native#text/plain
tests/test/units/system/tjmp.pp svneol=native#text/plain
tests/test/units/system/tmem.pp svneol=native#text/plain
tests/test/units/system/todd.pp svneol=native#text/plain
tests/test/units/system/tparam.pp svneol=native#text/plain
tests/test/units/system/tpchlen.pp svneol=native#text/plain
tests/test/units/system/tpi.pp svneol=native#text/plain
tests/test/units/system/trandom.pp svneol=native#text/plain
tests/test/units/system/trdtxt01.pp svneol=native#text/plain
tests/test/units/system/trdtxt02.pp svneol=native#text/plain
tests/test/units/system/trdtxt03.pp svneol=native#text/plain
tests/test/units/system/tres.pp svneol=native#text/plain
tests/test/units/system/tres1.rc -text
tests/test/units/system/tres1.res -text
tests/test/units/system/tres1.txt -text
tests/test/units/system/tres1_it.txt svneol=native#text/plain
tests/test/units/system/tres2.pp svneol=native#text/plain
tests/test/units/system/tres2.txt -text
tests/test/units/system/tres2ext.pp svneol=native#text/plain
tests/test/units/system/tres3.pp svneol=native#text/plain
tests/test/units/system/tres3ext.pp svneol=native#text/plain
tests/test/units/system/tres4.pp svneol=native#text/plain
tests/test/units/system/tres4.res -text
tests/test/units/system/tresb.rc svneol=native#text/plain
tests/test/units/system/tresb.res -text
tests/test/units/system/tresext.pp svneol=native#text/plain
tests/test/units/system/tround.pp svneol=native#text/plain
tests/test/units/system/tseg.pp svneol=native#text/plain
tests/test/units/system/tsetstr.pp svneol=native#text/plain
tests/test/units/system/tsetstr2.pp svneol=native#text/plain
tests/test/units/system/tslice1.pp svneol=native#text/plain
tests/test/units/system/tslice2.pp svneol=native#text/plain
tests/test/units/system/tstr1.pp svneol=native#text/pascal
tests/test/units/system/tstring.pp svneol=native#text/plain
tests/test/units/system/ttrig.pas svneol=native#text/plain
tests/test/units/system/ttrunc.pp svneol=native#text/plain
tests/test/units/system/tval.inc svneol=native#text/plain
tests/test/units/system/tval.pp svneol=native#text/plain
tests/test/units/system/tval1.pp svneol=native#text/plain
tests/test/units/system/tval2.pp svneol=native#text/plain
tests/test/units/system/tval3.pp svneol=native#text/plain
tests/test/units/system/tval4.pp svneol=native#text/plain
tests/test/units/system/tval5.pp svneol=native#text/plain
tests/test/units/system/tvalc.pp svneol=native#text/plain
tests/test/units/sysutils/strtotimetest.pp svneol=native#text/plain
tests/test/units/sysutils/tastrcmp.pp svneol=native#text/plain
tests/test/units/sysutils/tastrcmp1.pp svneol=native#text/plain
tests/test/units/sysutils/tbytesof.pp svneol=native#text/pascal
tests/test/units/sysutils/tdirex.pp svneol=native#text/plain
tests/test/units/sysutils/tencodingerrors.pp svneol=native#text/pascal
tests/test/units/sysutils/tencodingtest.pp svneol=native#text/pascal
tests/test/units/sysutils/texec1.pp svneol=native#text/plain
tests/test/units/sysutils/texec2.pp svneol=native#text/plain
tests/test/units/sysutils/texpfncase.pp svneol=native#text/plain
tests/test/units/sysutils/textractquote.pp svneol=native#text/plain
tests/test/units/sysutils/tfile1.pp svneol=native#text/plain
tests/test/units/sysutils/tfile2.pp svneol=native#text/plain
tests/test/units/sysutils/tfilename.pp svneol=native#text/plain
tests/test/units/sysutils/tfloattostr.pp svneol=native#text/plain
tests/test/units/sysutils/tformat.pp svneol=native#text/plain
tests/test/units/sysutils/tlocale.pp svneol=native#text/plain
tests/test/units/sysutils/trwsync.pp svneol=native#text/plain
tests/test/units/sysutils/tsscanf.pp svneol=native#text/plain
tests/test/units/sysutils/tstrtobool.pp svneol=native#text/plain
tests/test/units/variants/tcustomvariant.pp svneol=native#text/plain
tests/test/units/variants/tvararrayofintf.pp svneol=native#text/plain
tests/test/uobjc24.pp svneol=native#text/plain
tests/test/uobjc26.pp svneol=native#text/plain
tests/test/uobjc27a.pp svneol=native#text/plain
tests/test/uobjc27b.pp svneol=native#text/plain
tests/test/uobjc30c.pp svneol=native#text/plain
tests/test/uobjc35d.pp svneol=native#text/plain
tests/test/uobjc35e.pp svneol=native#text/plain
tests/test/uobjc35f.pp svneol=native#text/plain
tests/test/uobjc35g.pp svneol=native#text/plain
tests/test/uobjc39.pp svneol=native#text/plain
tests/test/uobjc7.pp svneol=native#text/plain
tests/test/uobjcl1.pp svneol=native#text/plain
tests/test/uprec6.pp svneol=native#text/plain
tests/test/uprec7.pp svneol=native#text/plain
tests/test/uprocext1.pp svneol=native#text/plain
tests/test/uprocext2.pp svneol=native#text/plain
tests/test/urhlp14.pp svneol=native#text/pascal
tests/test/urhlp17.pp svneol=native#text/pascal
tests/test/utasout.pp svneol=native#text/plain
tests/test/uunit1.pp svneol=native#text/plain
tests/test/uunit2a.pp svneol=native#text/plain
tests/test/uunit2b.pp svneol=native#text/plain
tests/test/uunit3a.pp svneol=native#text/plain
tests/test/uunit3b.pp svneol=native#text/plain
tests/test/uunit3c.pp svneol=native#text/plain
tests/tstunits/MPWMake -text
tests/tstunits/Makefile svneol=native#text/plain
tests/tstunits/Makefile.fpc svneol=native#text/plain
tests/tstunits/erroru.pp svneol=native#text/plain
tests/tstunits/popuperr.pp svneol=native#text/plain
tests/tstunits/win32err.pp svneol=native#text/plain
tests/utils/Makefile svneol=native#text/plain
tests/utils/Makefile.fpc svneol=native#text/plain
tests/utils/bench.pp svneol=native#text/plain
tests/utils/concat.pp svneol=native#text/plain
tests/utils/dbdigest.pp svneol=native#text/plain
tests/utils/dbtests.pp svneol=native#text/plain
tests/utils/digest.pp svneol=native#text/plain
tests/utils/dotest.pp svneol=native#text/plain
tests/utils/fail.pp svneol=native#text/plain
tests/utils/fptime.pp svneol=native#text/plain
tests/utils/gparmake.pp svneol=native#text/plain
tests/utils/libtar.pas svneol=native#text/plain
tests/utils/macos/LinkRunDir -text
tests/utils/macos/LinkRunTests -text
tests/utils/macos/readme.txt svneol=native#text/plain
tests/utils/prepup.pp svneol=native#text/plain
tests/utils/redir.pp svneol=native#text/plain
tests/utils/testfail.pp svneol=native#text/plain
tests/utils/tests.sql -text
tests/utils/teststr.pp svneol=native#text/plain
tests/utils/testsuite/Makefile svneol=native#text/plain
tests/utils/testsuite/Makefile.fpc svneol=native#text/plain
tests/utils/testsuite/defaults.sql svneol=native#text/plain
tests/utils/testsuite/testsuite.lpi svneol=native#text/plain
tests/utils/testsuite/testsuite.pp svneol=native#text/plain
tests/utils/testsuite/testsuite.sql svneol=native#text/plain
tests/utils/testsuite/utests.pp svneol=native#text/plain
tests/utils/testu.pp svneol=native#text/plain
tests/utils/tresults.pp svneol=native#text/plain
tests/utils/variants/genvartests.pp svneol=native#text/plain
tests/utils/variants/processtests.sh svneol=native#text/plain
tests/webtbf/tw0744.pp svneol=native#text/plain
tests/webtbf/tw0769b.pp svneol=native#text/plain
tests/webtbf/tw0769c.pp svneol=native#text/plain
tests/webtbf/tw0784.pp svneol=native#text/plain
tests/webtbf/tw0807.pp svneol=native#text/plain
tests/webtbf/tw0840.pp svneol=native#text/plain
tests/webtbf/tw0855.pp svneol=native#text/plain
tests/webtbf/tw0856.pp svneol=native#text/plain
tests/webtbf/tw0890.pp svneol=native#text/plain
tests/webtbf/tw0890a.pp svneol=native#text/plain
tests/webtbf/tw0893.pp svneol=native#text/plain
tests/webtbf/tw0896.pp svneol=native#text/plain
tests/webtbf/tw0896a.pp svneol=native#text/plain
tests/webtbf/tw10081.pp svneol=native#text/plain
tests/webtbf/tw10425a.pp svneol=native#text/plain
tests/webtbf/tw10425b.pp svneol=native#text/plain
tests/webtbf/tw10425c.pp svneol=native#text/plain
tests/webtbf/tw10425d.pp svneol=native#text/plain
tests/webtbf/tw10425e.pp svneol=native#text/plain
tests/webtbf/tw10457.pp svneol=native#text/plain
tests/webtbf/tw10833a.pp svneol=native#text/plain
tests/webtbf/tw10849.pp svneol=native#text/plain
tests/webtbf/tw10890a.pp svneol=native#text/plain
tests/webtbf/tw10998a.pp svneol=native#text/plain
tests/webtbf/tw11254a.pp svneol=native#text/plain
tests/webtbf/tw11295a.pp svneol=native#text/plain
tests/webtbf/tw11295b.pp svneol=native#text/plain
tests/webtbf/tw1157a.pp svneol=native#text/plain
tests/webtbf/tw11619b.pp svneol=native#text/plain
tests/webtbf/tw11632.pp svneol=native#text/plain
tests/webtbf/tw11846.pp svneol=native#text/plain
tests/webtbf/tw11846c.pp svneol=native#text/plain
tests/webtbf/tw11848a.pp svneol=native#text/plain
tests/webtbf/tw11849a.pp svneol=native#text/plain
tests/webtbf/tw11862a.pp svneol=native#text/plain
tests/webtbf/tw11970.pp svneol=native#text/plain
tests/webtbf/tw12075.pp svneol=native#text/plain
tests/webtbf/tw12109a.pp svneol=native#text/plain
tests/webtbf/tw12303.pp svneol=native#text/plain
tests/webtbf/tw12329.pp svneol=native#text/plain
tests/webtbf/tw12365a.cfg svneol=native#text/plain
tests/webtbf/tw12365a.pp svneol=native#text/plain
tests/webtbf/tw12365b.cfg svneol=native#text/plain
tests/webtbf/tw12365b.pp svneol=native#text/plain
tests/webtbf/tw1238.pp svneol=native#text/plain
tests/webtbf/tw1251a.pp svneol=native#text/plain
tests/webtbf/tw1270.pp svneol=native#text/plain
tests/webtbf/tw12933.pp svneol=native#text/plain
tests/webtbf/tw1306.pp svneol=native#text/plain
tests/webtbf/tw13135.pp svneol=native#text/plain
tests/webtbf/tw1316.pp svneol=native#text/plain
tests/webtbf/tw1328.pp svneol=native#text/plain
tests/webtbf/tw13563a.pp svneol=native#text/plain
tests/webtbf/tw1365.pp svneol=native#text/plain
tests/webtbf/tw13815.pp svneol=native#text/plain
tests/webtbf/tw1395.pp svneol=native#text/plain
tests/webtbf/tw13956.pp svneol=native#text/plain
tests/webtbf/tw13971a.pp svneol=native#text/plain
tests/webtbf/tw13971b.pp svneol=native#text/plain
tests/webtbf/tw13971c.pp svneol=native#text/plain
tests/webtbf/tw13971d.pp svneol=native#text/plain
tests/webtbf/tw13971e.pp svneol=native#text/plain
tests/webtbf/tw13971f.pp svneol=native#text/plain
tests/webtbf/tw13992.pp svneol=native#text/plain
tests/webtbf/tw1407.pp svneol=native#text/plain
tests/webtbf/tw14104a.pp svneol=native#text/plain
tests/webtbf/tw14104b.pp svneol=native#text/plain
tests/webtbf/tw14104c.pp svneol=native#text/plain
tests/webtbf/tw14248.pp svneol=native#text/plain
tests/webtbf/tw1432.pp svneol=native#text/plain
tests/webtbf/tw14354.pp svneol=native#text/plain
tests/webtbf/tw14650.pp svneol=native#text/plain
tests/webtbf/tw14650a.pp svneol=native#text/plain
tests/webtbf/tw1467.pp svneol=native#text/plain
tests/webtbf/tw14713.pp svneol=native#text/plain
tests/webtbf/tw14713a.pp svneol=native#text/plain
tests/webtbf/tw14777.pp svneol=native#text/plain
tests/webtbf/tw14777a.pp svneol=native#text/plain
tests/webtbf/tw1483.pp svneol=native#text/plain
tests/webtbf/tw14849.pp svneol=native#text/plain
tests/webtbf/tw14862a.pp svneol=native#text/plain
tests/webtbf/tw14862b.pp svneol=native#text/plain
tests/webtbf/tw14862c.pp svneol=native#text/plain
tests/webtbf/tw14862d.pp svneol=native#text/plain
tests/webtbf/tw14862e.pp svneol=native#text/plain
tests/webtbf/tw14862f.pp svneol=native#text/plain
tests/webtbf/tw14862h.pp svneol=native#text/plain
tests/webtbf/tw14862i.pp svneol=native#text/plain
tests/webtbf/tw14929a.pp svneol=native#text/plain
tests/webtbf/tw14929b.pp svneol=native#text/plain
tests/webtbf/tw14946.pp svneol=native#text/plain
tests/webtbf/tw15287.pp svneol=native#text/plain
tests/webtbf/tw15288.pp svneol=native#text/plain
tests/webtbf/tw15303.pp svneol=native#text/plain
tests/webtbf/tw15391a.pp svneol=native#text/plain
tests/webtbf/tw15447.pp svneol=native#text/plain
tests/webtbf/tw15594a.pp svneol=native#text/plain
tests/webtbf/tw15594b.pp svneol=native#text/plain
tests/webtbf/tw15672.pp svneol=native#text/plain
tests/webtbf/tw15727b.pp svneol=native#text/plain
tests/webtbf/tw15777b.pp svneol=native#text/plain
tests/webtbf/tw1599.pp svneol=native#text/plain
tests/webtbf/tw1599b.pp svneol=native#text/plain
tests/webtbf/tw16022.pp svneol=native#text/plain
tests/webtbf/tw16203.pp svneol=native#text/plain
tests/webtbf/tw16219.pp svneol=native#text/plain
tests/webtbf/tw16219a.pp svneol=native#text/plain
tests/webtbf/tw16234.pp svneol=native#text/plain
tests/webtbf/tw1633.pp svneol=native#text/plain
tests/webtbf/tw1642.pp svneol=native#text/plain
tests/webtbf/tw1655.pp svneol=native#text/plain
tests/webtbf/tw1681.pp svneol=native#text/plain
tests/webtbf/tw17341.pp svneol=native#text/plain
tests/webtbf/tw17455.pp svneol=native#text/plain
tests/webtbf/tw1754.pp svneol=native#text/plain
tests/webtbf/tw1754b.pp svneol=native#text/plain
tests/webtbf/tw17646a.pp svneol=native#text/plain
tests/webtbf/tw1782.pp svneol=native#text/plain
tests/webtbf/tw18058a.pp svneol=native#text/plain
tests/webtbf/tw18058b.pp svneol=native#text/plain
tests/webtbf/tw18058c.pp svneol=native#text/plain
tests/webtbf/tw18096.pp svneol=native#text/pascal
tests/webtbf/tw18096c.pp svneol=native#text/pascal
tests/webtbf/tw18267.pp svneol=native#text/plain
tests/webtbf/tw1827.pp svneol=native#text/plain
tests/webtbf/tw1830.pp svneol=native#text/plain
tests/webtbf/tw1842.pp svneol=native#text/plain
tests/webtbf/tw1858.pp svneol=native#text/plain
tests/webtbf/tw18620.pp svneol=native#text/pascal
tests/webtbf/tw1905.pp svneol=native#text/plain
tests/webtbf/tw19213.pp svneol=native#text/plain
tests/webtbf/tw1927.pp svneol=native#text/plain
tests/webtbf/tw1928.pp svneol=native#text/plain
tests/webtbf/tw1939.pp svneol=native#text/plain
tests/webtbf/tw19434.pp svneol=native#text/plain
tests/webtbf/tw19463.pp svneol=native#text/pascal
tests/webtbf/tw1949.pp svneol=native#text/plain
tests/webtbf/tw19591.pp svneol=native#text/plain
tests/webtbf/tw1969.pp svneol=native#text/plain
tests/webtbf/tw1995.pp svneol=native#text/plain
tests/webtbf/tw19975.pp svneol=native#text/pascal
tests/webtbf/tw20095.pp svneol=native#text/plain
tests/webtbf/tw2018.pp svneol=native#text/plain
tests/webtbf/tw2037.pp svneol=native#text/plain
tests/webtbf/tw2046.pp svneol=native#text/plain
tests/webtbf/tw2053.pp svneol=native#text/plain
tests/webtbf/tw2053b.pp svneol=native#text/plain
tests/webtbf/tw20580.pp svneol=native#text/pascal
tests/webtbf/tw20661.pp svneol=native#text/plain
tests/webtbf/tw2070.pp svneol=native#text/plain
tests/webtbf/tw20721a.pp svneol=native#text/pascal
tests/webtbf/tw20721b.pp svneol=native#text/pascal
tests/webtbf/tw20721c.pp svneol=native#text/pascal
tests/webtbf/tw20907.pp svneol=native#text/plain
tests/webtbf/tw20907a.pp svneol=native#text/plain
tests/webtbf/tw21078.pp svneol=native#text/plain
tests/webtbf/tw21087.pp svneol=native#text/plain
tests/webtbf/tw21238.pp svneol=native#text/pascal
tests/webtbf/tw2128.pp svneol=native#text/plain
tests/webtbf/tw2129.pp svneol=native#text/plain
tests/webtbf/tw21363.pp svneol=native#text/pascal
tests/webtbf/tw21466.pas svneol=native#text/pascal
tests/webtbf/tw2154.pp svneol=native#text/plain
tests/webtbf/tw21566.pp svneol=native#text/pascal
tests/webtbf/tw2174.pp svneol=native#text/plain
tests/webtbf/tw21873.pp svneol=native#text/plain
tests/webtbf/tw2209.pp svneol=native#text/plain
tests/webtbf/tw22219.pp svneol=native#text/pascal
tests/webtbf/tw22343a.pp svneol=native#text/plain
tests/webtbf/tw22343b.pp svneol=native#text/plain
tests/webtbf/tw22343c.pp svneol=native#text/plain
tests/webtbf/tw22395.pp svneol=native#text/plain
tests/webtbf/tw2242.pp svneol=native#text/plain
tests/webtbf/tw22490a.pp svneol=native#text/plain
tests/webtbf/tw22665a.pp svneol=native#text/plain
tests/webtbf/tw22665b.pp svneol=native#text/plain
tests/webtbf/tw2273.pp svneol=native#text/plain
tests/webtbf/tw2281.pp svneol=native#text/plain
tests/webtbf/tw2285.pp svneol=native#text/plain
tests/webtbf/tw22941.pp svneol=native#text/plain
tests/webtbf/tw2357.pp svneol=native#text/plain
tests/webtbf/tw2359.pp svneol=native#text/plain
tests/webtbf/tw2362.pp svneol=native#text/plain
tests/webtbf/tw2383.pp svneol=native#text/plain
tests/webtbf/tw2400.pp svneol=native#text/plain
tests/webtbf/tw2403.pp svneol=native#text/plain
tests/webtbf/tw2414.pp svneol=native#text/plain
tests/webtbf/tw2478.pp svneol=native#text/plain
tests/webtbf/tw2562.pp svneol=native#text/plain
tests/webtbf/tw2657.pp svneol=native#text/plain
tests/webtbf/tw2670.pp svneol=native#text/plain
tests/webtbf/tw2719.pp svneol=native#text/plain
tests/webtbf/tw2721.pp svneol=native#text/plain
tests/webtbf/tw2724.pp svneol=native#text/plain
tests/webtbf/tw2739.pp svneol=native#text/plain
tests/webtbf/tw2751.pp svneol=native#text/plain
tests/webtbf/tw2752.pp svneol=native#text/plain
tests/webtbf/tw2787.pp svneol=native#text/plain
tests/webtbf/tw2795.pp svneol=native#text/plain
tests/webtbf/tw2853.pp svneol=native#text/plain
tests/webtbf/tw2853a.pp svneol=native#text/plain
tests/webtbf/tw2853b.pp svneol=native#text/plain
tests/webtbf/tw2853c.pp svneol=native#text/plain
tests/webtbf/tw2878.pp svneol=native#text/plain
tests/webtbf/tw2972.pp svneol=native#text/plain
tests/webtbf/tw2972b.pp svneol=native#text/plain
tests/webtbf/tw2983a.pp svneol=native#text/plain
tests/webtbf/tw2996.pp svneol=native#text/plain
tests/webtbf/tw3000.pp svneol=native#text/plain
tests/webtbf/tw3047.pp svneol=native#text/plain
tests/webtbf/tw3114.pp svneol=native#text/plain
tests/webtbf/tw3116.pp svneol=native#text/plain
tests/webtbf/tw3126.pp svneol=native#text/plain
tests/webtbf/tw3145.pp svneol=native#text/plain
tests/webtbf/tw3183.pp svneol=native#text/plain
tests/webtbf/tw3186.pp svneol=native#text/plain
tests/webtbf/tw3218.pp svneol=native#text/plain
tests/webtbf/tw3241.pp svneol=native#text/plain
tests/webtbf/tw3253.pp svneol=native#text/plain
tests/webtbf/tw3267.pp svneol=native#text/plain
tests/webtbf/tw3275.pp svneol=native#text/plain
tests/webtbf/tw3294.pp svneol=native#text/plain
tests/webtbf/tw3331.pp svneol=native#text/plain
tests/webtbf/tw3337.pp svneol=native#text/plain
tests/webtbf/tw3342.pp svneol=native#text/plain
tests/webtbf/tw3343.pp svneol=native#text/plain
tests/webtbf/tw3375.pp svneol=native#text/plain
tests/webtbf/tw3393.pp svneol=native#text/plain
tests/webtbf/tw3395.pp svneol=native#text/plain
tests/webtbf/tw3395a.pp svneol=native#text/plain
tests/webtbf/tw3450.pp svneol=native#text/plain
tests/webtbf/tw3473.pp svneol=native#text/plain
tests/webtbf/tw3480.pp svneol=native#text/plain
tests/webtbf/tw3480a.pp svneol=native#text/plain
tests/webtbf/tw3488.pp svneol=native#text/plain
tests/webtbf/tw3495.pp svneol=native#text/plain
tests/webtbf/tw3502.pp svneol=native#text/plain
tests/webtbf/tw3531.pp svneol=native#text/plain
tests/webtbf/tw3553.pp svneol=native#text/plain
tests/webtbf/tw3562.pp svneol=native#text/plain
tests/webtbf/tw3583.pp svneol=native#text/plain
tests/webtbf/tw3626.pp svneol=native#text/plain
tests/webtbf/tw3631.pp svneol=native#text/plain
tests/webtbf/tw3643.pp svneol=native#text/plain
tests/webtbf/tw3644.pp svneol=native#text/plain
tests/webtbf/tw3662.pp svneol=native#text/plain
tests/webtbf/tw3680.pp svneol=native#text/plain
tests/webtbf/tw3716.pp svneol=native#text/plain
tests/webtbf/tw3738.pp svneol=native#text/plain
tests/webtbf/tw3740.pp svneol=native#text/plain
tests/webtbf/tw3790.pp svneol=native#text/plain
tests/webtbf/tw3812.pp svneol=native#text/plain
tests/webtbf/tw3930a.pp svneol=native#text/plain
tests/webtbf/tw3931b.pp svneol=native#text/plain
tests/webtbf/tw3969.pp svneol=native#text/plain
tests/webtbf/tw4103.pp svneol=native#text/plain
tests/webtbf/tw4111.pp svneol=native#text/plain
tests/webtbf/tw4139.pp svneol=native#text/plain
tests/webtbf/tw4144.pp svneol=native#text/plain
tests/webtbf/tw4153.pp svneol=native#text/plain
tests/webtbf/tw4227.pp svneol=native#text/plain
tests/webtbf/tw4244.pp svneol=native#text/plain
tests/webtbf/tw4256.pp svneol=native#text/plain
tests/webtbf/tw4359.pp svneol=native#text/plain
tests/webtbf/tw4445.pp svneol=native#text/plain
tests/webtbf/tw4529.pp svneol=native#text/plain
tests/webtbf/tw4554a.pp svneol=native#text/plain
tests/webtbf/tw4554b.pp svneol=native#text/plain
tests/webtbf/tw4554c.pp svneol=native#text/plain
tests/webtbf/tw4554d.pp svneol=native#text/plain
tests/webtbf/tw4569a.pp svneol=native#text/plain
tests/webtbf/tw4569b.pp svneol=native#text/plain
tests/webtbf/tw4619a.pp svneol=native#text/plain
tests/webtbf/tw4619b.pp svneol=native#text/plain
tests/webtbf/tw4647.pp svneol=native#text/plain
tests/webtbf/tw4651.pp svneol=native#text/plain
tests/webtbf/tw4695.pp svneol=native#text/plain
tests/webtbf/tw4724.pp svneol=native#text/plain
tests/webtbf/tw4737.pp svneol=native#text/plain
tests/webtbf/tw4757.pp svneol=native#text/plain
tests/webtbf/tw4764.pp svneol=native#text/plain
tests/webtbf/tw4777.pp svneol=native#text/plain
tests/webtbf/tw4778a.pp svneol=native#text/plain
tests/webtbf/tw4781a.pp svneol=native#text/plain
tests/webtbf/tw4781b.pp svneol=native#text/plain
tests/webtbf/tw4893d.pp svneol=native#text/plain
tests/webtbf/tw4893e.pp svneol=native#text/plain
tests/webtbf/tw4911.pp svneol=native#text/plain
tests/webtbf/tw4913.pp svneol=native#text/plain
tests/webtbf/tw5896a.pp svneol=native#text/plain
tests/webtbf/tw6036b.pp svneol=native#text/plain
tests/webtbf/tw6420.pp svneol=native#text/plain
tests/webtbf/tw6631.pp svneol=native#text/plain
tests/webtbf/tw6686.pp svneol=native#text/plain
tests/webtbf/tw6796.pp svneol=native#text/plain
tests/webtbf/tw6797a.pp svneol=native#text/plain
tests/webtbf/tw6797b.pp svneol=native#text/plain
tests/webtbf/tw6922.pp svneol=native#text/plain
tests/webtbf/tw6957.pp svneol=native#text/plain
tests/webtbf/tw6970.pp svneol=native#text/plain
tests/webtbf/tw7070.pp svneol=native#text/plain
tests/webtbf/tw7322.pp svneol=native#text/plain
tests/webtbf/tw7438.pp svneol=native#text/plain
tests/webtbf/tw7438a.pp svneol=native#text/plain
tests/webtbf/tw7752.pp svneol=native#text/plain
tests/webtbf/tw7989.pp svneol=native#text/plain
tests/webtbf/tw8019.pp svneol=native#text/plain
tests/webtbf/tw8031.pp svneol=native#text/plain
tests/webtbf/tw8079.pp svneol=native#text/plain
tests/webtbf/tw8140a.pp svneol=native#text/plain
tests/webtbf/tw8140c.pp svneol=native#text/plain
tests/webtbf/tw8140d.pp svneol=native#text/plain
tests/webtbf/tw8140e.pp svneol=native#text/plain
tests/webtbf/tw8150.pp svneol=native#text/plain
tests/webtbf/tw8150b.pp svneol=native#text/plain
tests/webtbf/tw8150c.pp svneol=native#text/plain
tests/webtbf/tw8150e.pp svneol=native#text/plain
tests/webtbf/tw8150f.pp svneol=native#text/plain
tests/webtbf/tw8150g.pp svneol=native#text/plain
tests/webtbf/tw8151b.pp svneol=native#text/plain
tests/webtbf/tw8151c.pp svneol=native#text/plain
tests/webtbf/tw8264a.pp svneol=native#text/plain
tests/webtbf/tw8398.pp svneol=native#text/plain
tests/webtbf/tw8451.pp svneol=native#text/plain
tests/webtbf/tw8465a.pp svneol=native#text/plain
tests/webtbf/tw8528.pp svneol=native#text/plain
tests/webtbf/tw8583.pp svneol=native#text/plain
tests/webtbf/tw8588.pp svneol=native#text/plain
tests/webtbf/tw8591.pp svneol=native#text/plain
tests/webtbf/tw8717.pp svneol=native#text/plain
tests/webtbf/tw8738.pas svneol=native#text/plain
tests/webtbf/tw8777a.pp svneol=native#text/plain
tests/webtbf/tw8777b.pp svneol=native#text/plain
tests/webtbf/tw8777c.pp svneol=native#text/plain
tests/webtbf/tw8777d.pp svneol=native#text/plain
tests/webtbf/tw8777e.pp svneol=native#text/plain
tests/webtbf/tw8777h.pp svneol=native#text/plain
tests/webtbf/tw8777j.pp svneol=native#text/plain
tests/webtbf/tw8777k.pp svneol=native#text/plain
tests/webtbf/tw8780a.pp svneol=native#text/plain
tests/webtbf/tw8780b.pp svneol=native#text/plain
tests/webtbf/tw8780c.pp svneol=native#text/plain
tests/webtbf/tw8781.pp svneol=native#text/plain
tests/webtbf/tw9015.pp svneol=native#text/plain
tests/webtbf/tw9039a.pp svneol=native#text/plain
tests/webtbf/tw9039b.pp svneol=native#text/plain
tests/webtbf/tw9039c.pp svneol=native#text/plain
tests/webtbf/tw9039d.pp svneol=native#text/plain
tests/webtbf/tw9053.pp svneol=native#text/plain
tests/webtbf/tw9072a.pp svneol=native#text/plain
tests/webtbf/tw9072b.pp svneol=native#text/plain
tests/webtbf/tw9176a.pp svneol=native#text/plain
tests/webtbf/tw9225.pp svneol=native#text/plain
tests/webtbf/tw9306c.pp svneol=native#text/plain
tests/webtbf/tw9499.pp svneol=native#text/plain
tests/webtbf/tw9499a.pp svneol=native#text/plain
tests/webtbf/tw9509.pp svneol=native#text/plain
tests/webtbf/tw9522.pp svneol=native#text/plain
tests/webtbf/tw9522a.pp svneol=native#text/plain
tests/webtbf/tw9522b.pp svneol=native#text/plain
tests/webtbf/tw9522c.pp svneol=native#text/plain
tests/webtbf/tw9522d.pp svneol=native#text/plain
tests/webtbf/tw9522e.pp svneol=native#text/plain
tests/webtbf/tw9551.pp svneol=native#text/plain
tests/webtbf/tw9551b.pp svneol=native#text/plain
tests/webtbf/tw9579a.pp svneol=native#text/plain
tests/webtbf/tw9579b.pp svneol=native#text/plain
tests/webtbf/tw9894b.pp svneol=native#text/plain
tests/webtbf/tw9918a.pp svneol=native#text/plain
tests/webtbf/tw9918b.pp svneol=native#text/plain
tests/webtbf/tw9918c.pp svneol=native#text/plain
tests/webtbf/tw9918d.pp svneol=native#text/plain
tests/webtbf/uw0744.pp svneol=native#text/plain
tests/webtbf/uw0840a.pp svneol=native#text/plain
tests/webtbf/uw0840b.pp svneol=native#text/plain
tests/webtbf/uw0856.pp svneol=native#text/plain
tests/webtbf/uw2414.pp svneol=native#text/plain
tests/webtbf/uw3450.pp svneol=native#text/plain
tests/webtbf/uw3969.pp svneol=native#text/plain
tests/webtbf/uw4103.pp svneol=native#text/plain
tests/webtbf/uw6922.pp svneol=native#text/plain
tests/webtbf/uw8738a.pas svneol=native#text/plain
tests/webtbf/uw8738b.pas svneol=native#text/plain
tests/webtbs/tu2002.pp svneol=native#text/plain
tests/webtbs/tw0555.pp svneol=native#text/plain
tests/webtbs/tw0630.pp svneol=native#text/plain
tests/webtbs/tw0701a.pp svneol=native#text/plain
tests/webtbs/tw0701b.pp svneol=native#text/plain
tests/webtbs/tw0711.pp svneol=native#text/plain
tests/webtbs/tw0719.pp svneol=native#text/plain
tests/webtbs/tw0735.pp svneol=native#text/plain
tests/webtbs/tw0736.pp svneol=native#text/plain
tests/webtbs/tw0738.pp svneol=native#text/plain
tests/webtbs/tw0739.pp svneol=native#text/plain
tests/webtbs/tw0748.pp svneol=native#text/plain
tests/webtbs/tw0751.pp svneol=native#text/plain
tests/webtbs/tw0753.pp svneol=native#text/plain
tests/webtbs/tw0754.pp svneol=native#text/plain
tests/webtbs/tw0755.pp svneol=native#text/plain
tests/webtbs/tw07584.pp svneol=native#text/plain
tests/webtbs/tw07584a.pp svneol=native#text/plain
tests/webtbs/tw0760.pp svneol=native#text/plain
tests/webtbs/tw0761.pp svneol=native#text/plain
tests/webtbs/tw0769.pp svneol=native#text/plain
tests/webtbs/tw0772.pp svneol=native#text/plain
tests/webtbs/tw0776.pp svneol=native#text/plain
tests/webtbs/tw0784.pp svneol=native#text/plain
tests/webtbs/tw0788.pp svneol=native#text/plain
tests/webtbs/tw0789.pp svneol=native#text/plain
tests/webtbs/tw0793.pp svneol=native#text/plain
tests/webtbs/tw0797a.pp svneol=native#text/plain
tests/webtbs/tw0797b.pp svneol=native#text/plain
tests/webtbs/tw0801.pp svneol=native#text/plain
tests/webtbs/tw0802.pp svneol=native#text/plain
tests/webtbs/tw0803.pp svneol=native#text/plain
tests/webtbs/tw0809.pp svneol=native#text/plain
tests/webtbs/tw0810.pp svneol=native#text/plain
tests/webtbs/tw0812.pp svneol=native#text/plain
tests/webtbs/tw0813.pp svneol=native#text/plain
tests/webtbs/tw0814.pp svneol=native#text/plain
tests/webtbs/tw0815.pp svneol=native#text/plain
tests/webtbs/tw0816.pp svneol=native#text/plain
tests/webtbs/tw0819.pp svneol=native#text/plain
tests/webtbs/tw0825.pp svneol=native#text/plain
tests/webtbs/tw0839.pp svneol=native#text/plain
tests/webtbs/tw0848.pp svneol=native#text/plain
tests/webtbs/tw0852.pp svneol=native#text/plain
tests/webtbs/tw0859.pp svneol=native#text/plain
tests/webtbs/tw0866.pp svneol=native#text/plain
tests/webtbs/tw0868.pp svneol=native#text/plain
tests/webtbs/tw0869.pp svneol=native#text/plain
tests/webtbs/tw0870.pp svneol=native#text/plain
tests/webtbs/tw0873a.pp svneol=native#text/plain
tests/webtbs/tw0873b.pp svneol=native#text/plain
tests/webtbs/tw0876.pp svneol=native#text/plain
tests/webtbs/tw0877.pp svneol=native#text/plain
tests/webtbs/tw0879.pp svneol=native#text/plain
tests/webtbs/tw0881.pp svneol=native#text/plain
tests/webtbs/tw0882.pp svneol=native#text/plain
tests/webtbs/tw0890.pp svneol=native#text/plain
tests/webtbs/tw0891.pp svneol=native#text/plain
tests/webtbs/tw0892.pp svneol=native#text/plain
tests/webtbs/tw0895.pp svneol=native#text/plain
tests/webtbs/tw0896.pp svneol=native#text/plain
tests/webtbs/tw0900.pp svneol=native#text/plain
tests/webtbs/tw0902.pp svneol=native#text/plain
tests/webtbs/tw0909.pp svneol=native#text/plain
tests/webtbs/tw0911.pp svneol=native#text/plain
tests/webtbs/tw0912.pp svneol=native#text/plain
tests/webtbs/tw0918.pp svneol=native#text/plain
tests/webtbs/tw0919.pp svneol=native#text/plain
tests/webtbs/tw0922.pp svneol=native#text/plain
tests/webtbs/tw0925.pp svneol=native#text/plain
tests/webtbs/tw0932.pp svneol=native#text/plain
tests/webtbs/tw0934.pp svneol=native#text/plain
tests/webtbs/tw0935.pp svneol=native#text/plain
tests/webtbs/tw0937.pp svneol=native#text/plain
tests/webtbs/tw0938.pp svneol=native#text/plain
tests/webtbs/tw0944.pp svneol=native#text/plain
tests/webtbs/tw0947.pp svneol=native#text/plain
tests/webtbs/tw0961.pp svneol=native#text/plain
tests/webtbs/tw0965.pp svneol=native#text/plain
tests/webtbs/tw0966.pp svneol=native#text/plain
tests/webtbs/tw0976.pp svneol=native#text/plain
tests/webtbs/tw10002.pp svneol=native#text/plain
tests/webtbs/tw10009.pp svneol=native#text/plain
tests/webtbs/tw10013.pp svneol=native#text/plain
tests/webtbs/tw10033.pp svneol=native#text/plain
tests/webtbs/tw10042.pp svneol=native#text/plain
tests/webtbs/tw10072.pp svneol=native#text/plain
tests/webtbs/tw10159.pp svneol=native#text/plain
tests/webtbs/tw10203.pp svneol=native#text/plain
tests/webtbs/tw1021.pp svneol=native#text/plain
tests/webtbs/tw10210.pp svneol=native#text/plain
tests/webtbs/tw10224.pp svneol=native#text/plain
tests/webtbs/tw1023.pp svneol=native#text/plain
tests/webtbs/tw10233.pp svneol=native#text/plain
tests/webtbs/tw10247.pp svneol=native#text/plain
tests/webtbs/tw10247b.pp svneol=native#text/plain
tests/webtbs/tw10320.pp svneol=native#text/plain
tests/webtbs/tw10350.pp svneol=native#text/plain
tests/webtbs/tw10371.pp svneol=native#text/plain
tests/webtbs/tw1041.pp svneol=native#text/plain
tests/webtbs/tw10425.pp svneol=native#text/plain
tests/webtbs/tw1044.pp svneol=native#text/plain
tests/webtbs/tw10454.pp svneol=native#text/plain
tests/webtbs/tw1046.pp svneol=native#text/plain
tests/webtbs/tw10482.pp svneol=native#text/plain
tests/webtbs/tw10489.pp svneol=native#text/plain
tests/webtbs/tw10492.pp svneol=native#text/plain
tests/webtbs/tw10493.pp svneol=native#text/plain
tests/webtbs/tw10495.pp svneol=native#text/plain
tests/webtbs/tw1050.pp svneol=native#text/plain
tests/webtbs/tw10519.pp svneol=native#text/plain
tests/webtbs/tw10540.pp svneol=native#text/plain
tests/webtbs/tw1061.pp svneol=native#text/plain
tests/webtbs/tw10623.pp svneol=native#text/plain
tests/webtbs/tw10641.pp svneol=native#text/plain
tests/webtbs/tw1066a.pp svneol=native#text/plain
tests/webtbs/tw1066b.pp svneol=native#text/plain
tests/webtbs/tw1068.pp svneol=native#text/plain
tests/webtbs/tw10681.pp svneol=native#text/plain
tests/webtbs/tw10684.pp svneol=native#text/plain
tests/webtbs/tw1071.pp svneol=native#text/plain
tests/webtbs/tw10717.pp svneol=native#text/plain
tests/webtbs/tw10727.pp svneol=native#text/plain
tests/webtbs/tw1073.pp svneol=native#text/plain
tests/webtbs/tw10736.pp svneol=native#text/plain
tests/webtbs/tw10753.pp svneol=native#text/plain
tests/webtbs/tw10753a.pp svneol=native#text/plain
tests/webtbs/tw10757.pp svneol=native#text/plain
tests/webtbs/tw10768.pp svneol=native#text/plain
tests/webtbs/tw10790.pp svneol=native#text/plain
tests/webtbs/tw10791.pp svneol=native#text/plain
tests/webtbs/tw10795.pp svneol=native#text/plain
tests/webtbs/tw10800.pp svneol=native#text/plain
tests/webtbs/tw10807.pp svneol=native#text/plain
tests/webtbs/tw1081.pp svneol=native#text/plain
tests/webtbs/tw10815.pp svneol=native#text/plain
tests/webtbs/tw10825.pp svneol=native#text/plain
tests/webtbs/tw10831.pp svneol=native#text/plain
tests/webtbs/tw10833.pp svneol=native#text/plain
tests/webtbs/tw10863.pp svneol=native#text/plain
tests/webtbs/tw10890.pp svneol=native#text/plain
tests/webtbs/tw10897.pp svneol=native#text/plain
tests/webtbs/tw1090.pp svneol=native#text/plain
tests/webtbs/tw1092.pp svneol=native#text/plain
tests/webtbs/tw10920.pp svneol=native#text/plain
tests/webtbs/tw10927.pp svneol=native#text/plain
tests/webtbs/tw10931.pp svneol=native#text/plain
tests/webtbs/tw1096.pp svneol=native#text/plain
tests/webtbs/tw10966.pp svneol=native#text/plain
tests/webtbs/tw1097.pp svneol=native#text/plain
tests/webtbs/tw10979.pp svneol=native#text/plain
tests/webtbs/tw10998.pp svneol=native#text/plain
tests/webtbs/tw11006.pp svneol=native#text/plain
tests/webtbs/tw11027.pp svneol=native#text/plain
tests/webtbs/tw1103.pp svneol=native#text/plain
tests/webtbs/tw11033.pp svneol=native#text/plain
tests/webtbs/tw11039a.pp svneol=native#text/plain
tests/webtbs/tw11039b.pp svneol=native#text/plain
tests/webtbs/tw1104.pp svneol=native#text/plain
tests/webtbs/tw11042.pp svneol=native#text/plain
tests/webtbs/tw11053.pp svneol=native#text/plain
tests/webtbs/tw1111.pp svneol=native#text/plain
tests/webtbs/tw11139.pp svneol=native#text/plain
tests/webtbs/tw11169.pp svneol=native#text/plain
tests/webtbs/tw1117.pp svneol=native#text/plain
tests/webtbs/tw11176.pp svneol=native#text/plain
tests/webtbs/tw11182.pp svneol=native#text/plain
tests/webtbs/tw11216.pp svneol=native#text/plain
tests/webtbs/tw1122.pp svneol=native#text/plain
tests/webtbs/tw1123.pp svneol=native#text/plain
tests/webtbs/tw1124.pp svneol=native#text/plain
tests/webtbs/tw11254.pp svneol=native#text/plain
tests/webtbs/tw11255.pp svneol=native#text/plain
tests/webtbs/tw11288.pp svneol=native#text/plain
tests/webtbs/tw11290.pp svneol=native#text/plain
tests/webtbs/tw11308.pp svneol=native#text/plain
tests/webtbs/tw11309.pp svneol=native#text/plain
tests/webtbs/tw11312.pp svneol=native#text/plain
tests/webtbs/tw1132.pp svneol=native#text/plain
tests/webtbs/tw1133.pp svneol=native#text/plain
tests/webtbs/tw11349.pp svneol=native#text/plain
tests/webtbs/tw11354.pp svneol=native#text/plain
tests/webtbs/tw11369.pp svneol=native#text/plain
tests/webtbs/tw11371.pp svneol=native#text/plain
tests/webtbs/tw11372.pp svneol=native#text/plain
tests/webtbs/tw11392.pp svneol=native#text/plain
tests/webtbs/tw11431.pp svneol=native#text/plain
tests/webtbs/tw11435b.pp svneol=native#text/plain
tests/webtbs/tw11435c.pp svneol=native#text/plain
tests/webtbs/tw11436.pp svneol=native#text/plain
tests/webtbs/tw1152.pp svneol=native#text/plain
tests/webtbs/tw11543.pp svneol=native#text/plain
tests/webtbs/tw11563.pp svneol=native#text/plain
tests/webtbs/tw11568.pp svneol=native#text/plain
tests/webtbs/tw1157.pp svneol=native#text/plain
tests/webtbs/tw1157b.pp svneol=native#text/plain
tests/webtbs/tw11619.pp svneol=native#text/plain
tests/webtbs/tw11619a.pp svneol=native#text/plain
tests/webtbs/tw11638.pp svneol=native#text/plain
tests/webtbs/tw11711.pp svneol=native#text/plain
tests/webtbs/tw11762.pp svneol=native#text/plain
tests/webtbs/tw11763.pp svneol=native#text/plain
tests/webtbs/tw11771.pp svneol=native#text/plain
tests/webtbs/tw11786.pp svneol=native#text/plain
tests/webtbs/tw11791.pp svneol=native#text/plain
tests/webtbs/tw1181.pp svneol=native#text/plain
tests/webtbs/tw11825.pp svneol=native#text/plain
tests/webtbs/tw11846a.pp svneol=native#text/plain
tests/webtbs/tw11846b.pp svneol=native#text/plain
tests/webtbs/tw11848.pp svneol=native#text/plain
tests/webtbs/tw11849.pp svneol=native#text/plain
tests/webtbs/tw11852.pp svneol=native#text/plain
tests/webtbs/tw11859.pp svneol=native#text/plain
tests/webtbs/tw11861.pp svneol=native#text/plain
tests/webtbs/tw11862.pp svneol=native#text/plain
tests/webtbs/tw11896.pp svneol=native#text/plain
tests/webtbs/tw11937.pp svneol=native#text/plain
tests/webtbs/tw12000.pp svneol=native#text/plain
tests/webtbs/tw1203.pp svneol=native#text/plain
tests/webtbs/tw12038.pp svneol=native#text/plain
tests/webtbs/tw1204.pp svneol=native#text/plain
tests/webtbs/tw12048.pp svneol=native#text/plain
tests/webtbs/tw12050a.pp svneol=native#text/plain
tests/webtbs/tw12050b.pp svneol=native#text/plain
tests/webtbs/tw12051.pp svneol=native#text/plain
tests/webtbs/tw1207.pp svneol=native#text/plain
tests/webtbs/tw12076.pp svneol=native#text/plain
tests/webtbs/tw12109.pp svneol=native#text/plain
tests/webtbs/tw12137.pp svneol=native#text/plain
tests/webtbs/tw12151.pp svneol=native#text/plain
tests/webtbs/tw12186.pp svneol=native#text/plain
tests/webtbs/tw12202.pp svneol=native#text/plain
tests/webtbs/tw12207.pp svneol=native#text/pascal
tests/webtbs/tw12214.pp svneol=native#text/plain
tests/webtbs/tw1222.pp svneol=native#text/plain
tests/webtbs/tw12224.pp svneol=native#text/plain
tests/webtbs/tw1223.pp svneol=native#text/plain
tests/webtbs/tw12233.pp svneol=native#text/plain
tests/webtbs/tw12237.pp svneol=native#text/plain
tests/webtbs/tw12242.pp svneol=native#text/plain
tests/webtbs/tw12242a.pp svneol=native#text/plain
tests/webtbs/tw12249.pp svneol=native#text/plain
tests/webtbs/tw12255.pp svneol=native#text/plain
tests/webtbs/tw1228.pp svneol=native#text/plain
tests/webtbs/tw1229.pp svneol=native#text/plain
tests/webtbs/tw12318.pp svneol=native#text/plain
tests/webtbs/tw12385.pp svneol=native#text/plain
tests/webtbs/tw12404.pp svneol=native#text/plain
tests/webtbs/tw1250.pp svneol=native#text/plain
tests/webtbs/tw12508a.pp svneol=native#text/plain
tests/webtbs/tw1251b.pp svneol=native#text/plain
tests/webtbs/tw1255.pp svneol=native#text/plain
tests/webtbs/tw12575.pp svneol=native#text/plain
tests/webtbs/tw12597.pp svneol=native#text/plain
tests/webtbs/tw12614.pp svneol=native#text/plain
tests/webtbs/tw12685.pp svneol=native#text/plain
tests/webtbs/tw1269.pp svneol=native#text/plain
tests/webtbs/tw12704a.pp svneol=native#text/plain
tests/webtbs/tw12704b.pp svneol=native#text/plain
tests/webtbs/tw1275.pp svneol=native#text/plain
tests/webtbs/tw12756.pp svneol=native#text/plain
tests/webtbs/tw12788.pp svneol=native#text/plain
tests/webtbs/tw1279.pp svneol=native#text/plain
tests/webtbs/tw1283.pp svneol=native#text/plain
tests/webtbs/tw1284.pp svneol=native#text/plain
tests/webtbs/tw1286.pp svneol=native#text/plain
tests/webtbs/tw12894.pp svneol=native#text/plain
tests/webtbs/tw12942.pp svneol=native#text/plain
tests/webtbs/tw1295.pp svneol=native#text/plain
tests/webtbs/tw12985.pp svneol=native#text/plain
tests/webtbs/tw12987a.pp svneol=native#text/plain
tests/webtbs/tw12987b.pp svneol=native#text/plain
tests/webtbs/tw1299.pp svneol=native#text/plain
tests/webtbs/tw12993.pp svneol=native#text/plain
tests/webtbs/tw13015.pp svneol=native#text/plain
tests/webtbs/tw13019.pp svneol=native#text/plain
tests/webtbs/tw13075.pp svneol=native#text/plain
tests/webtbs/tw1310.pp svneol=native#text/plain
tests/webtbs/tw13110.pp svneol=native#text/plain
tests/webtbs/tw13133.pp svneol=native#text/plain
tests/webtbs/tw1318.pp svneol=native#text/plain
tests/webtbs/tw13186.pp svneol=native#text/plain
tests/webtbs/tw13187.pp svneol=native#text/plain
tests/webtbs/tw13210.pp svneol=native#text/plain
tests/webtbs/tw1323.pp svneol=native#text/plain
tests/webtbs/tw1327.pp svneol=native#text/plain
tests/webtbs/tw13281.pp svneol=native#text/plain
tests/webtbs/tw13294.pp svneol=native#text/plain
tests/webtbs/tw13307.pp svneol=native#text/plain
tests/webtbs/tw1331.pp svneol=native#text/plain
tests/webtbs/tw13313.pp svneol=native#text/plain
tests/webtbs/tw13313a.pp svneol=native#text/plain
tests/webtbs/tw13318.pp svneol=native#text/plain
tests/webtbs/tw1333.pp svneol=native#text/plain
tests/webtbs/tw13343.pp svneol=native#text/plain
tests/webtbs/tw13345.pp svneol=native#text/plain
tests/webtbs/tw13345x.pp svneol=native#text/plain
tests/webtbs/tw13456.pp svneol=native#text/plain
tests/webtbs/tw1348.pp svneol=native#text/plain
tests/webtbs/tw1351.pp svneol=native#text/plain
tests/webtbs/tw13512.pp svneol=native#text/plain
tests/webtbs/tw13536.pp svneol=native#text/plain
tests/webtbs/tw13552.pp svneol=native#text/plain
tests/webtbs/tw13553.pp svneol=native#text/plain
tests/webtbs/tw13563.pp svneol=native#text/plain
tests/webtbs/tw13583.pp svneol=native#text/plain
tests/webtbs/tw13596.pp svneol=native#text/plain
tests/webtbs/tw13596a.pp svneol=native#text/plain
tests/webtbs/tw13619.pp svneol=native#text/plain
tests/webtbs/tw13622.pp svneol=native#text/plain
tests/webtbs/tw13628a.pp svneol=native#text/plain
tests/webtbs/tw13628b.pp svneol=native#text/plain
tests/webtbs/tw13639.pp svneol=native#text/plain
tests/webtbs/tw1364.pp svneol=native#text/plain
tests/webtbs/tw1365.pp svneol=native#text/plain
tests/webtbs/tw13696.inc svneol=native#text/plain
tests/webtbs/tw13696.pp svneol=native#text/plain
tests/webtbs/tw1374.pp svneol=native#text/plain
tests/webtbs/tw1375.pp svneol=native#text/plain
tests/webtbs/tw1376.pp svneol=native#text/plain
tests/webtbs/tw13763.pp svneol=native#text/plain
tests/webtbs/tw13813.pp svneol=native#text/plain
tests/webtbs/tw13820.pp svneol=native#text/plain
tests/webtbs/tw13840/doit.sh svneol=LF#text/plain eol=lf
tests/webtbs/tw13840/tw13840a.pp svneol=native#text/plain
tests/webtbs/tw13840/tw13840b.pp svneol=native#text/plain
tests/webtbs/tw13840/tw13840c.pp svneol=native#text/plain
tests/webtbs/tw13840/tw13840d.pp svneol=native#text/plain
tests/webtbs/tw13872.pp svneol=native#text/plain
tests/webtbs/tw13890.pp svneol=native#text/plain
tests/webtbs/tw13948.pp svneol=native#text/plain
tests/webtbs/tw13948a.pp svneol=native#text/plain
tests/webtbs/tw13948b.pp svneol=native#text/plain
tests/webtbs/tw1398.pp svneol=native#text/plain
tests/webtbs/tw13984.pp svneol=native#text/plain
tests/webtbs/tw13992a.pp svneol=native#text/plain
tests/webtbs/tw1401.pp svneol=native#text/plain
tests/webtbs/tw14019.pp svneol=native#text/plain
tests/webtbs/tw14020.pp svneol=native#text/plain
tests/webtbs/tw14020a.pp svneol=native#text/plain
tests/webtbs/tw14040.pp svneol=native#text/plain
tests/webtbs/tw14067.pp svneol=native#text/plain
tests/webtbs/tw1407.pp svneol=native#text/plain
tests/webtbs/tw1408.pp svneol=native#text/plain
tests/webtbs/tw1409.pp svneol=native#text/plain
tests/webtbs/tw14092.pp svneol=native#text/pascal
tests/webtbs/tw1412.pp svneol=native#text/plain
tests/webtbs/tw14124.pp svneol=native#text/plain
tests/webtbs/tw14134.pp svneol=native#text/plain
tests/webtbs/tw1414.pp svneol=native#text/plain
tests/webtbs/tw14143.pp svneol=native#text/plain
tests/webtbs/tw14145.pp svneol=native#text/plain
tests/webtbs/tw14149.pp svneol=native#text/plain
tests/webtbs/tw14155.pp svneol=native#text/plain
tests/webtbs/tw1416.pp svneol=native#text/plain
tests/webtbs/tw14174.pp svneol=native#text/plain
tests/webtbs/tw14230.pp svneol=native#text/plain
tests/webtbs/tw14236.pp svneol=native#text/plain
tests/webtbs/tw1430.pp svneol=native#text/plain
tests/webtbs/tw14307.pp svneol=native#text/plain
tests/webtbs/tw14315.pp svneol=native#text/plain
tests/webtbs/tw1433.pp svneol=native#text/plain
tests/webtbs/tw14363.pp svneol=native#text/plain
tests/webtbs/tw14388.pp svneol=native#text/pascal
tests/webtbs/tw14403.pp svneol=native#text/plain
tests/webtbs/tw14418.pp svneol=native#text/plain
tests/webtbs/tw1445.pp svneol=native#text/plain
tests/webtbs/tw1450.pp svneol=native#text/plain
tests/webtbs/tw1451.pp svneol=native#text/plain
tests/webtbs/tw14514.pp svneol=native#text/plain
tests/webtbs/tw14536.pp svneol=native#text/plain
tests/webtbs/tw14553.pp svneol=native#text/pascal
tests/webtbs/tw14566.pp svneol=native#text/pascal
tests/webtbs/tw14617.pp svneol=native#text/plain
tests/webtbs/tw1470.pp svneol=native#text/plain
tests/webtbs/tw1472.pp svneol=native#text/plain
tests/webtbs/tw14729.pp svneol=native#text/plain
tests/webtbs/tw14740.pp svneol=native#text/plain
tests/webtbs/tw14743.pp svneol=native#text/pascal
tests/webtbs/tw1477.pp svneol=native#text/plain
tests/webtbs/tw1479.pp svneol=native#text/plain
tests/webtbs/tw14798.pp svneol=native#text/plain
tests/webtbs/tw14812.pp svneol=native#text/plain
tests/webtbs/tw14841.pp svneol=native#text/plain
tests/webtbs/tw1485.pp svneol=native#text/plain
tests/webtbs/tw14862g.pp svneol=native#text/plain
tests/webtbs/tw1489.pp svneol=native#text/plain
tests/webtbs/tw14941.pp svneol=native#text/plain
tests/webtbs/tw14941a.pp svneol=native#text/plain
tests/webtbs/tw14958a.pp svneol=native#text/plain
tests/webtbs/tw14958b.pp svneol=native#text/plain
tests/webtbs/tw14992a.pp svneol=native#text/pascal
tests/webtbs/tw14992b.pp svneol=native#text/pascal
tests/webtbs/tw14992c.pp svneol=native#text/pascal
tests/webtbs/tw1501.pp svneol=native#text/plain
tests/webtbs/tw15015.pp svneol=native#text/plain
tests/webtbs/tw15061.pp svneol=native#text/plain
tests/webtbs/tw15061a.pp svneol=native#text/plain
tests/webtbs/tw15088.pp svneol=native#text/plain
tests/webtbs/tw15169.pp svneol=native#text/plain
tests/webtbs/tw15203.pp svneol=native#text/pascal
tests/webtbs/tw15207.pp svneol=native#text/plain
tests/webtbs/tw15274.pp svneol=native#text/plain
tests/webtbs/tw15293.pp svneol=native#text/plain
tests/webtbs/tw15293a.pp svneol=native#text/plain
tests/webtbs/tw15296.pp svneol=native#text/plain
tests/webtbs/tw15304.pp svneol=native#text/plain
tests/webtbs/tw15308.pp svneol=native#text/plain
tests/webtbs/tw1532.pp svneol=native#text/plain
tests/webtbs/tw15357.pp svneol=native#text/plain
tests/webtbs/tw15363.pp svneol=native#text/plain
tests/webtbs/tw15364.pp svneol=native#text/plain
tests/webtbs/tw15370.pp svneol=native#text/plain
tests/webtbs/tw15377.pp svneol=native#text/pascal
tests/webtbs/tw1539.pp svneol=native#text/plain
tests/webtbs/tw15391.pp svneol=native#text/plain
tests/webtbs/tw15415.pp svneol=native#text/plain
tests/webtbs/tw15446.pp svneol=native#text/plain
tests/webtbs/tw15453a.pp svneol=native#text/plain
tests/webtbs/tw15467.pp svneol=native#text/pascal
tests/webtbs/tw15500.pp svneol=native#text/plain
tests/webtbs/tw15504.pp svneol=native#text/plain
tests/webtbs/tw15530.pp svneol=native#text/pascal
tests/webtbs/tw15571.pp svneol=native#text/pascal
tests/webtbs/tw15582.pp svneol=native#text/plain
tests/webtbs/tw15591.pp svneol=native#text/pascal
tests/webtbs/tw15592.pp svneol=native#text/plain
tests/webtbs/tw15599.pp svneol=native#text/plain
tests/webtbs/tw15607.pp svneol=native#text/plain
tests/webtbs/tw15610.pp svneol=native#text/plain
tests/webtbs/tw15619.pp svneol=native#text/plain
tests/webtbs/tw15668.pp svneol=native#text/pascal
tests/webtbs/tw1567.pp svneol=native#text/plain
tests/webtbs/tw15683.pp svneol=native#text/pascal
tests/webtbs/tw15690.pp svneol=native#text/plain
tests/webtbs/tw15693.pp svneol=native#text/plain
tests/webtbs/tw15694.pp svneol=native#text/plain
tests/webtbs/tw15727a.pp svneol=native#text/plain
tests/webtbs/tw15728.pp svneol=native#text/plain
tests/webtbs/tw1573.pp svneol=native#text/plain
tests/webtbs/tw15750.pp svneol=native#text/plain
tests/webtbs/tw15777a.pp svneol=native#text/plain
tests/webtbs/tw15777c.pp svneol=native#text/plain
tests/webtbs/tw15777d.pp svneol=native#text/plain
tests/webtbs/tw15777e.pp svneol=native#text/plain
tests/webtbs/tw15777f.pp svneol=native#text/plain
tests/webtbs/tw15812.pp svneol=native#text/plain
tests/webtbs/tw15821.pp svneol=native#text/plain
tests/webtbs/tw15843.pp svneol=native#text/plain
tests/webtbs/tw15909.pp svneol=native#text/plain
tests/webtbs/tw1592.pp svneol=native#text/plain
tests/webtbs/tw15930.pp svneol=native#text/plain
tests/webtbs/tw15966.pp svneol=native#text/plain
tests/webtbs/tw16004.pp svneol=native#text/plain
tests/webtbs/tw16018.pp svneol=native#text/plain
tests/webtbs/tw16034.pp svneol=native#text/plain
tests/webtbs/tw16040.pp svneol=native#text/plain
tests/webtbs/tw16065.pp svneol=native#text/pascal
tests/webtbs/tw16083.pp svneol=native#text/plain
tests/webtbs/tw16090.pp svneol=native#text/pascal
tests/webtbs/tw16100.pp svneol=native#text/pascal
tests/webtbs/tw16108.pp svneol=native#text/plain
tests/webtbs/tw16130.pp svneol=native#text/pascal
tests/webtbs/tw16160.pp svneol=native#text/pascal
tests/webtbs/tw16161.pp svneol=native#text/pascal
tests/webtbs/tw16163.pp svneol=native#text/plain
tests/webtbs/tw1617.pp svneol=native#text/plain
tests/webtbs/tw16188.pp svneol=native#text/plain
tests/webtbs/tw1622.pp svneol=native#text/plain
tests/webtbs/tw16222.pp svneol=native#text/pascal
tests/webtbs/tw1623.pp svneol=native#text/plain
tests/webtbs/tw16263a.pp svneol=native#text/plain
tests/webtbs/tw16263b.pp svneol=native#text/plain
tests/webtbs/tw16311.pp svneol=native#text/plain
tests/webtbs/tw16315a.pp svneol=native#text/pascal
tests/webtbs/tw16315b.pp svneol=native#text/pascal
tests/webtbs/tw16326.pp svneol=native#text/plain
tests/webtbs/tw16328.pp svneol=native#text/plain
tests/webtbs/tw1634.pp svneol=native#text/plain
tests/webtbs/tw16365.pp svneol=native#text/plain
tests/webtbs/tw16366.pp svneol=native#text/plain
tests/webtbs/tw16377.pp svneol=native#text/plain
tests/webtbs/tw16402.pp svneol=native#text/plain
tests/webtbs/tw1658.pp svneol=native#text/plain
tests/webtbs/tw16592.pp svneol=native#text/plain
tests/webtbs/tw16622.pp svneol=native#text/pascal
tests/webtbs/tw16668.pp svneol=native#text/plain
tests/webtbs/tw16700.pp svneol=native#text/plain
tests/webtbs/tw16757.pp svneol=native#text/plain
tests/webtbs/tw1677.pp svneol=native#text/plain
tests/webtbs/tw16770.pp svneol=native#text/plain
tests/webtbs/tw16772.pp svneol=native#text/plain
tests/webtbs/tw16787.pp svneol=native#text/plain
tests/webtbs/tw16803.pp svneol=native#text/plain
tests/webtbs/tw1681.pp svneol=native#text/plain
tests/webtbs/tw16820.pp svneol=native#text/plain
tests/webtbs/tw16848.pp svneol=native#text/plain
tests/webtbs/tw16861.pp svneol=native#text/plain
tests/webtbs/tw16863.pp svneol=native#text/plain
tests/webtbs/tw16874.pp svneol=native#text/plain
tests/webtbs/tw16884.pp svneol=native#text/plain
tests/webtbs/tw16901.pp svneol=native#text/plain
tests/webtbs/tw16949a.pp svneol=native#text/plain
tests/webtbs/tw16949b.pp svneol=native#text/plain
tests/webtbs/tw16954.pp svneol=native#text/plain
tests/webtbs/tw1696.pp svneol=native#text/plain
tests/webtbs/tw16980.pp svneol=native#text/plain
tests/webtbs/tw1699.pp svneol=native#text/plain
tests/webtbs/tw1709.pp svneol=native#text/plain
tests/webtbs/tw17118.pp svneol=native#text/plain
tests/webtbs/tw17136.pp svneol=native#text/plain
tests/webtbs/tw17164.pp svneol=native#text/plain
tests/webtbs/tw17180.pp svneol=native#text/plain
tests/webtbs/tw17181.pp svneol=native#text/plain
tests/webtbs/tw17184.pp svneol=native#text/pascal
tests/webtbs/tw17193.pp svneol=native#text/pascal
tests/webtbs/tw1720.pp svneol=native#text/plain
tests/webtbs/tw17213.pp svneol=native#text/pascal
tests/webtbs/tw17220.pp svneol=native#text/plain
tests/webtbs/tw17220a.pp svneol=native#text/plain
tests/webtbs/tw17236.pp svneol=native#text/pascal
tests/webtbs/tw17283.pp svneol=native#text/plain
tests/webtbs/tw17337.pp svneol=native#text/plain
tests/webtbs/tw17342.pp svneol=native#text/plain
tests/webtbs/tw1735.pp svneol=native#text/plain
tests/webtbs/tw1737.pp svneol=native#text/plain
tests/webtbs/tw17379.pp svneol=native#text/plain
tests/webtbs/tw17379a.pp svneol=native#text/plain
tests/webtbs/tw17402.pp svneol=native#text/pascal
tests/webtbs/tw17402a.pp svneol=native#text/pascal
tests/webtbs/tw17413.pp svneol=native#text/plain
tests/webtbs/tw17430.pp svneol=native#text/plain
tests/webtbs/tw1744.pp svneol=native#text/plain
tests/webtbs/tw17458.pp svneol=native#text/plain
tests/webtbs/tw17493.pp svneol=native#text/plain
tests/webtbs/tw17514.pp svneol=native#text/plain
tests/webtbs/tw17521.pp svneol=native#text/plain
tests/webtbs/tw17546.pp svneol=native#text/plain
tests/webtbs/tw1754c.pp svneol=native#text/plain
tests/webtbs/tw1755.pp svneol=native#text/plain
tests/webtbs/tw17550.pp svneol=native#text/plain
tests/webtbs/tw17560.pp svneol=native#text/plain
tests/webtbs/tw1758.pp svneol=native#text/plain
tests/webtbs/tw17591.pp svneol=native#text/plain
tests/webtbs/tw17604.pp svneol=native#text/plain
tests/webtbs/tw17646.pp svneol=native#text/plain
tests/webtbs/tw1765.pp svneol=native#text/plain
tests/webtbs/tw17675.pp svneol=native#text/plain
tests/webtbs/tw17675a.pp svneol=native#text/plain
tests/webtbs/tw17685.pp svneol=native#text/pascal
tests/webtbs/tw17710.pp svneol=native#text/pascal
tests/webtbs/tw17714.pp svneol=native#text/plain
tests/webtbs/tw17715.pp svneol=native#text/plain
tests/webtbs/tw1779.pp svneol=native#text/plain
tests/webtbs/tw1780.pp svneol=native#text/plain
tests/webtbs/tw17836.pp svneol=native#text/plain
tests/webtbs/tw17838.pp svneol=native#text/pascal
tests/webtbs/tw17846.pp svneol=native#text/plain
tests/webtbs/tw17862.pp svneol=native#text/plain
tests/webtbs/tw17904.pas svneol=native#text/plain
tests/webtbs/tw17907/main/main.pas svneol=native#text/plain
tests/webtbs/tw17907/test.bat svneol=native#text/plain
tests/webtbs/tw17907/unit1/unit0001.pas svneol=native#text/plain
tests/webtbs/tw17907/unit2/unit0002.pas svneol=native#text/plain
tests/webtbs/tw1792.pp svneol=native#text/plain
tests/webtbs/tw17928.pp svneol=native#text/plain
tests/webtbs/tw1792a.pp svneol=native#text/plain
tests/webtbs/tw17945.pp svneol=native#text/pascal
tests/webtbs/tw17950.pp svneol=native#text/pascal
tests/webtbs/tw17952a.pp svneol=native#text/pascal
tests/webtbs/tw17952b.pp svneol=native#text/pascal
tests/webtbs/tw17957.pp svneol=native#text/pascal
tests/webtbs/tw1798.pp svneol=native#text/plain
tests/webtbs/tw17986.pp svneol=native#text/pascal
tests/webtbs/tw17998.pp svneol=native#text/plain
tests/webtbs/tw18009.pp svneol=native#text/pascal
tests/webtbs/tw18013.pp svneol=native#text/plain
tests/webtbs/tw18019.pp svneol=native#text/plain
tests/webtbs/tw18075.pp svneol=native#text/pascal
tests/webtbs/tw18082.pp svneol=native#text/plain
tests/webtbs/tw18085.pp svneol=native#text/pascal
tests/webtbs/tw18086.pp svneol=native#text/pascal
tests/webtbs/tw18103a.pp svneol=native#text/pascal
tests/webtbs/tw18103b.pp svneol=native#text/pascal
tests/webtbs/tw18103c.pp svneol=native#text/pascal
tests/webtbs/tw18113.pp svneol=native#text/plain
tests/webtbs/tw18123.pp svneol=native#text/pascal
tests/webtbs/tw18127.pp svneol=native#text/pascal
tests/webtbs/tw18131.pp svneol=native#text/pascal
tests/webtbs/tw1820.pp svneol=native#text/plain
tests/webtbs/tw18222.pp svneol=native#text/pascal
tests/webtbs/tw1825.pp svneol=native#text/plain
tests/webtbs/tw18266.pp svneol=native#text/plain
tests/webtbs/tw18334.pp svneol=native#text/plain
tests/webtbs/tw18420.pp svneol=native#text/pascal
tests/webtbs/tw18443.pp svneol=native#text/pascal
tests/webtbs/tw1850.pp svneol=native#text/plain
tests/webtbs/tw1851.pp svneol=native#text/plain
tests/webtbs/tw18512.pp svneol=native#text/pascal
tests/webtbs/tw1856.pp svneol=native#text/plain
tests/webtbs/tw18567.pp svneol=native#text/pascal
tests/webtbs/tw18610.pp svneol=native#text/pascal
tests/webtbs/tw1862.pp svneol=native#text/plain
tests/webtbs/tw18620.pp svneol=native#text/pascal
tests/webtbs/tw1863.pp svneol=native#text/plain
tests/webtbs/tw1867.pp svneol=native#text/plain
tests/webtbs/tw18688.pp svneol=native#text/pascal
tests/webtbs/tw18690.pp svneol=native#text/plain
tests/webtbs/tw18702.pp svneol=native#text/pascal
tests/webtbs/tw18704.pp svneol=native#text/pascal
tests/webtbs/tw18706.pp svneol=native#text/plain
tests/webtbs/tw1873.pp svneol=native#text/plain
tests/webtbs/tw18767a.pp svneol=native#text/pascal
tests/webtbs/tw18767b.pp svneol=native#text/pascal
tests/webtbs/tw18768.pp svneol=native#text/pascal
tests/webtbs/tw1883.pp svneol=native#text/plain
tests/webtbs/tw18859.pp svneol=native#text/plain
tests/webtbs/tw1888.pp svneol=native#text/plain
tests/webtbs/tw1889.pp svneol=native#text/plain
tests/webtbs/tw18909.pp svneol=native#text/pascal
tests/webtbs/tw1896.pp svneol=native#text/plain
tests/webtbs/tw1901.pp svneol=native#text/plain
tests/webtbs/tw1902.pp svneol=native#text/plain
tests/webtbs/tw1907.pp svneol=native#text/plain
tests/webtbs/tw19077.pp svneol=native#text/pascal
tests/webtbs/tw1908.pp svneol=native#text/plain
tests/webtbs/tw1909.pp svneol=native#text/plain
tests/webtbs/tw1910.pp svneol=native#text/plain
tests/webtbs/tw1915.pp svneol=native#text/plain
tests/webtbs/tw1917.pp svneol=native#text/plain
tests/webtbs/tw19180.pp svneol=native#text/plain
tests/webtbs/tw19182.pp svneol=native#text/plain
tests/webtbs/tw1920.pp svneol=native#text/plain
tests/webtbs/tw19201.pp svneol=native#text/pascal
tests/webtbs/tw1923.pp svneol=native#text/plain
tests/webtbs/tw19277.pp svneol=native#text/pascal
tests/webtbs/tw1930.pp svneol=native#text/plain
tests/webtbs/tw1931.pp svneol=native#text/plain
tests/webtbs/tw1932.pp svneol=native#text/plain
tests/webtbs/tw19325.pp svneol=native#text/pascal
tests/webtbs/tw1935.pp svneol=native#text/plain
tests/webtbs/tw1936.pp svneol=native#text/plain
tests/webtbs/tw19368.pp svneol=native#text/pascal
tests/webtbs/tw1938.pp svneol=native#text/plain
tests/webtbs/tw19434a.pp svneol=native#text/plain
tests/webtbs/tw19434b.pp svneol=native#text/plain
tests/webtbs/tw1948.pp svneol=native#text/plain
tests/webtbs/tw19498.pp svneol=native#text/pascal
tests/webtbs/tw19499.pp svneol=native#text/pascal
tests/webtbs/tw1950.pp svneol=native#text/plain
tests/webtbs/tw19500.pp svneol=native#text/pascal
tests/webtbs/tw19511.pp svneol=native#text/pascal
tests/webtbs/tw19548.pp svneol=native#text/pascal
tests/webtbs/tw19555.pp svneol=native#text/pascal
tests/webtbs/tw19581.pp svneol=native#text/plain
tests/webtbs/tw19622.pp -text svneol=native#text/plain
tests/webtbs/tw1964.pp svneol=native#text/plain
tests/webtbs/tw19651.pp svneol=native#text/plain
tests/webtbs/tw19700.pp svneol=native#text/plain
tests/webtbs/tw19701.pas svneol=native#text/plain
tests/webtbs/tw19851a.pp svneol=native#text/pascal
tests/webtbs/tw19851b.pp svneol=native#text/pascal
tests/webtbs/tw19864.pp svneol=native#text/pascal
tests/webtbs/tw19874.pp svneol=native#text/pascal
tests/webtbs/tw19910.pp svneol=native#text/pascal
tests/webtbs/tw1996.pp svneol=native#text/plain
tests/webtbs/tw19960.pp svneol=native#text/pascal
tests/webtbs/tw19974.pp svneol=native#text/pascal
tests/webtbs/tw19977.pp svneol=native#text/pascal
tests/webtbs/tw20003.pp svneol=native#text/pascal
tests/webtbs/tw20005.pp svneol=native#text/pascal
tests/webtbs/tw2001.pp svneol=native#text/plain
tests/webtbs/tw2002.pp svneol=native#text/plain
tests/webtbs/tw20028.pp svneol=native#text/pascal
tests/webtbs/tw20035a.pp svneol=native#text/pascal
tests/webtbs/tw20035b.pp svneol=native#text/pascal
tests/webtbs/tw20035c.pp svneol=native#text/pascal
tests/webtbs/tw2004.pp svneol=native#text/plain
tests/webtbs/tw20075.pp svneol=native#text/pascal
tests/webtbs/tw20093.pp svneol=native#text/pascal
tests/webtbs/tw20093a.pp svneol=native#text/pascal
tests/webtbs/tw20119.pp -text svneol=native#test/pascal
tests/webtbs/tw20192.pp svneol=native#text/pascal
tests/webtbs/tw20257.pp svneol=native#text/plain
tests/webtbs/tw2028.pp svneol=native#text/plain
tests/webtbs/tw2030.pp svneol=native#text/plain
tests/webtbs/tw2031.pp svneol=native#text/plain
tests/webtbs/tw2037.pp svneol=native#text/plain
tests/webtbs/tw20396.pp svneol=native#text/plain
tests/webtbs/tw2040.pp svneol=native#text/plain
tests/webtbs/tw20407.pp svneol=native#text/pascal
tests/webtbs/tw2041.pp svneol=native#text/plain
tests/webtbs/tw20421.pp svneol=native#text/pascal
tests/webtbs/tw2045.pp svneol=native#text/plain
tests/webtbs/tw2046a.pp svneol=native#text/plain
tests/webtbs/tw20527.pp svneol=native#text/plain
tests/webtbs/tw20557.pp svneol=native#text/pascal
tests/webtbs/tw20577a.pp svneol=native#text/pascal
tests/webtbs/tw20577b.pp svneol=native#text/pascal
tests/webtbs/tw2059.pp svneol=native#text/plain
tests/webtbs/tw20594.pp svneol=native#text/pascal
tests/webtbs/tw20627.pp svneol=native#text/pascal
tests/webtbs/tw20629.pp svneol=native#text/pascal
tests/webtbs/tw20638.pp svneol=native#text/pascal
tests/webtbs/tw2065.pp svneol=native#text/plain
tests/webtbs/tw2069.pp svneol=native#text/plain
tests/webtbs/tw20690.pp svneol=native#text/pascal
tests/webtbs/tw2072.pp svneol=native#text/plain
tests/webtbs/tw20744.pp svneol=native#text/plain
tests/webtbs/tw20796a.pp svneol=native#text/pascal
tests/webtbs/tw20796b.pp svneol=native#text/pascal
tests/webtbs/tw20796c.pp svneol=native#text/pascal
tests/webtbs/tw20821.pp svneol=native#text/pascal
tests/webtbs/tw20827.pp svneol=native#text/plain
tests/webtbs/tw20836.pp svneol=native#text/pascal
tests/webtbs/tw20851.pp svneol=native#text/pascal
tests/webtbs/tw20871.pp svneol=native#text/pascal
tests/webtbs/tw20872a.pp svneol=native#text/pascal
tests/webtbs/tw20872b.pp svneol=native#text/pascal
tests/webtbs/tw20872c.pp svneol=native#text/pascal
tests/webtbs/tw20873.pp svneol=native#text/plain
tests/webtbs/tw20874a.pp svneol=native#text/pascal
tests/webtbs/tw20874b.pp svneol=native#text/pascal
tests/webtbs/tw20880.pp -text svneol=native#text/plain
tests/webtbs/tw20889.pp svneol=native#text/pascal
tests/webtbs/tw20909.pp svneol=native#text/pascal
tests/webtbs/tw20940.pp svneol=native#text/pascal
tests/webtbs/tw20947.pp svneol=native#text/pascal
tests/webtbs/tw20962.pp svneol=native#text/plain
tests/webtbs/tw20995a.pp svneol=native#text/pascal
tests/webtbs/tw20995b.pp svneol=native#text/pascal
tests/webtbs/tw20998.pp svneol=native#text/pascal
tests/webtbs/tw21029.pp svneol=native#text/plain
tests/webtbs/tw21044.pp svneol=native#text/pascal
tests/webtbs/tw21064a.pp svneol=native#text/pascal
tests/webtbs/tw21064b.pp svneol=native#text/pascal
tests/webtbs/tw21073.pp svneol=native#text/plain
tests/webtbs/tw2109.pp svneol=native#text/plain
tests/webtbs/tw21091.pp svneol=native#text/pascal
tests/webtbs/tw2110.pp svneol=native#text/plain
tests/webtbs/tw21146.pp svneol=native#text/pascal
tests/webtbs/tw21151.pp svneol=native#text/plain
tests/webtbs/tw21177.pp svneol=native#text/plain
tests/webtbs/tw21179.pp svneol=native#text/pascal
tests/webtbs/tw21255.pp svneol=native#text/plain
tests/webtbs/tw21267.pp svneol=native#text/plain
tests/webtbs/tw2128.pp svneol=native#text/plain
tests/webtbs/tw2129.pp svneol=native#text/plain
tests/webtbs/tw2129b.pp svneol=native#text/plain
tests/webtbs/tw2131.pp svneol=native#text/plain
tests/webtbs/tw21350a.pp svneol=native#text/pascal
tests/webtbs/tw21350b.pp svneol=native#text/pascal
tests/webtbs/tw21443.pp svneol=native#text/plain
tests/webtbs/tw2145.pp svneol=native#text/plain
tests/webtbs/tw21457.pp svneol=native#text/pascal
tests/webtbs/tw21472.pp svneol=native#text/pascal
tests/webtbs/tw21550.pp svneol=native#text/pascal
tests/webtbs/tw21551.pp svneol=native#text/plain
tests/webtbs/tw2158.pp svneol=native#text/plain
tests/webtbs/tw2159.pp svneol=native#text/plain
tests/webtbs/tw21592.pp svneol=native#text/pascal
tests/webtbs/tw21592b.pp svneol=native#text/pascal
tests/webtbs/tw21593.pp svneol=native#text/pascal
tests/webtbs/tw21593a.pp svneol=native#text/pascal
tests/webtbs/tw21593b.pp svneol=native#text/pascal
tests/webtbs/tw21593c.pp svneol=native#text/pascal
tests/webtbs/tw2163.pp svneol=native#text/plain
tests/webtbs/tw21654.pp svneol=native#text/pascal
tests/webtbs/tw21674.pp svneol=native#text/pascal
tests/webtbs/tw21684.pp svneol=native#text/pascal
tests/webtbs/tw2176.pp svneol=native#text/plain
tests/webtbs/tw2177.pp svneol=native#text/plain
tests/webtbs/tw2178.pp svneol=native#text/plain
tests/webtbs/tw21808.pp svneol=native#text/plain
tests/webtbs/tw2185.pp svneol=native#text/plain
tests/webtbs/tw2186.pp svneol=native#text/plain
tests/webtbs/tw2187.pp svneol=native#text/plain
tests/webtbs/tw21878.pp svneol=native#text/plain
tests/webtbs/tw21914.pp svneol=native#text/pascal
tests/webtbs/tw21921.pp svneol=native#text/pascal
tests/webtbs/tw21941.pp svneol=native#text/pascal
tests/webtbs/tw21951.pp svneol=native#text/plain
tests/webtbs/tw2196.pp svneol=native#text/plain
tests/webtbs/tw2197.pp svneol=native#text/plain
tests/webtbs/tw2198.pp svneol=native#text/plain
tests/webtbs/tw2210.pp svneol=native#text/plain
tests/webtbs/tw22133.pp svneol=native#text/plain
tests/webtbs/tw2214.pp svneol=native#text/plain
tests/webtbs/tw22154.pp svneol=native#text/pascal
tests/webtbs/tw22160a1.pp svneol=native#text/pascal
tests/webtbs/tw22160b1.pp svneol=native#text/pascal
tests/webtbs/tw2220.pp svneol=native#text/plain
tests/webtbs/tw2226.pp svneol=native#text/plain
tests/webtbs/tw2229.pp svneol=native#text/plain
tests/webtbs/tw22290.pp svneol=native#text/plain
tests/webtbs/tw22320.pp svneol=native#text/plain
tests/webtbs/tw22326.pp svneol=native#text/plain
tests/webtbs/tw22329.pp svneol=native#text/pascal
tests/webtbs/tw2233.pp svneol=native#text/plain
tests/webtbs/tw22331.pp svneol=native#text/plain
tests/webtbs/tw22344.pp svneol=native#text/plain
tests/webtbs/tw2242.pp svneol=native#text/plain
tests/webtbs/tw22490.pp svneol=native#text/plain
tests/webtbs/tw2250.pp svneol=native#text/plain
tests/webtbs/tw22502.pp svneol=native#text/plain
tests/webtbs/tw22561.pp svneol=native#text/plain
tests/webtbs/tw22570.pp svneol=native#text/plain
tests/webtbs/tw2259.pp svneol=native#text/plain
tests/webtbs/tw22593.pp svneol=native#text/plain
tests/webtbs/tw2260.pp svneol=native#text/plain
tests/webtbs/tw22613.pp svneol=native#text/plain
tests/webtbs/tw2266.pp svneol=native#text/plain
tests/webtbs/tw22665.pp svneol=native#text/plain
tests/webtbs/tw22669.pp svneol=native#text/plain
tests/webtbs/tw2267.pp svneol=native#text/plain
tests/webtbs/tw2268.pp svneol=native#text/plain
tests/webtbs/tw2269.pp svneol=native#text/plain
tests/webtbs/tw22705.pp svneol=native#text/plain
tests/webtbs/tw2274.pp svneol=native#text/plain
tests/webtbs/tw22741.pp svneol=native#text/plain
tests/webtbs/tw22744.pp svneol=native#text/pascal
tests/webtbs/tw2277.pp svneol=native#text/plain
tests/webtbs/tw22796.pp svneol=native#text/plain
tests/webtbs/tw2280.pp svneol=native#text/plain
tests/webtbs/tw22860.pp svneol=native#text/plain
tests/webtbs/tw22864.pp svneol=native#text/pascal
tests/webtbs/tw22869.pp svneol=native#text/plain
tests/webtbs/tw22878.pp svneol=native#text/plain
tests/webtbs/tw2289.pp svneol=native#text/plain
tests/webtbs/tw2291.pp svneol=native#text/plain
tests/webtbs/tw2294.pp svneol=native#text/plain
tests/webtbs/tw2296.pp svneol=native#text/plain
tests/webtbs/tw2300.pp svneol=native#text/plain
tests/webtbs/tw2305.pp svneol=native#text/plain
tests/webtbs/tw2306.pp svneol=native#text/plain
tests/webtbs/tw2307.pp svneol=native#text/plain
tests/webtbs/tw2311.pp svneol=native#text/plain
tests/webtbs/tw2317.pp svneol=native#text/plain
tests/webtbs/tw2318.pp svneol=native#text/plain
tests/webtbs/tw2318b.pp svneol=native#text/plain
tests/webtbs/tw2323.pp svneol=native#text/plain
tests/webtbs/tw2328.pp svneol=native#text/plain
tests/webtbs/tw2332.pp svneol=native#text/plain
tests/webtbs/tw2351.pp svneol=native#text/plain
tests/webtbs/tw2363.pp svneol=native#text/plain
tests/webtbs/tw2377.pp svneol=native#text/plain
tests/webtbs/tw2378.pp svneol=native#text/plain
tests/webtbs/tw2382.pp svneol=native#text/plain
tests/webtbs/tw2388.pp svneol=native#text/plain
tests/webtbs/tw2397.pp svneol=native#text/plain
tests/webtbs/tw2409.pp svneol=native#text/plain
tests/webtbs/tw2421.pp svneol=native#text/plain
tests/webtbs/tw2423.pp svneol=native#text/plain
tests/webtbs/tw2425.pp svneol=native#text/plain
tests/webtbs/tw2432.pp svneol=native#text/plain
tests/webtbs/tw2435.pp svneol=native#text/plain
tests/webtbs/tw2438.pp svneol=native#text/plain
tests/webtbs/tw2442.pp svneol=native#text/plain
tests/webtbs/tw2452.pp svneol=native#text/plain
tests/webtbs/tw2454.pp svneol=native#text/plain
tests/webtbs/tw2473.pp svneol=native#text/plain
tests/webtbs/tw2480.pp svneol=native#text/plain
tests/webtbs/tw2481.pp svneol=native#text/plain
tests/webtbs/tw2483.pp svneol=native#text/plain
tests/webtbs/tw2492.pp svneol=native#text/plain
tests/webtbs/tw2494.pp svneol=native#text/plain
tests/webtbs/tw2503.pp svneol=native#text/plain
tests/webtbs/tw2504.pp svneol=native#text/plain
tests/webtbs/tw2514.pp svneol=native#text/plain
tests/webtbs/tw2525.pp svneol=native#text/plain
tests/webtbs/tw2536.pp svneol=native#text/plain
tests/webtbs/tw2540.pp svneol=native#text/plain
tests/webtbs/tw2561.pp svneol=native#text/plain
tests/webtbs/tw2588.pp svneol=native#text/plain
tests/webtbs/tw2589.pp svneol=native#text/plain
tests/webtbs/tw2594.pp svneol=native#text/plain
tests/webtbs/tw2595.pp svneol=native#text/plain
tests/webtbs/tw2602.pp svneol=native#text/plain
tests/webtbs/tw2607.pp svneol=native#text/plain
tests/webtbs/tw2620.pp svneol=native#text/plain
tests/webtbs/tw2626.pp svneol=native#text/plain
tests/webtbs/tw2627.pp svneol=native#text/plain
tests/webtbs/tw2631.pp svneol=native#text/plain
tests/webtbs/tw2643.pp svneol=native#text/plain
tests/webtbs/tw2645.pp svneol=native#text/plain
tests/webtbs/tw2647.pp svneol=native#text/plain
tests/webtbs/tw2649.pp svneol=native#text/plain
tests/webtbs/tw2650.pp svneol=native#text/plain
tests/webtbs/tw2651.pp svneol=native#text/plain
tests/webtbs/tw2656.pp svneol=native#text/plain
tests/webtbs/tw2659.pp svneol=native#text/plain
tests/webtbs/tw2666.pp svneol=native#text/plain
tests/webtbs/tw2668.pp svneol=native#text/plain
tests/webtbs/tw2669.pp svneol=native#text/plain
tests/webtbs/tw2676.pp svneol=native#text/plain
tests/webtbs/tw2678.pp svneol=native#text/plain
tests/webtbs/tw2690.pp svneol=native#text/plain
tests/webtbs/tw2691.pp svneol=native#text/plain
tests/webtbs/tw2696.pp svneol=native#text/plain
tests/webtbs/tw2702.pp svneol=native#text/plain
tests/webtbs/tw2703.pp svneol=native#text/plain
tests/webtbs/tw2704.pp svneol=native#text/plain
tests/webtbs/tw2705.pp svneol=native#text/plain
tests/webtbs/tw2706.pp svneol=native#text/plain
tests/webtbs/tw2707.pp svneol=native#text/plain
tests/webtbs/tw2708.pp svneol=native#text/plain
tests/webtbs/tw2710.pp svneol=native#text/plain
tests/webtbs/tw2713.pp svneol=native#text/plain
tests/webtbs/tw2721.pp svneol=native#text/plain
tests/webtbs/tw2723.pp svneol=native#text/plain
tests/webtbs/tw2725.pp svneol=native#text/plain
tests/webtbs/tw2727.pp svneol=native#text/plain
tests/webtbs/tw2728.pp svneol=native#text/plain
tests/webtbs/tw2729.pp svneol=native#text/plain
tests/webtbs/tw2730.pp svneol=native#text/plain
tests/webtbs/tw2731.pp svneol=native#text/plain
tests/webtbs/tw2736.pp svneol=native#text/plain
tests/webtbs/tw2737.pp svneol=native#text/plain
tests/webtbs/tw2738.pp svneol=native#text/plain
tests/webtbs/tw2739.pp svneol=native#text/plain
tests/webtbs/tw2758.pp svneol=native#text/plain
tests/webtbs/tw2763.pp svneol=native#text/plain
tests/webtbs/tw2765.pp svneol=native#text/plain
tests/webtbs/tw2767.pp svneol=native#text/plain
tests/webtbs/tw2771.pp svneol=native#text/plain
tests/webtbs/tw2772.pp svneol=native#text/plain
tests/webtbs/tw2776.pp svneol=native#text/plain
tests/webtbs/tw2778.pp svneol=native#text/plain
tests/webtbs/tw2779.pp svneol=native#text/plain
tests/webtbs/tw2780.pp svneol=native#text/plain
tests/webtbs/tw2788.pp svneol=native#text/plain
tests/webtbs/tw2789.pp svneol=native#text/plain
tests/webtbs/tw2794.pp svneol=native#text/plain
tests/webtbs/tw2803.pp svneol=native#text/plain
tests/webtbs/tw2806.pp svneol=native#text/plain
tests/webtbs/tw2807.pp svneol=native#text/plain
tests/webtbs/tw2809.pp svneol=native#text/plain
tests/webtbs/tw2812.pp svneol=native#text/plain
tests/webtbs/tw2815.pp svneol=native#text/plain
tests/webtbs/tw2817.pp svneol=native#text/plain
tests/webtbs/tw2829.pp svneol=native#text/plain
tests/webtbs/tw2830.pp svneol=native#text/plain
tests/webtbs/tw2832.pp svneol=native#text/plain
tests/webtbs/tw2834.pp svneol=native#text/plain
tests/webtbs/tw2841.pp svneol=native#text/plain
tests/webtbs/tw2853.pp svneol=native#text/plain
tests/webtbs/tw2853a.pp svneol=native#text/plain
tests/webtbs/tw2853b.pp svneol=native#text/plain
tests/webtbs/tw2853c.pp svneol=native#text/plain
tests/webtbs/tw2853d.pp svneol=native#text/plain
tests/webtbs/tw2853e.pp svneol=native#text/plain
tests/webtbs/tw2859.pp svneol=native#text/plain
tests/webtbs/tw2865.pp svneol=native#text/plain
tests/webtbs/tw2876.pp svneol=native#text/plain
tests/webtbs/tw2883.pp svneol=native#text/plain
tests/webtbs/tw2885.pp svneol=native#text/plain
tests/webtbs/tw2886.pp svneol=native#text/plain
tests/webtbs/tw2891.pp svneol=native#text/plain
tests/webtbs/tw2892.pp svneol=native#text/plain
tests/webtbs/tw2897.pp svneol=native#text/plain
tests/webtbs/tw2899.pp svneol=native#text/plain
tests/webtbs/tw2904.pp svneol=native#text/plain
tests/webtbs/tw2908.pp svneol=native#text/plain
tests/webtbs/tw2911.pp svneol=native#text/plain
tests/webtbs/tw2912.pp svneol=native#text/plain
tests/webtbs/tw2913.pp svneol=native#text/plain
tests/webtbs/tw2916.pp svneol=native#text/plain
tests/webtbs/tw2920.pp svneol=native#text/plain
tests/webtbs/tw2923.pp svneol=native#text/plain
tests/webtbs/tw2926.pp svneol=native#text/plain
tests/webtbs/tw2927.pp svneol=native#text/plain
tests/webtbs/tw2942a.pp svneol=native#text/plain
tests/webtbs/tw2942b.pp svneol=native#text/plain
tests/webtbs/tw2943.pp svneol=native#text/plain
tests/webtbs/tw2944.pp svneol=native#text/plain
tests/webtbs/tw2946.pp svneol=native#text/plain
tests/webtbs/tw2949.pp svneol=native#text/plain
tests/webtbs/tw2953.pp svneol=native#text/plain
tests/webtbs/tw2956.pp svneol=native#text/plain
tests/webtbs/tw2958.pp svneol=native#text/plain
tests/webtbs/tw2966.pp svneol=native#text/plain
tests/webtbs/tw2975.pp svneol=native#text/plain
tests/webtbs/tw2976.pp svneol=native#text/plain
tests/webtbs/tw2983.pp svneol=native#text/plain
tests/webtbs/tw2984.pp svneol=native#text/plain
tests/webtbs/tw2998.pp svneol=native#text/plain
tests/webtbs/tw2999.pp svneol=native#text/plain
tests/webtbs/tw3004.pp svneol=native#text/plain
tests/webtbs/tw3005.pp svneol=native#text/plain
tests/webtbs/tw3010.pp svneol=native#text/plain
tests/webtbs/tw3012.pp svneol=native#text/plain
tests/webtbs/tw3023.pp svneol=native#text/plain
tests/webtbs/tw3028.pp svneol=native#text/plain
tests/webtbs/tw3038.pp svneol=native#text/plain
tests/webtbs/tw3041.pp svneol=native#text/plain
tests/webtbs/tw3045.pp svneol=native#text/plain
tests/webtbs/tw3048.pp svneol=native#text/plain
tests/webtbs/tw3063.pp svneol=native#text/plain
tests/webtbs/tw3064.pp svneol=native#text/plain
tests/webtbs/tw3073.pp svneol=native#text/plain
tests/webtbs/tw3082.pp svneol=native#text/plain
tests/webtbs/tw3083.pp svneol=native#text/plain
tests/webtbs/tw3093.pp svneol=native#text/plain
tests/webtbs/tw3101.pp svneol=native#text/plain
tests/webtbs/tw3104.pp svneol=native#text/plain
tests/webtbs/tw3109.pp svneol=native#text/plain
tests/webtbs/tw3111.pp svneol=native#text/plain
tests/webtbs/tw3113.pp svneol=native#text/plain
tests/webtbs/tw3124.pp svneol=native#text/plain
tests/webtbs/tw3131.pp svneol=native#text/plain
tests/webtbs/tw3137.pp svneol=native#text/plain
tests/webtbs/tw3143.pp svneol=native#text/plain
tests/webtbs/tw3144.pp svneol=native#text/plain
tests/webtbs/tw3157.pp svneol=native#text/plain
tests/webtbs/tw3160a.pp svneol=native#text/plain
tests/webtbs/tw3160b.pp svneol=native#text/plain
tests/webtbs/tw3160c.pp svneol=native#text/plain
tests/webtbs/tw3161.pp svneol=native#text/plain
tests/webtbs/tw3165.pp svneol=native#text/plain
tests/webtbs/tw3168.pp svneol=native#text/plain
tests/webtbs/tw3170.pp svneol=native#text/plain
tests/webtbs/tw3172.pp svneol=native#text/plain
tests/webtbs/tw3173.pp svneol=native#text/plain
tests/webtbs/tw3174.pp svneol=native#text/plain
tests/webtbs/tw3176.pp svneol=native#text/plain
tests/webtbs/tw3179.pp svneol=native#text/plain
tests/webtbs/tw3182.pp svneol=native#text/plain
tests/webtbs/tw3183.pp svneol=native#text/plain
tests/webtbs/tw3183a.pp svneol=native#text/plain
tests/webtbs/tw3184.pp svneol=native#text/plain
tests/webtbs/tw3185.pp svneol=native#text/plain
tests/webtbs/tw3190.pp svneol=native#text/plain
tests/webtbs/tw3197.pp svneol=native#text/plain
tests/webtbs/tw3207.pp svneol=native#text/plain
tests/webtbs/tw3210.pp svneol=native#text/plain
tests/webtbs/tw3212.pp svneol=native#text/plain
tests/webtbs/tw3214.pp svneol=native#text/plain
tests/webtbs/tw3216.pp svneol=native#text/plain
tests/webtbs/tw3217.pp svneol=native#text/plain
tests/webtbs/tw3222.pp svneol=native#text/plain
tests/webtbs/tw3226.pp svneol=native#text/plain
tests/webtbs/tw3227.pp svneol=native#text/plain
tests/webtbs/tw3227a.pp svneol=native#text/plain
tests/webtbs/tw3235.pp svneol=native#text/plain
tests/webtbs/tw3241a.pp svneol=native#text/plain
tests/webtbs/tw3252.pp svneol=native#text/plain
tests/webtbs/tw3255.pp svneol=native#text/plain
tests/webtbs/tw3257.pp svneol=native#text/plain
tests/webtbs/tw3259.pp svneol=native#text/plain
tests/webtbs/tw3261.pp svneol=native#text/plain
tests/webtbs/tw3263.pp svneol=native#text/plain
tests/webtbs/tw3265.pp svneol=native#text/plain
tests/webtbs/tw3272.pp svneol=native#text/plain
tests/webtbs/tw3274.pp svneol=native#text/plain
tests/webtbs/tw3280.pp svneol=native#text/plain
tests/webtbs/tw3281.pp svneol=native#text/plain
tests/webtbs/tw3286.pp svneol=native#text/plain
tests/webtbs/tw3292.pp svneol=native#text/plain
tests/webtbs/tw3294a.pp svneol=native#text/plain
tests/webtbs/tw3298.pp svneol=native#text/plain
tests/webtbs/tw3301.pp svneol=native#text/plain
tests/webtbs/tw3309.pp svneol=native#text/plain
tests/webtbs/tw3320.pp svneol=native#text/plain
tests/webtbs/tw3324.pp svneol=native#text/plain
tests/webtbs/tw3327.pp svneol=native#text/plain
tests/webtbs/tw3328.pp svneol=native#text/plain
tests/webtbs/tw3334.pp svneol=native#text/plain
tests/webtbs/tw3340.pp svneol=native#text/plain
tests/webtbs/tw3348.pp svneol=native#text/plain
tests/webtbs/tw3349.pp svneol=native#text/plain
tests/webtbs/tw3351.pp svneol=native#text/plain
tests/webtbs/tw3353.pp svneol=native#text/plain
tests/webtbs/tw3356.pp svneol=native#text/plain
tests/webtbs/tw3360.pp svneol=native#text/plain
tests/webtbs/tw3364.pp svneol=native#text/plain
tests/webtbs/tw3366.pp svneol=native#text/plain
tests/webtbs/tw3402.pp svneol=native#text/plain
tests/webtbs/tw3411.pp svneol=native#text/plain
tests/webtbs/tw3418.pp svneol=native#text/plain
tests/webtbs/tw3423.pp svneol=native#text/plain
tests/webtbs/tw3429.pp svneol=native#text/plain
tests/webtbs/tw3433.pp svneol=native#text/plain
tests/webtbs/tw3435.pp svneol=native#text/plain
tests/webtbs/tw3441.pp svneol=native#text/plain
tests/webtbs/tw3443.pp svneol=native#text/plain
tests/webtbs/tw3444.pp svneol=native#text/plain
tests/webtbs/tw3456.pp svneol=native#text/plain
tests/webtbs/tw3457.pp svneol=native#text/plain
tests/webtbs/tw3460.pp svneol=native#text/plain
tests/webtbs/tw3467.pp svneol=native#text/plain
tests/webtbs/tw3470.pp svneol=native#text/plain
tests/webtbs/tw3474.pp svneol=native#text/plain
tests/webtbs/tw3477.pp svneol=native#text/plain
tests/webtbs/tw3478.pp svneol=native#text/plain
tests/webtbs/tw3479.pp svneol=native#text/plain
tests/webtbs/tw3489.pp svneol=native#text/plain
tests/webtbs/tw3490.pp svneol=native#text/plain
tests/webtbs/tw3491.pp svneol=native#text/plain
tests/webtbs/tw3492.pp svneol=native#text/plain
tests/webtbs/tw3494.pp svneol=native#text/plain
tests/webtbs/tw3499.pp svneol=native#text/plain
tests/webtbs/tw3504.pp svneol=native#text/plain
tests/webtbs/tw3506.pp svneol=native#text/plain
tests/webtbs/tw3523.pp svneol=native#text/plain
tests/webtbs/tw3529.pp svneol=native#text/plain
tests/webtbs/tw3533.pp svneol=native#text/plain
tests/webtbs/tw3534.pp svneol=native#text/plain
tests/webtbs/tw3540.pp svneol=native#text/plain
tests/webtbs/tw3546.pp svneol=native#text/plain
tests/webtbs/tw3554.pp svneol=native#text/plain
tests/webtbs/tw3564.pp svneol=native#text/plain
tests/webtbs/tw3567.pp svneol=native#text/plain
tests/webtbs/tw3572.pp svneol=native#text/plain
tests/webtbs/tw3573.pp svneol=native#text/plain
tests/webtbs/tw3576.pp svneol=native#text/plain
tests/webtbs/tw3577.pp svneol=native#text/plain
tests/webtbs/tw3578.pp svneol=native#text/plain
tests/webtbs/tw3579.pp svneol=native#text/plain
tests/webtbs/tw3583.pp svneol=native#text/plain
tests/webtbs/tw3589.pp svneol=native#text/plain
tests/webtbs/tw3594.pp svneol=native#text/plain
tests/webtbs/tw3595.pp svneol=native#text/plain
tests/webtbs/tw3612.pp svneol=native#text/plain
tests/webtbs/tw3617.pp svneol=native#text/plain
tests/webtbs/tw3619.pp svneol=native#text/plain
tests/webtbs/tw3621.pp svneol=native#text/plain
tests/webtbs/tw3628.pp svneol=native#text/plain
tests/webtbs/tw3634.pp svneol=native#text/plain
tests/webtbs/tw3650.pp svneol=native#text/plain
tests/webtbs/tw3653.pp svneol=native#text/plain
tests/webtbs/tw3661.pp svneol=native#text/plain
tests/webtbs/tw3666.pp svneol=native#text/plain
tests/webtbs/tw3669.pp svneol=native#text/plain
tests/webtbs/tw3676.pp svneol=native#text/plain
tests/webtbs/tw3681.pp svneol=native#text/plain
tests/webtbs/tw3683.pp svneol=native#text/plain
tests/webtbs/tw3687.pp svneol=native#text/plain
tests/webtbs/tw3691.pp svneol=native#text/plain
tests/webtbs/tw3694.pp svneol=native#text/plain
tests/webtbs/tw3695.pp svneol=native#text/plain
tests/webtbs/tw3697.pp svneol=native#text/plain
tests/webtbs/tw3700.pp svneol=native#text/plain
tests/webtbs/tw3708.pp svneol=native#text/plain
tests/webtbs/tw3719.pp svneol=native#text/plain
tests/webtbs/tw3721.pp svneol=native#text/plain
tests/webtbs/tw3742.pp svneol=native#text/plain
tests/webtbs/tw3751.pp svneol=native#text/plain
tests/webtbs/tw3758.pp svneol=native#text/plain
tests/webtbs/tw3764.pp svneol=native#text/plain
tests/webtbs/tw3765.pp svneol=native#text/plain
tests/webtbs/tw3768.pp svneol=native#text/plain
tests/webtbs/tw3774.pp svneol=native#text/plain
tests/webtbs/tw3777.pp svneol=native#text/plain
tests/webtbs/tw3778.pp svneol=native#text/plain
tests/webtbs/tw3780.pp svneol=native#text/plain
tests/webtbs/tw3782.pp svneol=native#text/plain
tests/webtbs/tw3796.pp svneol=native#text/plain
tests/webtbs/tw3805.pp svneol=native#text/plain
tests/webtbs/tw3814.pp svneol=native#text/plain
tests/webtbs/tw3827.pp svneol=native#text/plain
tests/webtbs/tw3829.pp svneol=native#text/plain
tests/webtbs/tw3833.pp svneol=native#text/plain
tests/webtbs/tw3840.pp svneol=native#text/plain
tests/webtbs/tw3841.pp svneol=native#text/plain
tests/webtbs/tw3863.pp svneol=native#text/plain
tests/webtbs/tw3864.pp svneol=native#text/plain
tests/webtbs/tw3865.pp svneol=native#text/plain
tests/webtbs/tw3870.pp svneol=native#text/plain
tests/webtbs/tw3893.pp svneol=native#text/plain
tests/webtbs/tw3898.pp svneol=native#text/plain
tests/webtbs/tw3899.pp svneol=native#text/plain
tests/webtbs/tw3900.pp svneol=native#text/plain
tests/webtbs/tw3913.pp svneol=native#text/plain
tests/webtbs/tw3930.pp svneol=native#text/plain
tests/webtbs/tw3931a.pp svneol=native#text/plain
tests/webtbs/tw3939.pp svneol=native#text/plain
tests/webtbs/tw3952.pp svneol=native#text/plain
tests/webtbs/tw3953a.pp svneol=native#text/plain
tests/webtbs/tw3953b.pp svneol=native#text/plain
tests/webtbs/tw3964a.pp svneol=native#text/plain
tests/webtbs/tw3964b.pp svneol=native#text/plain
tests/webtbs/tw3967.pp svneol=native#text/plain
tests/webtbs/tw3968.pp svneol=native#text/plain
tests/webtbs/tw3970.pp svneol=native#text/plain
tests/webtbs/tw3971.pp svneol=native#text/plain
tests/webtbs/tw3973.pp svneol=native#text/plain
tests/webtbs/tw3977.pp svneol=native#text/plain
tests/webtbs/tw3977.txt svneol=native#text/plain
tests/webtbs/tw3997.pp svneol=native#text/plain
tests/webtbs/tw4006.pp svneol=native#text/plain
tests/webtbs/tw4007.pp svneol=native#text/plain
tests/webtbs/tw4009.pp svneol=native#text/plain
tests/webtbs/tw4010.pp svneol=native#text/plain
tests/webtbs/tw4013.pp svneol=native#text/plain
tests/webtbs/tw4015.pp svneol=native#text/plain
tests/webtbs/tw4038.pp svneol=native#text/plain
tests/webtbs/tw4043.pp svneol=native#text/plain
tests/webtbs/tw4055.pp svneol=native#text/plain
tests/webtbs/tw4056.pp svneol=native#text/plain
tests/webtbs/tw4058.pp svneol=native#text/plain
tests/webtbs/tw4068.pp svneol=native#text/plain
tests/webtbs/tw4078.pp svneol=native#text/plain
tests/webtbs/tw4080.pp svneol=native#text/plain
tests/webtbs/tw4086.pp svneol=native#text/plain
tests/webtbs/tw4089.pp svneol=native#text/plain
tests/webtbs/tw4093.pp svneol=native#text/plain
tests/webtbs/tw4098.pp svneol=native#text/plain
tests/webtbs/tw4100.pp svneol=native#text/plain
tests/webtbs/tw4104.pp svneol=native#text/plain
tests/webtbs/tw4115.pp svneol=native#text/plain
tests/webtbs/tw4119.pp svneol=native#text/plain
tests/webtbs/tw4136.pp svneol=native#text/plain
tests/webtbs/tw4140.pp svneol=native#text/plain
tests/webtbs/tw4150.pp svneol=native#text/plain
tests/webtbs/tw4151.pp svneol=native#text/plain
tests/webtbs/tw4152.pp svneol=native#text/plain
tests/webtbs/tw4155.pp svneol=native#text/plain
tests/webtbs/tw4162.pp svneol=native#text/plain
tests/webtbs/tw4173.pp svneol=native#text/plain
tests/webtbs/tw4188.pp svneol=native#text/plain
tests/webtbs/tw4199.pp svneol=native#text/plain
tests/webtbs/tw4201.pp svneol=native#text/plain
tests/webtbs/tw4202.pp svneol=native#text/plain
tests/webtbs/tw4209.pp svneol=native#text/plain
tests/webtbs/tw4215.pp svneol=native#text/plain
tests/webtbs/tw4219.pp svneol=native#text/plain
tests/webtbs/tw4223.pp svneol=native#text/plain
tests/webtbs/tw4229.pp svneol=native#text/plain
tests/webtbs/tw4229a.pp svneol=native#text/plain
tests/webtbs/tw4233.pp svneol=native#text/plain
tests/webtbs/tw4234.pp svneol=native#text/plain
tests/webtbs/tw4234a.pp svneol=native#text/plain
tests/webtbs/tw4239.pp svneol=native#text/plain
tests/webtbs/tw4240.pp svneol=native#text/plain
tests/webtbs/tw4247.pp svneol=native#text/plain
tests/webtbs/tw4253.pp svneol=native#text/plain
tests/webtbs/tw4254.pp svneol=native#text/plain
tests/webtbs/tw4260.pp svneol=native#text/plain
tests/webtbs/tw4266.pp svneol=native#text/plain
tests/webtbs/tw4272.pp svneol=native#text/plain
tests/webtbs/tw4277.pp svneol=native#text/plain
tests/webtbs/tw4278.pp svneol=native#text/plain
tests/webtbs/tw4290.pp svneol=native#text/plain
tests/webtbs/tw4294.pp svneol=native#text/plain
tests/webtbs/tw4308.pp svneol=native#text/plain
tests/webtbs/tw4330.pp svneol=native#text/plain
tests/webtbs/tw4332.pp svneol=native#text/plain
tests/webtbs/tw4336.pp svneol=native#text/plain
tests/webtbs/tw4350.pp svneol=native#text/plain
tests/webtbs/tw4352.pp svneol=native#text/plain
tests/webtbs/tw4388.pp svneol=native#text/plain
tests/webtbs/tw4390.pp svneol=native#text/plain
tests/webtbs/tw4398.pp svneol=native#text/plain
tests/webtbs/tw4427.pp svneol=native#text/plain
tests/webtbs/tw4428.pp svneol=native#text/plain
tests/webtbs/tw4450.pp svneol=native#text/plain
tests/webtbs/tw4477.pp svneol=native#text/plain
tests/webtbs/tw4487.pp svneol=native#text/plain
tests/webtbs/tw4489.pp svneol=native#text/plain
tests/webtbs/tw4496.pp svneol=native#text/plain
tests/webtbs/tw4519.pp svneol=native#text/plain
tests/webtbs/tw4520.pp svneol=native#text/plain
tests/webtbs/tw4529.pp svneol=native#text/plain
tests/webtbs/tw4533.pp svneol=native#text/plain
tests/webtbs/tw4534.pp svneol=native#text/plain
tests/webtbs/tw4537.pp svneol=native#text/plain
tests/webtbs/tw4540.pp svneol=native#text/plain
tests/webtbs/tw4541.pp svneol=native#text/plain
tests/webtbs/tw4557.pp svneol=native#text/plain
tests/webtbs/tw4566.pp svneol=native#text/plain
tests/webtbs/tw4574.pp svneol=native#text/plain
tests/webtbs/tw4599.pp svneol=native#text/plain
tests/webtbs/tw4606.pp svneol=native#text/plain
tests/webtbs/tw4613.pp svneol=native#text/plain
tests/webtbs/tw4616.pp svneol=native#text/plain
tests/webtbs/tw4624.pp svneol=native#text/plain
tests/webtbs/tw4632.pp svneol=native#text/plain
tests/webtbs/tw4633.pp svneol=native#text/plain
tests/webtbs/tw4634.pp svneol=native#text/plain
tests/webtbs/tw4635.pp svneol=native#text/plain
tests/webtbs/tw4640.pp svneol=native#text/plain
tests/webtbs/tw4669.pp svneol=native#text/plain
tests/webtbs/tw4675.pp svneol=native#text/plain
tests/webtbs/tw4678.pp svneol=native#text/plain
tests/webtbs/tw4700.pp svneol=native#text/plain
tests/webtbs/tw4704.pp svneol=native#text/plain
tests/webtbs/tw4705.pp svneol=native#text/plain
tests/webtbs/tw4722.pp svneol=native#text/plain
tests/webtbs/tw4763.pp svneol=native#text/plain
tests/webtbs/tw4768.pp svneol=native#text/plain
tests/webtbs/tw4778.pp svneol=native#text/plain
tests/webtbs/tw4789.pp svneol=native#text/plain
tests/webtbs/tw4809.pp svneol=native#text/plain
tests/webtbs/tw4826.pp svneol=native#text/plain
tests/webtbs/tw4881.pp svneol=native#text/plain
tests/webtbs/tw4893a.pp svneol=native#text/plain
tests/webtbs/tw4893b.pp svneol=native#text/plain
tests/webtbs/tw4893c.pp svneol=native#text/plain
tests/webtbs/tw4898.pp svneol=native#text/plain
tests/webtbs/tw4902.pp svneol=native#text/plain
tests/webtbs/tw4922.pp svneol=native#text/plain
tests/webtbs/tw4925.pp svneol=native#text/plain
tests/webtbs/tw4950.pp svneol=native#text/plain
tests/webtbs/tw4954.pp svneol=native#text/plain
tests/webtbs/tw4999.pp svneol=native#text/plain
tests/webtbs/tw5001.pp svneol=native#text/plain
tests/webtbs/tw5015.pp svneol=native#text/plain
tests/webtbs/tw5023.pp svneol=native#text/plain
tests/webtbs/tw5036.pp svneol=native#text/plain
tests/webtbs/tw5082.pp svneol=native#text/plain
tests/webtbs/tw5086.pp svneol=native#text/plain
tests/webtbs/tw5094.pp svneol=native#text/plain
tests/webtbs/tw5100.pp svneol=native#text/plain
tests/webtbs/tw5100a.pp svneol=native#text/plain
tests/webtbs/tw5641.pp svneol=native#text/plain
tests/webtbs/tw5800.pp svneol=native#text/plain
tests/webtbs/tw5896.pp svneol=native#text/plain
tests/webtbs/tw6036.pp svneol=native#text/plain
tests/webtbs/tw6036a.pp svneol=native#text/plain
tests/webtbs/tw6129.pp svneol=native#text/plain
tests/webtbs/tw6184.pp svneol=native#text/plain
tests/webtbs/tw6203.pp svneol=native#text/plain
tests/webtbs/tw6435.pp svneol=native#text/plain
tests/webtbs/tw6451.pp svneol=native#text/plain
tests/webtbs/tw6451a.pp svneol=native#text/plain
tests/webtbs/tw6451b.pp svneol=native#text/plain
tests/webtbs/tw6491.pp svneol=native#text/plain
tests/webtbs/tw6493.pp svneol=native#text/plain
tests/webtbs/tw6525.pp svneol=native#text/plain
tests/webtbs/tw6543.pp svneol=native#text/plain
tests/webtbs/tw6586a.pp svneol=native#text/plain
tests/webtbs/tw6586b.pp svneol=native#text/plain
tests/webtbs/tw6624.pp svneol=native#text/plain
tests/webtbs/tw6641.pp svneol=native#text/plain
tests/webtbs/tw6684.pp svneol=native#text/plain
tests/webtbs/tw6686.pp svneol=native#text/plain
tests/webtbs/tw6687.pp svneol=native#text/plain
tests/webtbs/tw6690.pp svneol=native#text/plain
tests/webtbs/tw6700.pp svneol=native#text/plain
tests/webtbs/tw6727.pp svneol=native#text/plain
tests/webtbs/tw6735.pp svneol=native#text/plain
tests/webtbs/tw6737.pp svneol=native#text/plain
tests/webtbs/tw6742.pp svneol=native#text/plain
tests/webtbs/tw6767.pp svneol=native#text/plain
tests/webtbs/tw6769.pp svneol=native#text/plain
tests/webtbs/tw6822a.pp svneol=native#text/plain
tests/webtbs/tw6822b.pp svneol=native#text/plain
tests/webtbs/tw6822c.pp svneol=native#text/plain
tests/webtbs/tw6851.pp svneol=native#text/plain
tests/webtbs/tw6865.pp svneol=native#text/plain
tests/webtbs/tw6868.pp svneol=native#text/plain
tests/webtbs/tw6960.pp svneol=native#text/plain
tests/webtbs/tw6977.pp svneol=native#text/plain
tests/webtbs/tw6980.pp svneol=native#text/plain
tests/webtbs/tw6989.pp svneol=native#text/plain
tests/webtbs/tw7006.pp svneol=native#text/plain
tests/webtbs/tw7070a.pp svneol=native#text/plain
tests/webtbs/tw7070b.pp svneol=native#text/plain
tests/webtbs/tw7071.pp svneol=native#text/plain
tests/webtbs/tw7100.pp svneol=native#text/plain
tests/webtbs/tw7104.pp svneol=native#text/plain
tests/webtbs/tw7105.pp svneol=native#text/plain
tests/webtbs/tw7143.pp svneol=native#text/plain
tests/webtbs/tw7161.pp svneol=native#text/plain
tests/webtbs/tw7173.pp svneol=native#text/plain
tests/webtbs/tw7179.pp svneol=native#text/plain
tests/webtbs/tw7195.pp svneol=native#text/plain
tests/webtbs/tw7200.pp svneol=native#text/plain
tests/webtbs/tw7210.pp svneol=native#text/plain
tests/webtbs/tw7227.pp svneol=native#text/plain
tests/webtbs/tw7242.pp svneol=native#text/plain
tests/webtbs/tw7262.pp svneol=native#text/plain
tests/webtbs/tw7276.pp svneol=native#text/plain
tests/webtbs/tw7281.pp svneol=native#text/plain
tests/webtbs/tw7285.pp svneol=native#text/plain
tests/webtbs/tw7329.pp svneol=native#text/plain
tests/webtbs/tw7372.pp svneol=native#text/plain
tests/webtbs/tw7379.pp svneol=native#text/plain
tests/webtbs/tw7381.pp svneol=native#text/plain
tests/webtbs/tw7391.pp svneol=native#text/plain
tests/webtbs/tw7425.pp svneol=native#text/plain
tests/webtbs/tw7440.pp svneol=native#text/plain
tests/webtbs/tw7446.pp svneol=native#text/plain
tests/webtbs/tw7489.pp svneol=native#text/plain
tests/webtbs/tw7527.pp svneol=native#text/plain
tests/webtbs/tw7567.pp svneol=native#text/plain
tests/webtbs/tw7568.pp svneol=native#text/plain
tests/webtbs/tw7637.pp svneol=native#text/plain
tests/webtbs/tw7643.pp svneol=native#text/plain
tests/webtbs/tw7679.pp svneol=native#text/plain
tests/webtbs/tw7719.pp svneol=native#text/plain
tests/webtbs/tw7733.pp svneol=native#text/plain
tests/webtbs/tw7756.pp svneol=native#text/plain
tests/webtbs/tw7758.pp svneol=native#text/plain
tests/webtbs/tw7758a.pp svneol=native#text/plain
tests/webtbs/tw7803.pp svneol=native#text/plain
tests/webtbs/tw7806.pp svneol=native#text/plain
tests/webtbs/tw7808.pp svneol=native#text/plain
tests/webtbs/tw7817a.pp svneol=native#text/plain
tests/webtbs/tw7817b.pp svneol=native#text/plain
tests/webtbs/tw7838a.pp svneol=native#text/plain
tests/webtbs/tw7838b.pp svneol=native#text/plain
tests/webtbs/tw7847.pp svneol=native#text/plain
tests/webtbs/tw7851.pp svneol=native#text/plain
tests/webtbs/tw7851a.pp svneol=native#text/plain
tests/webtbs/tw7954.pp svneol=native#text/plain
tests/webtbs/tw7963.pp svneol=native#text/plain
tests/webtbs/tw7975.pp svneol=native#text/plain
tests/webtbs/tw7975a.pp svneol=native#text/plain
tests/webtbs/tw7998.pp svneol=native#text/plain
tests/webtbs/tw8018.pp svneol=native#text/plain
tests/webtbs/tw8028.pp svneol=native#text/plain
tests/webtbs/tw8049.pp svneol=native#text/plain
tests/webtbs/tw8055.pp svneol=native#text/plain
tests/webtbs/tw8076.pp svneol=native#text/plain
tests/webtbs/tw8090.pp svneol=native#text/plain
tests/webtbs/tw8140.pp svneol=native#text/plain
tests/webtbs/tw8140b.pp svneol=native#text/plain
tests/webtbs/tw8140f.pp svneol=native#text/plain
tests/webtbs/tw8140g.pp svneol=native#text/plain
tests/webtbs/tw8140h.pp svneol=native#text/plain
tests/webtbs/tw8141.pp svneol=native#text/plain
tests/webtbs/tw8144.pp svneol=native#text/plain
tests/webtbs/tw8145.pp svneol=native#text/plain
tests/webtbs/tw8148.pp svneol=native#text/plain
tests/webtbs/tw8150a.pp svneol=native#text/plain
tests/webtbs/tw8150d.pp svneol=native#text/plain
tests/webtbs/tw8151a.pp svneol=native#text/plain
tests/webtbs/tw8153.pp svneol=native#text/plain
tests/webtbs/tw8153a.pp svneol=native#text/plain
tests/webtbs/tw8155.pp svneol=native#text/plain
tests/webtbs/tw8156.pp svneol=native#text/plain
tests/webtbs/tw8171.pp svneol=native#text/plain
tests/webtbs/tw8172.pp svneol=native#text/plain
tests/webtbs/tw8177.pp svneol=native#text/plain
tests/webtbs/tw8177a.pp svneol=native#text/plain
tests/webtbs/tw8180.pp svneol=native#text/plain
tests/webtbs/tw8183.pp svneol=native#text/plain
tests/webtbs/tw8187.pp svneol=native#text/plain
tests/webtbs/tw8191.pp svneol=native#text/plain
tests/webtbs/tw8195a.pp svneol=native#text/plain
tests/webtbs/tw8195b.pp svneol=native#text/plain
tests/webtbs/tw8199.pp svneol=native#text/plain
tests/webtbs/tw8222.pp svneol=native#text/plain
tests/webtbs/tw8222a.pp svneol=native#text/plain
tests/webtbs/tw8222b.pp svneol=native#text/plain
tests/webtbs/tw8225.pp svneol=native#text/plain
tests/webtbs/tw8229.pp svneol=native#text/plain
tests/webtbs/tw8232.pp svneol=native#text/plain
tests/webtbs/tw8258.pp svneol=native#text/plain
tests/webtbs/tw8258a.pp svneol=native#text/plain
tests/webtbs/tw8258b.pp svneol=native#text/plain
tests/webtbs/tw8264.pp svneol=native#text/plain
tests/webtbs/tw8282.pp svneol=native#text/plain
tests/webtbs/tw8283.pp svneol=native#text/plain
tests/webtbs/tw8304.pp svneol=native#text/plain
tests/webtbs/tw8312.pp svneol=native#text/plain
tests/webtbs/tw8321.pp svneol=native#text/plain
tests/webtbs/tw8371.pp svneol=native#text/plain
tests/webtbs/tw8372.pp svneol=native#text/plain
tests/webtbs/tw8391.pp svneol=native#text/plain
tests/webtbs/tw8434.pp svneol=native#text/plain
tests/webtbs/tw8462.pp svneol=native#text/plain
tests/webtbs/tw8465.pp svneol=native#text/plain
tests/webtbs/tw8513.pp svneol=native#text/plain
tests/webtbs/tw8523.pp svneol=native#text/plain
tests/webtbs/tw8525.pp svneol=native#text/plain
tests/webtbs/tw8573.pp svneol=native#text/plain
tests/webtbs/tw8580.pp svneol=native#text/plain
tests/webtbs/tw8615.pp svneol=native#text/plain
tests/webtbs/tw8633.pp svneol=native#text/plain
tests/webtbs/tw8660.pp svneol=native#text/plain
tests/webtbs/tw8664.pp svneol=native#text/plain
tests/webtbs/tw8677.pp svneol=native#text/plain
tests/webtbs/tw8678.pp svneol=native#text/plain
tests/webtbs/tw8678a.pp svneol=native#text/plain
tests/webtbs/tw8685.pp svneol=native#text/plain
tests/webtbs/tw8730a.pp svneol=native#text/plain
tests/webtbs/tw8730b.pp svneol=native#text/plain
tests/webtbs/tw8730c.pp svneol=native#text/plain
tests/webtbs/tw8730d.pp svneol=native#text/plain
tests/webtbs/tw8757.pp svneol=native#text/plain
tests/webtbs/tw8777f.pp svneol=native#text/plain
tests/webtbs/tw8777g.pp svneol=native#text/plain
tests/webtbs/tw8777i.pp svneol=native#text/plain
tests/webtbs/tw8810.pp svneol=native#text/plain
tests/webtbs/tw8838.pp svneol=native#text/plain
tests/webtbs/tw8847.pp svneol=native#text/plain
tests/webtbs/tw8861.pp svneol=native#text/plain
tests/webtbs/tw8870.pp svneol=native#text/plain
tests/webtbs/tw8883.pp svneol=native#text/plain
tests/webtbs/tw8919.pp svneol=native#text/plain
tests/webtbs/tw8930.pp svneol=native#text/plain
tests/webtbs/tw8935.pp svneol=native#text/plain
tests/webtbs/tw8950.pp svneol=native#text/plain
tests/webtbs/tw8975.pp svneol=native#text/plain
tests/webtbs/tw8975a.pp svneol=native#text/plain
tests/webtbs/tw8977.pp svneol=native#text/plain
tests/webtbs/tw9025.pp svneol=native#text/plain
tests/webtbs/tw9026.pp svneol=native#text/plain
tests/webtbs/tw9054.pp svneol=native#text/plain
tests/webtbs/tw9059.pp svneol=native#text/plain
tests/webtbs/tw9072.pp svneol=native#text/plain
tests/webtbs/tw9073.pp svneol=native#text/plain
tests/webtbs/tw9076.pp svneol=native#text/plain
tests/webtbs/tw9076a.pp svneol=native#text/plain
tests/webtbs/tw9085.pp svneol=native#text/plain
tests/webtbs/tw9089a.pp svneol=native#text/plain
tests/webtbs/tw9089b.pp svneol=native#text/plain
tests/webtbs/tw9089c.pp svneol=native#text/plain
tests/webtbs/tw9089d.pp svneol=native#text/plain
tests/webtbs/tw9095.pp svneol=native#text/plain
tests/webtbs/tw9096.pp svneol=native#text/plain
tests/webtbs/tw9098.pp svneol=native#text/plain
tests/webtbs/tw9107.pp svneol=native#text/plain
tests/webtbs/tw9108.pp svneol=native#text/plain
tests/webtbs/tw9113.pp svneol=native#text/plain
tests/webtbs/tw9126.pp svneol=native#text/plain
tests/webtbs/tw9128.pp svneol=native#text/plain
tests/webtbs/tw9139.pp svneol=native#text/plain
tests/webtbs/tw9139a.pp svneol=native#text/plain
tests/webtbs/tw9141.pp svneol=native#text/plain
tests/webtbs/tw9144a.pp svneol=native#text/plain
tests/webtbs/tw9144b.pp svneol=native#text/plain
tests/webtbs/tw9145.pp svneol=native#text/plain
tests/webtbs/tw9161.pp svneol=native#text/plain
tests/webtbs/tw9162.pp svneol=native#text/plain
tests/webtbs/tw9167.pp svneol=native#text/plain
tests/webtbs/tw9174.pp svneol=native#text/plain
tests/webtbs/tw9176.pp svneol=native#text/plain
tests/webtbs/tw9179.pp svneol=native#text/plain
tests/webtbs/tw9187.pp svneol=native#text/plain
tests/webtbs/tw9190.pp svneol=native#text/plain
tests/webtbs/tw9209.pp svneol=native#text/plain
tests/webtbs/tw9221.pp svneol=native#text/plain
tests/webtbs/tw9233.pp svneol=native#text/plain
tests/webtbs/tw9261.pp svneol=native#text/plain
tests/webtbs/tw9278.pp svneol=native#text/plain
tests/webtbs/tw9299.pp svneol=native#text/plain
tests/webtbs/tw9306a.pp svneol=native#text/plain
tests/webtbs/tw9306b.pp svneol=native#text/plain
tests/webtbs/tw9309.pp svneol=native#text/plain
tests/webtbs/tw9327.pp svneol=native#text/plain
tests/webtbs/tw9347.pp svneol=native#text/plain
tests/webtbs/tw9347a.pp svneol=native#text/plain
tests/webtbs/tw9347b.pp svneol=native#text/plain
tests/webtbs/tw9384.pp svneol=native#text/plain
tests/webtbs/tw9385.pp svneol=native#text/plain
tests/webtbs/tw9419.pp svneol=native#text/plain
tests/webtbs/tw9450.pp svneol=native#text/plain
tests/webtbs/tw9450a.pp svneol=native#text/plain
tests/webtbs/tw9461.pp svneol=native#text/plain
tests/webtbs/tw9551a.pp svneol=native#text/plain
tests/webtbs/tw9601.pp svneol=native#text/plain
tests/webtbs/tw9667.pp svneol=native#text/plain
tests/webtbs/tw9672.pp svneol=native#text/plain
tests/webtbs/tw9673.pp svneol=native#text/plain
tests/webtbs/tw9695.pp svneol=native#text/plain
tests/webtbs/tw9704.pp svneol=native#text/plain
tests/webtbs/tw9766.pp svneol=native#text/plain
tests/webtbs/tw9827.pp svneol=native#text/plain
tests/webtbs/tw9894.pp svneol=native#text/plain
tests/webtbs/tw9894a.pp svneol=native#text/plain
tests/webtbs/tw9897.pp svneol=native#text/plain
tests/webtbs/tw9918.pp svneol=native#text/plain
tests/webtbs/tw9919.pp svneol=native#text/plain
tests/webtbs/tw9985.pp svneol=native#text/plain
tests/webtbs/tw9985a.pp svneol=native#text/plain
tests/webtbs/u_uvmta.pp svneol=native#text/pascal
tests/webtbs/ub1873.pp svneol=native#text/plain
tests/webtbs/ub1883.pp svneol=native#text/plain
tests/webtbs/uvmt.pp svneol=native#text/pascal
tests/webtbs/uvmt_a.pp svneol=native#text/pascal
tests/webtbs/uvmta.pp svneol=native#text/pascal
tests/webtbs/uvmta_a.pp svneol=native#text/pascal
tests/webtbs/uw0555.pp svneol=native#text/plain
tests/webtbs/uw0701c.pp svneol=native#text/plain
tests/webtbs/uw0701d.pp svneol=native#text/plain
tests/webtbs/uw0701e.pp svneol=native#text/plain
tests/webtbs/uw0809.pp svneol=native#text/plain
tests/webtbs/uw10492.pp svneol=native#text/plain
tests/webtbs/uw11182.pp svneol=native#text/plain
tests/webtbs/uw11762.pp svneol=native#text/plain
tests/webtbs/uw1181.inc svneol=native#text/plain
tests/webtbs/uw1279.pp svneol=native#text/plain
tests/webtbs/uw13015.pp svneol=native#text/plain
tests/webtbs/uw1331.pp svneol=native#text/plain
tests/webtbs/uw13345b.pp svneol=native#text/plain
tests/webtbs/uw13345c.pp svneol=native#text/plain
tests/webtbs/uw13345y.pp svneol=native#text/plain
tests/webtbs/uw13583.pp svneol=native#text/plain
tests/webtbs/uw14124.pp svneol=native#text/plain
tests/webtbs/uw14958.pp svneol=native#text/plain
tests/webtbs/uw15582.pp svneol=native#text/plain
tests/webtbs/uw15591.pp svneol=native#text/pascal
tests/webtbs/uw15909.pp svneol=native#text/plain
tests/webtbs/uw15966.pp svneol=native#text/plain
tests/webtbs/uw17220.pp svneol=native#text/plain
tests/webtbs/uw17220a.pp svneol=native#text/plain
tests/webtbs/uw17493.pp svneol=native#text/plain
tests/webtbs/uw17950.pas svneol=native#text/pascal
tests/webtbs/uw18087a.pp svneol=native#text/pascal
tests/webtbs/uw18087b.pp svneol=native#text/pascal
tests/webtbs/uw18909a.pp svneol=native#text/pascal
tests/webtbs/uw18909b.pp svneol=native#text/pascal
tests/webtbs/uw19159.pp svneol=native#text/pascal
tests/webtbs/uw19701.pas svneol=native#text/plain
tests/webtbs/uw19851.pp svneol=native#text/pascal
tests/webtbs/uw2004.inc svneol=native#text/plain
tests/webtbs/uw2040.pp svneol=native#text/plain
tests/webtbs/uw20909a.pas svneol=native#text/pascal
tests/webtbs/uw20909b.pas svneol=native#text/pascal
tests/webtbs/uw20940.pp svneol=native#text/pascal
tests/webtbs/uw21808a.pp svneol=native#text/plain
tests/webtbs/uw21808b.pp svneol=native#text/plain
tests/webtbs/uw22160a2.pp svneol=native#text/pascal
tests/webtbs/uw22160b2.pp svneol=native#text/pascal
tests/webtbs/uw22160b3.pp svneol=native#text/pascal
tests/webtbs/uw2266a.inc svneol=native#text/plain
tests/webtbs/uw2266b.pas svneol=native#text/plain
tests/webtbs/uw2269.inc svneol=native#text/plain
tests/webtbs/uw22741a.pp svneol=native#text/plain
tests/webtbs/uw22741b.pp svneol=native#text/plain
tests/webtbs/uw2364.pp svneol=native#text/plain
tests/webtbs/uw2706a.pp svneol=native#text/plain
tests/webtbs/uw2706b.pp svneol=native#text/plain
tests/webtbs/uw2731.pp svneol=native#text/plain
tests/webtbs/uw2738.pp svneol=native#text/plain
tests/webtbs/uw2834.pp svneol=native#text/plain
tests/webtbs/uw2920.pp svneol=native#text/plain
tests/webtbs/uw2956.pp svneol=native#text/plain
tests/webtbs/uw2984.pp svneol=native#text/plain
tests/webtbs/uw3103.pp svneol=native#text/plain
tests/webtbs/uw3179a.pp svneol=native#text/plain
tests/webtbs/uw3179b.pp svneol=native#text/plain
tests/webtbs/uw3184a.pp svneol=native#text/plain
tests/webtbs/uw3184b.pp svneol=native#text/plain
tests/webtbs/uw3292a.pp svneol=native#text/plain
tests/webtbs/uw3340.pp svneol=native#text/plain
tests/webtbs/uw3353.pp svneol=native#text/plain
tests/webtbs/uw3356.pp svneol=native#text/plain
tests/webtbs/uw3429.pp svneol=native#text/plain
tests/webtbs/uw3474a.pp svneol=native#text/plain
tests/webtbs/uw3474b.pp svneol=native#text/plain
tests/webtbs/uw3968.pp svneol=native#text/plain
tests/webtbs/uw4056.pp svneol=native#text/plain
tests/webtbs/uw4140.pp svneol=native#text/plain
tests/webtbs/uw4352a.pp svneol=native#text/plain
tests/webtbs/uw4352b.pp svneol=native#text/plain
tests/webtbs/uw4352c.pp svneol=native#text/plain
tests/webtbs/uw4352d.pp svneol=native#text/plain
tests/webtbs/uw4352e.pp svneol=native#text/plain
tests/webtbs/uw4541.pp svneol=native#text/plain
tests/webtbs/uw6203.pp svneol=native#text/plain
tests/webtbs/uw6767.pp svneol=native#text/plain
tests/webtbs/uw6822a.pp svneol=native#text/plain
tests/webtbs/uw7381.pp svneol=native#text/plain
tests/webtbs/uw7838a.pp svneol=native#text/plain
tests/webtbs/uw8180.pp svneol=native#text/plain
tests/webtbs/uw8372.pp svneol=native#text/plain
tests/webtbs/uw8730a.pp svneol=native#text/plain
tests/webtbs/uw8730b.pp svneol=native#text/plain
tests/webtbs/uw9113a.pp svneol=native#text/plain
tests/webtbs/uw9113b.pp svneol=native#text/plain
utils/Makefile svneol=native#text/plain
utils/Makefile.fpc svneol=native#text/plain
utils/README.txt svneol=native#text/plain
utils/bin2obj.pp svneol=native#text/plain
utils/creumap.pp svneol=native#text/plain
utils/data2inc.exm -text
utils/data2inc.pp svneol=native#text/plain
utils/debugsvr/Makefile svneol=native#text/plain
utils/debugsvr/Makefile.fpc svneol=native#text/plain
utils/debugsvr/README.txt svneol=native#text/plain
utils/debugsvr/console/Makefile svneol=native#text/plain
utils/debugsvr/console/Makefile.fpc svneol=native#text/plain
utils/debugsvr/console/debugserver.pp svneol=native#text/plain
utils/debugsvr/dbugintf.pp svneol=native#text/plain
utils/debugsvr/debugserverintf.pp svneol=native#text/plain
utils/debugsvr/gtk/Makefile svneol=native#text/plain
utils/debugsvr/gtk/Makefile.fpc svneol=native#text/plain
utils/debugsvr/gtk/bitmapdata.pp svneol=native#text/plain
utils/debugsvr/gtk/bitmaps/clear.xpm -text
utils/debugsvr/gtk/bitmaps/close.xpm -text
utils/debugsvr/gtk/bitmaps/connect.xpm -text
utils/debugsvr/gtk/bitmaps/disconnect.xpm -text
utils/debugsvr/gtk/bitmaps/error.xpm -text
utils/debugsvr/gtk/bitmaps/info.xpm -text
utils/debugsvr/gtk/bitmaps/pause.xpm -text
utils/debugsvr/gtk/bitmaps/run.xpm -text
utils/debugsvr/gtk/bitmaps/save.xpm -text
utils/debugsvr/gtk/bitmaps/warning.xpm -text
utils/debugsvr/gtk/bitmaps/xpmtopp -text
utils/debugsvr/gtk/debugserver.pp svneol=native#text/plain
utils/debugsvr/gtk/frmabout.pp svneol=native#text/plain
utils/debugsvr/gtk/frmmain.pp svneol=native#text/plain
utils/debugsvr/msgintf.pp svneol=native#text/plain
utils/debugsvr/speeddebug.pp svneol=native#text/plain
utils/debugsvr/testdebug.pp svneol=native#text/plain
utils/delp.pp svneol=native#text/plain
utils/dxegen/Makefile svneol=native#text/plain
utils/dxegen/Makefile.fpc svneol=native#text/plain
utils/dxegen/coff.pp svneol=native#text/plain
utils/dxegen/dxegen.pp svneol=native#text/plain
utils/dxegen/fpmake.pp svneol=native#text/plain
utils/fpcm/Makefile svneol=native#text/plain
utils/fpcm/Makefile.fpc svneol=native#text/plain
utils/fpcm/fpcmake.inc svneol=native#text/plain
utils/fpcm/fpcmake.ini svneol=native#text/plain
utils/fpcm/fpcmake.pp svneol=native#text/plain
utils/fpcm/fpcmdic.pp svneol=native#text/plain
utils/fpcm/fpcmmain.pp svneol=native#text/plain
utils/fpcm/fpcmpkg.pp svneol=native#text/plain
utils/fpcm/fpcmwr.pp svneol=native#text/plain
utils/fpcm/fpmake.pp svneol=native#text/plain
utils/fpcm/makefile.exm -text
utils/fpcm/printmakefilefpcrequirements.sh svneol=native#text/plain
utils/fpcm/readme.txt svneol=native#text/plain
utils/fpcmkcfg/Makefile svneol=native#text/plain
utils/fpcmkcfg/Makefile.fpc svneol=native#text/plain
utils/fpcmkcfg/default.cft svneol=native#text/plain
utils/fpcmkcfg/default.inc svneol=native#text/plain
utils/fpcmkcfg/fpc.cft svneol=native#text/plain
utils/fpcmkcfg/fpccfg.inc svneol=native#text/plain
utils/fpcmkcfg/fpcfg.inc svneol=native#text/plain
utils/fpcmkcfg/fpcmkcfg.pp svneol=native#text/plain
utils/fpcmkcfg/fpinc.cfg svneol=native#text/plain
utils/fpcmkcfg/fpinc.ini svneol=native#text/plain
utils/fpcmkcfg/fpini.inc svneol=native#text/plain
utils/fpcmkcfg/fpmake.pp svneol=native#text/plain
utils/fpcmkcfg/fppkg.cfg svneol=native#text/plain
utils/fpcmkcfg/fppkg.inc svneol=native#text/plain
utils/fpcres/Makefile svneol=native#text/plain
utils/fpcres/Makefile.fpc svneol=native#text/plain
utils/fpcres/closablefilestream.pas svneol=native#text/plain
utils/fpcres/fpcjres.pas svneol=native#text/plain
utils/fpcres/fpcres.pas svneol=native#text/plain
utils/fpcres/fpmake.pp svneol=native#text/plain
utils/fpcres/jarparamparser.pas svneol=native#text/plain
utils/fpcres/jarsourcehandler.pas svneol=native#text/plain
utils/fpcres/msghandler.pas svneol=native#text/plain
utils/fpcres/paramparser.pas svneol=native#text/plain
utils/fpcres/sourcehandler.pas svneol=native#text/plain
utils/fpcres/target.pas svneol=native#text/plain
utils/fpcreslipo/Makefile svneol=native#text/plain
utils/fpcreslipo/Makefile.fpc svneol=native#text/plain
utils/fpcreslipo/fpcreslipo.pp svneol=native#text/plain
utils/fpcreslipo/msghandler.pp svneol=native#text/plain
utils/fpcreslipo/paramparser.pp svneol=native#text/plain
utils/fpcreslipo/sourcehandler.pp svneol=native#text/plain
utils/fpdoc/COPYING.txt svneol=native#text/plain
utils/fpdoc/Makefile svneol=native#text/plain
utils/fpdoc/Makefile.fpc svneol=native#text/plain
utils/fpdoc/README.txt svneol=native#text/plain
utils/fpdoc/css.inc svneol=native#text/plain
utils/fpdoc/dglobals.pp svneol=native#text/plain
utils/fpdoc/dw_dxml.pp svneol=native#text/plain
utils/fpdoc/dw_html.pp svneol=native#text/plain
utils/fpdoc/dw_htmlchm.inc svneol=native#text/plain
utils/fpdoc/dw_ipflin.pas svneol=native#text/plain
utils/fpdoc/dw_latex.pp svneol=native#text/plain
utils/fpdoc/dw_linrtf.pp svneol=native#text/plain
utils/fpdoc/dw_lintmpl.pp svneol=native#text/plain
utils/fpdoc/dw_man.pp svneol=native#text/plain
utils/fpdoc/dw_template.pp svneol=native#text/plain
utils/fpdoc/dw_txt.pp svneol=native#text/plain
utils/fpdoc/dw_xml.pp svneol=native#text/plain
utils/fpdoc/dwlinear.pp svneol=native#text/plain
utils/fpdoc/dwriter.pp svneol=native#text/plain
utils/fpdoc/fpclasschart.lpi svneol=native#text/plain
utils/fpdoc/fpclasschart.pp svneol=native#text/plain
utils/fpdoc/fpde/Makefile svneol=native#text/plain
utils/fpdoc/fpde/Makefile.fpc svneol=native#text/plain
utils/fpdoc/fpde/bitmaps/bold.xpm -text
utils/fpdoc/fpde/bitmaps/italic.xpm -text
utils/fpdoc/fpde/bitmaps/link.xpm -text
utils/fpdoc/fpde/bitmaps/new.xpm -text
utils/fpdoc/fpde/bitmaps/newelement.xpm -text
utils/fpdoc/fpde/bitmaps/newmodule.xpm -text
utils/fpdoc/fpde/bitmaps/newpackage.xpm -text
utils/fpdoc/fpde/bitmaps/newtopic.xpm -text
utils/fpdoc/fpde/bitmaps/open.xpm -text
utils/fpdoc/fpde/bitmaps/para.xpm -text
utils/fpdoc/fpde/bitmaps/remark.xpm -text
utils/fpdoc/fpde/bitmaps/save.xpm -text
utils/fpdoc/fpde/bitmaps/saveas.xpm -text
utils/fpdoc/fpde/bitmaps/table.xpm -text
utils/fpdoc/fpde/bitmaps/underline.xpm -text
utils/fpdoc/fpde/bitmaps/var.xpm -text
utils/fpdoc/fpde/fpde.pp svneol=native#text/plain
utils/fpdoc/fpde/fpdemsg.pp svneol=native#text/plain
utils/fpdoc/fpde/fpdeopts.pp svneol=native#text/plain
utils/fpdoc/fpde/frmabout.pp svneol=native#text/plain
utils/fpdoc/fpde/frmlink.pp svneol=native#text/plain
utils/fpdoc/fpde/frmmain.pp svneol=native#text/plain
utils/fpdoc/fpde/frmmakeskel.pp svneol=native#text/plain
utils/fpdoc/fpde/frmnewnode.pp svneol=native#text/plain
utils/fpdoc/fpde/frmoptions.pp svneol=native#text/plain
utils/fpdoc/fpde/frmtable.pp svneol=native#text/plain
utils/fpdoc/fpde/pgeditor.pp svneol=native#text/plain
utils/fpdoc/fpde/xpms.pp svneol=native#text/plain
utils/fpdoc/fpdoc.css -text
utils/fpdoc/fpdoc.lpi svneol=native#text/plain
utils/fpdoc/fpdoc.pp svneol=native#text/plain
utils/fpdoc/fpdocproj.pas svneol=native#text/plain
utils/fpdoc/fpdocxmlopts.pas svneol=native#text/plain
utils/fpdoc/fpmake.pp svneol=native#text/plain
utils/fpdoc/intl/Makefile svneol=native#text/plain
utils/fpdoc/intl/dglobals.de.po svneol=native#text/plain
utils/fpdoc/intl/dglobals.sk.po svneol=native#text/plain
utils/fpdoc/intl/dwriter.de.po svneol=native#text/plain
utils/fpdoc/intl/fpdoc.de.po svneol=native#text/plain
utils/fpdoc/intl/fpdocmk.de.po svneol=native#text/plain
utils/fpdoc/intl/fpdocstr.de.po svneol=native#text/plain
utils/fpdoc/intl/makeskel.de.po svneol=native#text/plain
utils/fpdoc/makeskel.lpi svneol=native#text/plain
utils/fpdoc/makeskel.pp svneol=native#text/plain
utils/fpdoc/mgrfpdocproj.pp svneol=native#text/plain
utils/fpdoc/mkfpdoc.pp svneol=native#text/plain
utils/fpdoc/mkfpdocproj.lpi svneol=native#text/plain
utils/fpdoc/mkfpdocproj.pp svneol=native#text/plain
utils/fpdoc/sample-project.xml svneol=native#text/plain
utils/fpdoc/sh_pas.pp svneol=native#text/plain
utils/fpdoc/testunit.pp svneol=native#text/plain
utils/fpdoc/testunit.xml svneol=native#text/plain
utils/fpdoc/unitdiff.pp svneol=native#text/plain
utils/fpgmake/fpgmake.pp svneol=native#text/plain
utils/fpgmake/fpmake.cft svneol=native#text/plain
utils/fpgmake/fpmake.inc svneol=native#text/plain
utils/fpgmake/fpmakecreatefile.pas svneol=native#text/plain
utils/fpgmake/fpmakeparsejson.pas svneol=native#text/plain
utils/fpmake.pp svneol=native#text/plain
utils/fpmake_add.inc svneol=native#text/plain
utils/fpmake_proc.inc svneol=native#text/plain
utils/fpmc/Makefile svneol=native#text/plain
utils/fpmc/Makefile.fpc svneol=native#text/plain
utils/fpmc/README.txt svneol=native#text/plain
utils/fpmc/dumpfile.pp svneol=native#text/plain
utils/fpmc/fpmake.pp svneol=native#text/plain
utils/fpmc/fpmc.pp svneol=native#text/plain
utils/fpmc/fpmcgtk.pp svneol=native#text/plain
utils/fpmc/frmabout.pp svneol=native#text/plain
utils/fpmc/frmmain.pp svneol=native#text/plain
utils/fpmc/frmoptions.pp svneol=native#text/plain
utils/fpmc/msgcomp.pp svneol=native#text/plain
utils/fpmc/readmsg.pp svneol=native#text/plain
utils/fpmc/test.mc -text
utils/fppkg/Makefile svneol=native#text/plain
utils/fppkg/Makefile.fpc svneol=native#text/plain
utils/fppkg/Makefile.fpc.fpcmake svneol=native#text/plain
utils/fppkg/README.txt svneol=native#text/plain
utils/fppkg/examples/pkglibcurl.pp svneol=native#text/plain
utils/fppkg/examples/pkgocurl.pp svneol=native#text/plain
utils/fppkg/examples/pkgsynapse.pp svneol=native#text/plain
utils/fppkg/examples/rep2xml.lpi svneol=native#text/plain
utils/fppkg/examples/rep2xml.lpr svneol=native#text/plain
utils/fppkg/examples/testdownload.pp svneol=native#text/plain
utils/fppkg/examples/testrep.pp svneol=native#text/plain
utils/fppkg/fpmake.pp svneol=native#text/plain
utils/fppkg/fppkg.lpi svneol=native#text/plain
utils/fppkg/fppkg.pp svneol=native#text/plain
utils/fppkg/lnet/LICENSE -text
utils/fppkg/lnet/LICENSE.ADDON -text
utils/fppkg/lnet/fastcgi_base.pp svneol=native#text/plain
utils/fppkg/lnet/lcommon.pp svneol=native#text/plain
utils/fppkg/lnet/lcontainers.inc svneol=native#text/plain
utils/fppkg/lnet/lcontainersh.inc svneol=native#text/plain
utils/fppkg/lnet/lcontrolstack.pp svneol=native#text/plain
utils/fppkg/lnet/levents.pp svneol=native#text/plain
utils/fppkg/lnet/lfastcgi.pp svneol=native#text/plain
utils/fppkg/lnet/lftp.pp svneol=native#text/plain
utils/fppkg/lnet/lhttp.pp svneol=native#text/plain
utils/fppkg/lnet/lhttputil.pp svneol=native#text/plain
utils/fppkg/lnet/lmimestreams.pp svneol=native#text/plain
utils/fppkg/lnet/lmimetypes.pp svneol=native#text/plain
utils/fppkg/lnet/lmimewrapper.pp svneol=native#text/plain
utils/fppkg/lnet/lnet.pp svneol=native#text/plain
utils/fppkg/lnet/lprocess.pp svneol=native#text/plain
utils/fppkg/lnet/lsmtp.pp svneol=native#text/plain
utils/fppkg/lnet/lspawnfcgi.pp svneol=native#text/plain
utils/fppkg/lnet/lstrbuffer.pp svneol=native#text/plain
utils/fppkg/lnet/ltelnet.pp svneol=native#text/plain
utils/fppkg/lnet/ltimer.pp svneol=native#text/plain
utils/fppkg/lnet/lwebserver.pp svneol=native#text/plain
utils/fppkg/lnet/lws2tcpip.pp svneol=native#text/pascal
utils/fppkg/lnet/sys/lepolleventer.inc svneol=native#text/plain
utils/fppkg/lnet/sys/lepolleventerh.inc svneol=native#text/plain
utils/fppkg/lnet/sys/lkqueueeventer.inc svneol=native#text/plain
utils/fppkg/lnet/sys/lkqueueeventerh.inc svneol=native#text/plain
utils/fppkg/lnet/sys/lspawnfcgiunix.inc svneol=native#text/plain
utils/fppkg/lnet/sys/lspawnfcgiwin.inc svneol=native#text/plain
utils/fppkg/lnet/sys/osunits.inc svneol=native#text/plain
utils/fppkg/pkglnet.pp svneol=native#text/plain
utils/fprcp/Makefile svneol=native#text/plain
utils/fprcp/Makefile.fpc svneol=native#text/plain
utils/fprcp/Readme.txt svneol=native#text/plain
utils/fprcp/comments.pp svneol=native#text/plain
utils/fprcp/demo.h -text
utils/fprcp/demo.pp svneol=native#text/plain
utils/fprcp/demo.rc -text
utils/fprcp/expr.pp svneol=native#text/plain
utils/fprcp/fpmake.pp svneol=native#text/plain
utils/fprcp/fprcp.pp svneol=native#text/plain
utils/fprcp/pasprep.pp svneol=native#text/plain
utils/fprcp/use_demo.bat -text
utils/grab_vcsa.pp -text
utils/h2pas/Makefile svneol=native#text/plain
utils/h2pas/Makefile.fpc svneol=native#text/plain
utils/h2pas/README.txt svneol=native#text/plain
utils/h2pas/converu.pas svneol=native#text/plain
utils/h2pas/fpmake.pp svneol=native#text/plain
utils/h2pas/h2pas.pas svneol=native#text/plain
utils/h2pas/h2pas.y svneol=native#text/plain
utils/h2pas/h2paspp.pas svneol=native#text/plain
utils/h2pas/h2plexlib.pas svneol=native#text/plain
utils/h2pas/h2poptions.pas svneol=native#text/plain
utils/h2pas/h2pyacclib.pas svneol=native#text/plain
utils/h2pas/scan.l svneol=native#text/plain
utils/h2pas/scan.pas svneol=native#text/plain
utils/h2pas/testit.h -text
utils/h2pas/yylex.cod -text
utils/h2pas/yyparse.cod -text
utils/importtl/Makefile svneol=native#text/plain
utils/importtl/Makefile.fpc svneol=native#text/plain
utils/importtl/fpmake.pp svneol=native#text/plain
utils/importtl/importtl.lpi svneol=native#text/plain
utils/importtl/importtl.pas svneol=native#text/plain
utils/instantfpc/Makefile svneol=native#text/plain
utils/instantfpc/Makefile.fpc svneol=native#text/plain
utils/instantfpc/README.txt svneol=native#text/plain
utils/instantfpc/examples/envvars.pas svneol=native#text/plain
utils/instantfpc/examples/exitcode.pas svneol=native#text/plain
utils/instantfpc/examples/getworkingdirectory.pas svneol=native#text/plain
utils/instantfpc/examples/helloworld.pas svneol=native#text/plain
utils/instantfpc/examples/writeparameters.pas svneol=native#text/plain
utils/instantfpc/fpmake.pp svneol=native#text/plain
utils/instantfpc/instantfpc.lpi svneol=native#text/plain
utils/instantfpc/instantfpc.pas svneol=native#text/plain
utils/instantfpc/instantfptools.pas svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/AttrData.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/CPX.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/CPX2.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/ClassData.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/ClassIdentifierInfo.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/ClassListBuilder.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/Constants.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/FieldData.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/InnerClassData.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/JavapEnvironment.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/JavapPrinter.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/LineNumData.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/LocVarData.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/Main.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/MethodData.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/PascalClassData.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/PascalFieldData.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/PascalInnerClassData.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/PascalKeywords.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/PascalMethodData.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/PascalTypeSignature.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/PascalUnit.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/RuntimeConstants.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/StackMapData.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/StackMapTableData.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/Tables.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/TrapData.java svneol=native#text/plain
utils/javapp/src/fpc/tools/javapp/TypeSignature.java svneol=native#text/plain
utils/mksymbian/Makefile svneol=native#text/plain
utils/mksymbian/Makefile.fpc svneol=native#text/plain
utils/mksymbian/cfgfile.pas svneol=native#text/plain
utils/mksymbian/cmdline.pas svneol=native#text/plain
utils/mksymbian/compiler.pas svneol=native#text/plain
utils/mksymbian/constants.pas svneol=native#text/plain
utils/mksymbian/mksymbian.lpi svneol=native#text/plain
utils/mksymbian/mksymbian.pas svneol=native#text/plain
utils/mksymbian/projectparser.pas svneol=native#text/plain
utils/mksymbian/sdkutil.pas svneol=native#text/plain
utils/pas2fpm/Makefile svneol=native#text/plain
utils/pas2fpm/Makefile.fpc svneol=native#text/plain
utils/pas2fpm/pas2fpm.lpi svneol=native#text/plain
utils/pas2fpm/pas2fpm.pp svneol=native#text/plain
utils/pas2ut/Makefile svneol=native#text/plain
utils/pas2ut/Makefile.fpc svneol=native#text/plain
utils/pas2ut/pas2ut.lpi svneol=native#text/plain
utils/pas2ut/pas2ut.pp svneol=native#text/plain
utils/postw32.pp svneol=native#text/plain
utils/ppdep.pp svneol=native#text/plain
utils/ptop.pp svneol=native#text/plain
utils/ptopu.pp svneol=native#text/plain
utils/rmcvsdir.pp svneol=native#text/plain
utils/rmwait/Makefile svneol=native#text/plain
utils/rmwait/Makefile.fpc svneol=native#text/plain
utils/rmwait/fpmake.pp svneol=native#text/plain
utils/rmwait/rmwait.pas svneol=native#text/plain
utils/rstconv.pp svneol=native#text/plain
utils/sim_pasc/Answers svneol=native#text/plain
utils/sim_pasc/ChangeLog svneol=native#text/plain
utils/sim_pasc/HOWTO-FPC.txt svneol=native#text/plain
utils/sim_pasc/LICENSE.txt svneol=native#text/plain
utils/sim_pasc/Makefile svneol=native#text/plain
utils/sim_pasc/READ.ME svneol=native#text/plain
utils/sim_pasc/README.1st svneol=native#text/plain
utils/sim_pasc/READ_ME svneol=native#text/plain
utils/sim_pasc/TechnReport svneol=native#text/plain
utils/sim_pasc/add_run.c svneol=native#text/plain
utils/sim_pasc/add_run.h svneol=native#text/plain
utils/sim_pasc/aiso.bdy svneol=native#text/plain
utils/sim_pasc/aiso.spc svneol=native#text/plain
utils/sim_pasc/algollike.c svneol=native#text/plain
utils/sim_pasc/algollike.h svneol=native#text/plain
utils/sim_pasc/clang.l svneol=native#text/plain
utils/sim_pasc/compare.c svneol=native#text/plain
utils/sim_pasc/compare.h svneol=native#text/plain
utils/sim_pasc/debug.par svneol=native#text/plain
utils/sim_pasc/error.c svneol=native#text/plain
utils/sim_pasc/error.h svneol=native#text/plain
utils/sim_pasc/hash.c svneol=native#text/plain
utils/sim_pasc/hash.h svneol=native#text/plain
utils/sim_pasc/idf.c svneol=native#text/plain
utils/sim_pasc/idf.h svneol=native#text/plain
utils/sim_pasc/javalang.l svneol=native#text/plain
utils/sim_pasc/lang.h svneol=native#text/plain
utils/sim_pasc/language.h svneol=native#text/plain
utils/sim_pasc/lex.c svneol=native#text/plain
utils/sim_pasc/lex.h svneol=native#text/plain
utils/sim_pasc/lisplang.l svneol=native#text/plain
utils/sim_pasc/m2lang.l svneol=native#text/plain
utils/sim_pasc/miralang.l svneol=native#text/plain
utils/sim_pasc/options.c svneol=native#text/plain
utils/sim_pasc/options.h svneol=native#text/plain
utils/sim_pasc/pascallang.l svneol=native#text/plain
utils/sim_pasc/pass1.c svneol=native#text/plain
utils/sim_pasc/pass1.h svneol=native#text/plain
utils/sim_pasc/pass2.c svneol=native#text/plain
utils/sim_pasc/pass2.h svneol=native#text/plain
utils/sim_pasc/pass3.c svneol=native#text/plain
utils/sim_pasc/pass3.h svneol=native#text/plain
utils/sim_pasc/percentages.c svneol=native#text/plain
utils/sim_pasc/percentages.h svneol=native#text/plain
utils/sim_pasc/runs.c svneol=native#text/plain
utils/sim_pasc/runs.h svneol=native#text/plain
utils/sim_pasc/settings.par svneol=native#text/plain
utils/sim_pasc/sim.1 svneol=native#text/plain
utils/sim_pasc/sim.c svneol=native#text/plain
utils/sim_pasc/sim.h svneol=native#text/plain
utils/sim_pasc/sim.html svneol=native#text/plain
utils/sim_pasc/sim.txt svneol=native#text/plain
utils/sim_pasc/sortlist.bdy svneol=native#text/plain
utils/sim_pasc/sortlist.spc svneol=native#text/plain
utils/sim_pasc/stream.c svneol=native#text/plain
utils/sim_pasc/stream.h svneol=native#text/plain
utils/sim_pasc/sysidf.mk svneol=native#text/plain
utils/sim_pasc/sysidf.msdos svneol=native#text/plain
utils/sim_pasc/sysidf.unix svneol=native#text/plain
utils/sim_pasc/system.par svneol=native#text/plain
utils/sim_pasc/text.c svneol=native#text/plain
utils/sim_pasc/text.h svneol=native#text/plain
utils/sim_pasc/textlang.l svneol=native#text/plain
utils/sim_pasc/token.c svneol=native#text/plain
utils/sim_pasc/token.h svneol=native#text/plain
utils/sim_pasc/tokenarray.c svneol=native#text/plain
utils/sim_pasc/tokenarray.h svneol=native#text/plain
utils/svn2cl.pp svneol=native#text/plain
utils/svn2cvs/svn2cvs.lpi svneol=native#text/plain
utils/svn2cvs/svn2cvs.pp svneol=native#text/plain
utils/svn2cvs/test.xml svneol=native#text/plain
utils/svn2cvs/vers.pp svneol=native#text/plain
utils/tply/COPYING.txt svneol=native#text/plain
utils/tply/Makefile svneol=native#text/plain
utils/tply/Makefile.fpc svneol=native#text/plain
utils/tply/README.txt svneol=native#text/plain
utils/tply/fpmake.pp svneol=native#text/plain
utils/tply/lexbase.pas svneol=native#text/plain
utils/tply/lexdfa.pas svneol=native#text/plain
utils/tply/lexlib.pas svneol=native#text/plain
utils/tply/lexlist.pas svneol=native#text/plain
utils/tply/lexmsgs.pas svneol=native#text/plain
utils/tply/lexopt.pas svneol=native#text/plain
utils/tply/lexpos.pas svneol=native#text/plain
utils/tply/lexrules.pas svneol=native#text/plain
utils/tply/lextable.pas svneol=native#text/plain
utils/tply/plex.pas svneol=native#text/plain
utils/tply/pyacc.pas svneol=native#text/plain
utils/tply/pyacc.y -text
utils/tply/tply.doc -text
utils/tply/tply.tex -text
utils/tply/yaccbase.pas svneol=native#text/plain
utils/tply/yaccclos.pas svneol=native#text/plain
utils/tply/yacclib.pas svneol=native#text/plain
utils/tply/yacclook.pas svneol=native#text/plain
utils/tply/yacclr0.pas svneol=native#text/plain
utils/tply/yaccmsgs.pas svneol=native#text/plain
utils/tply/yaccpars.pas svneol=native#text/plain
utils/tply/yaccsem.pas svneol=native#text/plain
utils/tply/yacctabl.pas svneol=native#text/plain
utils/tply/yylex.cod svneol=native#text/plain
utils/tply/yyparse.cod svneol=native#text/plain