fpc/.gitattributes
Jonas Maebe 0356a35e1c Merged revisions 13156-13217 via svnmerge from
svn+ssh://jonas@svn.freepascal.org/FPC/svn/fpc/trunk

........
........
r13157 | marco | 2009-05-17 14:22:41 +0200 (Sun, 17 May 2009) | 2 lines

 * mingw textmode IDE debugging support. First working version (for me), atexit handler for mingw and cygwin stuff under ifndef  USE_MINGW_GDB
    
........
r13158 | marco | 2009-05-17 14:43:57 +0200 (Sun, 17 May 2009) | 1 line

 * Fix for gdb66/mingw (general?) program reset issue. Instructs GDB to turn confirmation off.  Mantis 0011968 
........
r13159 | yury | 2009-05-17 14:43:58 +0200 (Sun, 17 May 2009) | 1 line

* Replaced some ifdef x86_64 by ifdef cpu64bitaddr, since it is more correct.
........
r13160 | yury | 2009-05-17 14:47:26 +0200 (Sun, 17 May 2009) | 1 line

* Set default image base for win64 dlls to $110000000.
........
........
........
r13163 | jonas | 2009-05-17 16:33:20 +0200 (Sun, 17 May 2009) | 3 lines

  * support {$i *.ext} to include source files with the same base name, but
    with a different extension than the current source file (mantis #13696)

........
r13164 | jonas | 2009-05-17 16:42:17 +0200 (Sun, 17 May 2009) | 2 lines

  * copyright in comments updated (from mantis #13048)

........
r13165 | jonas | 2009-05-17 16:50:44 +0200 (Sun, 17 May 2009) | 2 lines

  * small fixes from Karl-Michael Schindler (mantis #13048)

........
r13166 | marco | 2009-05-17 17:37:27 +0200 (Sun, 17 May 2009) | 3 lines

 *  gtk_cell_renderer_combo_new returns gtkcellrenderer not -combo (mantis 13689),
      probably to support some kind of procedural polymorphism.

........
r13167 | jonas | 2009-05-17 18:01:13 +0200 (Sun, 17 May 2009) | 4 lines

  * when loading the functions for a particular OpenGL function, also
    automatically load those for lower versions (patch by "satan", mantis
    #13687)

........
r13168 | marco | 2009-05-17 19:09:26 +0200 (Sun, 17 May 2009) | 3 lines

 * reversed destruction order of TFPObjectList as per Mantis 13715.
  Note that it is _NOT_ good coding to rely on such things

........
........
........
........
r13172 | sergei | 2009-05-18 00:56:51 +0200 (Mon, 18 May 2009) | 9 lines

DOM test suite enhancements:
* Do not convert tests which request implementation attribute 'signed'='true'.
  Such tests aren't applicable to our unsigned DOM, they only cause compiler warnings
  and noise in the test report.
+ Support for default properties (obj.item(x) -> obj[x]).
+ Support black-listing of testcases. Some of them (in HTML testsuite) are easier to
  rewrite by hand than to convert.
+ Support adding certain units to 'uses' clause (e.g. HTML suite must use dom_html).

........
........
........
r13175 | sergei | 2009-05-18 22:33:43 +0200 (Mon, 18 May 2009) | 1 line

dom.pp: Ignore node read-only property when its owning document is being destroyed (enables destroying nodes in arbitrary order).
........
r13176 | sergei | 2009-05-19 00:03:37 +0200 (Tue, 19 May 2009) | 2 lines

* Moved TDOMAttrDef class from xmlread.pp to dom.pp (in order to implement default attribute handling at DOM level).
* Using regular CloneNode() method to create copies of TDOMAttrDef.
........
........
........
........
r13180 | sergei | 2009-05-21 01:08:24 +0200 (Thu, 21 May 2009) | 13 lines

Final strike for #13605:

src/dom.pp:
* GetElementsByTagName[NS] results now get cached in a hashtable. Repeated calls to
  GetElementsByTagName with same arguments return the same instance of NodeList. All NodeLists
  created during document lifetime are destroyed with the document.

src/xmlutils.pp:
* THashTable.Lookup(), changed SetString to SetLength+Move because SetString truncates on #0
+ added THashTable.RemoveData() method

tests/api.xml:
- No longer need to 'garbage collect' the NodeLists.
........
r13181 | jonas | 2009-05-21 11:57:45 +0200 (Thu, 21 May 2009) | 4 lines

  - unconditionally enabled {$ifdef PARAOUTFILE}-code (that define was
    decomissioned quite a while ago, but this file was forgotten in
    that process)

........
r13182 | marco | 2009-05-21 13:26:54 +0200 (Thu, 21 May 2009) | 2 lines

 * win64 compatibility fix from Vincent. TLibHandle is now equal to system.thandle

........
r13183 | marco | 2009-05-21 16:11:16 +0200 (Thu, 21 May 2009) | 1 line

 * some minor vista/w7 related updates to message numbers
........
r13184 | sergei | 2009-05-21 22:45:16 +0200 (Thu, 21 May 2009) | 1 line

dom.pp: Added node memory management code (pure addition, no functionality changes this time).
........
r13185 | sergei | 2009-05-22 01:07:32 +0200 (Fri, 22 May 2009) | 10 lines

dom.pp: Customized memory management, fixes 17 test cases and all memory leaks in testsuite:
* Every node created by Document.CreateXXX method is now guaranteed to be destroyed with the
  document, whether it is part of the tree or not. Therefore, DOM methods which remove nodes
  from the tree (namely, TDOMNode.RemoveChild, TDOMNode.ReplaceChild,
  TDOMElement.SetAttributeNode and TDOMElement.SetAttributeNodeNS) no longer need to destroy
  their return value and are now conformant to the specs.
* Nodes are allocated in arrays of instances (emulates 'placement new operator' in C++ terms).
  Allocation and freeing are as fast as possible (just assigns a couple of pointers).
* Behaviour of nodes that are created by direct call to constructor is unchanged.

........
r13186 | jonas | 2009-05-23 12:10:56 +0200 (Sat, 23 May 2009) | 2 lines

  + Darwin-specific fcntl constants

........
........
r13188 | marco | 2009-05-23 17:40:13 +0200 (Sat, 23 May 2009) | 1 line

 * thread creation failure for win<x>. Mantis 13798
........
r13189 | joost | 2009-05-24 13:17:59 +0200 (Sun, 24 May 2009) | 1 line

 * Modified patch from taka_jp to set the connection-dataset for mysql, bug #13588.
........
r13190 | joost | 2009-05-24 13:20:45 +0200 (Sun, 24 May 2009) | 1 line

 * Fixed resource-leak on exceptions during creating/dropping databases, patch from taka_jp, bug #13587
........
r13191 | jonas | 2009-05-24 13:48:49 +0200 (Sun, 24 May 2009) | 5 lines

  * changed the parameters of gotoxy() and the return values of wherex/wherey
    from byte into tcrtcoord=1..255, since all crt unit coordinates are
    1-based (not for Window() procedure, see comments in crth.inc;
    mantis #13788)

........
r13192 | jonas | 2009-05-24 14:25:33 +0200 (Sun, 24 May 2009) | 2 lines

  * again made less complex in case of PIC, otherwise it fails

........
r13193 | jonas | 2009-05-24 14:26:38 +0200 (Sun, 24 May 2009) | 2 lines

  * make sure example also works without an application bundle

........
r13194 | jonas | 2009-05-25 20:34:04 +0200 (Mon, 25 May 2009) | 2 lines

  * fixed evaluating "nil +/- int_const" expressions (mantis #13815)

........
r13195 | jonas | 2009-05-25 21:41:14 +0200 (Mon, 25 May 2009) | 4 lines

  * fixed missing reference counting in case a refcounted type was implicitly
    type casted to a non-refcounted type, e.g. dynarray to pointer in Delphi
    mode (mantis #13820)

........
r13196 | sergei | 2009-05-25 22:28:40 +0200 (Mon, 25 May 2009) | 8 lines

dom.pp: No more failures on level 1 testsuite... at last.
+ Implemented handling of default attributes:
  * creating an element also creates and attaches the default attributes;
  * removing an attribute restores it with default value, if there's one.
+ Attribute nodes remove themselves from the owner element upon destruction, making it possible
  to Free attributes manually.
* TDOMNamedNodeMap.SetNamedItem does not reset attribute OwnerElement if the argument node is already
  contained in the map (and whole operation is therefore is a no-op).
........
r13197 | marco | 2009-05-26 14:24:58 +0200 (Tue, 26 May 2009) | 5 lines

 * uxtheme moved from Lazarus.
 * Disabled (ifdeffed) lock around init/finalization because of circular
    reference between fcl-base and winunits-base. If needed it can be
    recoded directly using system specific (windows.pas) routines.

........
r13198 | jonas | 2009-05-26 18:22:41 +0200 (Tue, 26 May 2009) | 2 lines

  * make references PIC-safe before pushing them as parameter (mantis #13829)

........
r13199 | marco | 2009-05-26 18:54:49 +0200 (Tue, 26 May 2009) | 2 lines

 * tmschema as include file added at Paul's request

........
r13200 | sergei | 2009-05-27 00:14:21 +0200 (Wed, 27 May 2009) | 6 lines

+ Implementation of TDOMDocument.CreateAttributeNS and CreateElementsNS
+ Initial part of TDOMElement.SetAttributeNS
+ TDOMImplementation.CreateDocumentType checks validity of QualifiedName
* Use 'managed' memory allocation in TDOMEntity.CloneNode and TDOMNotation.CloneNode to avoid leaks
* TDOMDocument.RemoveID now using THashTable.RemoveData(), simplifies things

........
r13201 | marco | 2009-05-27 09:29:04 +0200 (Wed, 27 May 2009) | 2 lines

 * Marquee patch from Paul + some Vista PBM_ constants.

........
r13202 | marco | 2009-05-27 10:46:27 +0200 (Wed, 27 May 2009) | 2 lines

 * first half of vista updates.

........
r13203 | marco | 2009-05-27 18:26:32 +0200 (Wed, 27 May 2009) | 2 lines

 * vista items till WC_STATICA, roughly at 80% now.

........
r13204 | jonas | 2009-05-27 19:26:50 +0200 (Wed, 27 May 2009) | 2 lines

  * various optimizations by Dave Richards (mantis #12440)

........
r13205 | jonas | 2009-05-27 19:50:55 +0200 (Wed, 27 May 2009) | 3 lines

  * forbid "nil +/- ordinal" expressions (Delphi-compatible, and the
    expression is meaningless since nil is not a valid address)

........
r13206 | marco | 2009-05-27 22:08:56 +0200 (Wed, 27 May 2009) | 2 lines

 * more Vista fixes, and implemented some macro's that somehow were not implemented.

........
r13207 | hajny | 2009-05-27 23:18:35 +0200 (Wed, 27 May 2009) | 1 line

  * extension of r13191 to OS/2, EMX and potential other platforms using crt.inc based implementation of unit crt
........
r13208 | florian | 2009-05-29 00:28:58 +0200 (Fri, 29 May 2009) | 1 line

* patch to fix fillpoly, by borsa77
........
r13209 | michael | 2009-05-29 09:24:02 +0200 (Fri, 29 May 2009) | 1 line

* Change so that when FindFirst initially returns nonzero, FindClose is no longer needed (Windows compatible)
........
r13210 | michael | 2009-05-29 09:27:41 +0200 (Fri, 29 May 2009) | 1 line

* Change so that when FindFirst initially returns nonzero, FindClose is no longer needed (Windows compatible)
........
r13211 | michael | 2009-05-29 09:30:46 +0200 (Fri, 29 May 2009) | 1 line

* Fix from Ken Wright for broken FPC changes
........
r13212 | jonas | 2009-05-30 13:29:54 +0200 (Sat, 30 May 2009) | 2 lines

  * fixed/cleaned up tests for "nil + 1"

........
r13213 | michael | 2009-05-30 14:07:16 +0200 (Sat, 30 May 2009) | 1 line

* Some TCustomVariant methods implemented
........
r13214 | sergei | 2009-05-31 10:18:06 +0200 (Sun, 31 May 2009) | 3 lines

+ Processing of prefixed attributes and prefix bindings. This completes namespace support at
  the XML reader side.

........
r13215 | sergei | 2009-05-31 11:14:37 +0200 (Sun, 31 May 2009) | 1 line

* Added .txt extension to README_DOM (this one was missed while fixing Mantis #12358)
........
r13216 | sergei | 2009-05-31 12:38:28 +0200 (Sun, 31 May 2009) | 1 line

Bringing readme's up to date
........
r13217 | Legolas | 2009-05-31 14:15:24 +0200 (Sun, 31 May 2009) | 4 lines

* updated nds/gba linker scripts and reverted some changes for 2.2.4a release
- Removed unused/outdated stuff from libndsfpc
+ Added new examples for libndsfpc
+ Added working (I hope so...) makefile.fpc for all libndsfpc/libgbafpc examples
........

git-svn-id: branches/objc@13348 -
2009-06-28 15:29:53 +00:00

10446 lines
559 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/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/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/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/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/itcpugas.pas svneol=native#text/plain
compiler/avr/navradd.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/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/cp437.pas svneol=native#text/plain
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/crefs.pas -text
compiler/cresstr.pas svneol=native#text/plain
compiler/cstreams.pas svneol=native#text/plain
compiler/cutils.pas 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/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/globals.pas svneol=native#text/plain
compiler/globtype.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/ag386nsm.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/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/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/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/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/mips/aasmcpu.pas svneol=native#text/plain
compiler/mips/cpubase.pas svneol=native#text/plain
compiler/mips/cpuinfo.pas svneol=native#text/plain
compiler/mips/itcpugas.pas svneol=native#text/plain
compiler/mips/mipsreg.dat 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/rmipsmot.inc svneol=native#text/plain
compiler/mips/rmipsmri.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/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/errorn.msg svneol=native#text/plain
compiler/msg/errorpl.msg svneol=native#text/plain
compiler/msg/errorpli.msg svneol=native#text/plain
compiler/msg/errorptd.msg svneol=native#text/plain
compiler/msg/errorptw.msg svneol=native#text/plain
compiler/msg/errorr.msg svneol=native#text/plain
compiler/msg/errorrw.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/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/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/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/ogmap.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/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/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/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/ppc.cfg -text
compiler/ppc.conf -text
compiler/ppc.dof -text
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/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/ppcppc.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/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/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/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.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_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_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_win.pas svneol=native#text/plain
compiler/systems/mac_crea.txt 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_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_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_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.cft svneol=native#text/plain
compiler/utils/fpc.mpw svneol=native#text/plain
compiler/utils/fpc.pp svneol=native#text/plain
compiler/utils/fpccfg.inc svneol=native#text/plain
compiler/utils/fpcfg.inc svneol=native#text/plain
compiler/utils/fpcmkcfg.pp svneol=native#text/plain
compiler/utils/fpcsubst.pp svneol=native#text/plain
compiler/utils/fpimpdef.pp svneol=native#text/plain
compiler/utils/fpinc.cfg svneol=native#text/plain
compiler/utils/fpinc.ini svneol=native#text/plain
compiler/utils/fpini.inc 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/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/cga.pas svneol=native#text/plain
compiler/x86/cgx86.pas svneol=native#text/plain
compiler/x86/cpubase.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/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/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/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/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/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/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/x-pascal
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/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/a52/Makefile svneol=native#text/plain
packages/a52/Makefile.fpc 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/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/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/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/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/bzip2i386.inc svneol=native#text/plain
packages/cairo/Makefile svneol=native#text/plain
packages/cairo/Makefile.fpc 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/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/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/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/dbus/Makefile svneol=native#text/plain
packages/dbus/Makefile.fpc 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-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/fpmake.pp svneol=native#text/plain
packages/dts/src/dts.pas svneol=native#text/plain
packages/fcl-async/Makefile svneol=native#text/plain
packages/fcl-async/Makefile.fpc 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/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/daemon.pp svneol=native#text/plain
packages/fcl-base/examples/daemon.txt 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/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/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/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/daemonapp.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/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/daemonapp.inc 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/ServiceManager.pas -text
packages/fcl-base/src/win/daemonapp.inc 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-db/Makefile svneol=native#text/plain
packages/fcl-db/Makefile.fpc 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/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/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/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/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/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/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/sqldb.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/database.ini.txt svneol=native#text/plain
packages/fcl-db/tests/dbftoolsunit.pas -text
packages/fcl-db/tests/dbtestframework.pas -text
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 -text
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 -text
packages/fcl-db/tests/testdddiff.pp svneol=native#text/plain
packages/fcl-db/tests/testfieldtypes.pas svneol=native#text/plain
packages/fcl-db/tests/testsqlscript.pas svneol=native#text/plain
packages/fcl-db/tests/toolsunit.pas -text
packages/fcl-fpcunit/Makefile svneol=native#text/plain
packages/fcl-fpcunit/Makefile.fpc 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/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/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/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/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/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-json/Makefile svneol=native#text/plain
packages/fcl-json/Makefile.fpc 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/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/fpjson.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-net/Makefile svneol=native#text/plain
packages/fcl-net/Makefile.fpc 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/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/fpsock.pp svneol=native#text/plain
packages/fcl-net/src/httpbase.pp svneol=native#text/plain
packages/fcl-net/src/httpclient.pp svneol=native#text/plain
packages/fcl-net/src/httpsvlt.pp svneol=native#text/plain
packages/fcl-net/src/mkxmlrpc.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/servlets.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-net/src/xmlrpc.pp svneol=native#text/plain
packages/fcl-passrc/Makefile svneol=native#text/plain
packages/fcl-passrc/Makefile.fpc svneol=native#text/plain
packages/fcl-passrc/fpmake.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-process/Makefile svneol=native#text/plain
packages/fcl-process/Makefile.fpc 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/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/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/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/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/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-web/Makefile svneol=native#text/plain
packages/fcl-web/Makefile.fpc svneol=native#text/plain
packages/fcl-web/fpmake.pp svneol=native#text/plain
packages/fcl-web/fptemplate.txt svneol=native#text/plain
packages/fcl-web/src/README.txt svneol=native#text/plain
packages/fcl-web/src/cgiapp.pp svneol=native#text/plain
packages/fcl-web/src/custcgi.pp svneol=native#text/plain
packages/fcl-web/src/custfcgi.pp svneol=native#text/plain
packages/fcl-web/src/custweb.pp svneol=native#text/plain
packages/fcl-web/src/ezcgi.pp svneol=native#text/plain
packages/fcl-web/src/fastcgi.pp svneol=native#text/plain
packages/fcl-web/src/fpapache.pp svneol=native#text/plain
packages/fcl-web/src/fpcgi.pp svneol=native#text/plain
packages/fcl-web/src/fpdatasetform.pp svneol=native#text/plain
packages/fcl-web/src/fpfcgi.pp svneol=native#text/plain
packages/fcl-web/src/fphtml.pp svneol=native#text/plain
packages/fcl-web/src/fphttp.pp svneol=native#text/plain
packages/fcl-web/src/fptemplate.pp svneol=native#text/plain
packages/fcl-web/src/fpweb.pp svneol=native#text/plain
packages/fcl-web/src/httpdefs.pp svneol=native#text/plain
packages/fcl-web/src/websession.pp svneol=native#text/plain
packages/fcl-web/src/webutil.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/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/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/xmlstreaming.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/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/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/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/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/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/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/fv/Makefile svneol=native#text/plain
packages/fv/Makefile.fpc svneol=native#text/plain
packages/fv/examples/Makefile svneol=native#text/plain
packages/fv/examples/Makefile.fpc svneol=native#text/plain
packages/fv/examples/platform.inc 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/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/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/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/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/gnome1/Makefile svneol=native#text/plain
packages/gnome1/Makefile.fpc 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/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.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/gtk1/Makefile svneol=native#text/plain
packages/gtk1/Makefile.fpc 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/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.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/hash/Makefile svneol=native#text/plain
packages/hash/Makefile.fpc 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/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/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/fpmake.pp svneol=native#text/plain
packages/hermes/src/clear.inc svneol=native#text/plain
packages/hermes/src/convert.inc svneol=native#text/plain
packages/hermes/src/d_32.inc svneol=native#text/plain
packages/hermes/src/debug.inc svneol=native#text/plain
packages/hermes/src/dither.inc svneol=native#text/plain
packages/hermes/src/factconv.inc svneol=native#text/plain
packages/hermes/src/factory.inc svneol=native#text/plain
packages/hermes/src/format.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/i386/headi386.inc -text
packages/hermes/src/i386/headmmx.inc -text
packages/hermes/src/i386/mmx_clr.as -text
packages/hermes/src/i386/mmx_main.as -text
packages/hermes/src/i386/mmxp2_32.as -text
packages/hermes/src/i386/mmxp_32.as -text
packages/hermes/src/i386/x8616lut.as -text
packages/hermes/src/i386/x86_clr.as -text
packages/hermes/src/i386/x86_main.as -text
packages/hermes/src/i386/x86p_16.as -text
packages/hermes/src/i386/x86p_32.as -text
packages/hermes/src/i386/x86p_cpy.as -text
packages/hermes/src/i386/x86p_i8.as -text
packages/hermes/src/i386/x86p_s32.as -text
packages/hermes/src/i386/x86pscpy.as -text
packages/hermes/src/list.inc svneol=native#text/plain
packages/hermes/src/malloc.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/hermes/src/palette.inc svneol=native#text/plain
packages/hermes/src/utility.inc svneol=native#text/plain
packages/httpd13/Makefile svneol=native#text/plain
packages/httpd13/Makefile.fpc 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/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/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/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/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/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/fpmake.pp svneol=native#text/plain
packages/imagemagick/src/buildim.pp 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/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/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/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/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/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/devkitPro/audio/PlayBoyScout/Makefile svneol=native#text/plain
packages/libgbafpc/examples/devkitPro/audio/PlayBoyScout/Makefile.fpc svneol=native#text/plain
packages/libgbafpc/examples/devkitPro/audio/PlayBoyScout/PlayBoyScout.pp svneol=native#text/plain
packages/libgbafpc/examples/devkitPro/audio/PlayBoyScout/data/ScoutSplash.pcx -text svneol=unset#image/pcx
packages/libgbafpc/examples/devkitPro/audio/PlayBoyScout/data/tune.bgf -text
packages/libgbafpc/examples/devkitPro/graphics/PCXView/Makefile svneol=native#text/plain
packages/libgbafpc/examples/devkitPro/graphics/PCXView/Makefile.fpc svneol=native#text/plain
packages/libgbafpc/examples/devkitPro/graphics/PCXView/data/ScoutSplash.pcx -text svneol=unset#image/pcx
packages/libgbafpc/examples/devkitPro/graphics/PCXView/data/splash.pcx -text svneol=unset#image/pcx
packages/libgbafpc/examples/devkitPro/graphics/PCXView/pcx_view.pp svneol=native#text/plain
packages/libgbafpc/examples/devkitPro/graphics/SimpleBGScroll/Makefile svneol=native#text/plain
packages/libgbafpc/examples/devkitPro/graphics/SimpleBGScroll/Makefile.fpc svneol=native#text/plain
packages/libgbafpc/examples/devkitPro/graphics/SimpleBGScroll/SimpleBGScroll.pp svneol=native#text/plain
packages/libgbafpc/examples/devkitPro/graphics/SimpleBGScroll/data/r6502_portfont.bin -text
packages/libgbafpc/examples/devkitPro/graphics/ansi_console/Makefile svneol=native#text/plain
packages/libgbafpc/examples/devkitPro/graphics/ansi_console/Makefile.fpc svneol=native#text/plain
packages/libgbafpc/examples/devkitPro/graphics/ansi_console/console.pp svneol=native#text/plain
packages/libgbafpc/examples/devkitPro/template/Makefile svneol=native#text/plain
packages/libgbafpc/examples/devkitPro/template/Makefile.fpc svneol=native#text/plain
packages/libgbafpc/examples/devkitPro/template/template.pp svneol=native#text/plain
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/libgd/Makefile svneol=native#text/plain
packages/libgd/Makefile.fpc 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/examples/Makefile svneol=native#text/plain
packages/libndsfpc/examples/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/RealTimeClock/Makefile svneol=native#text/plain
packages/libndsfpc/examples/RealTimeClock/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/RealTimeClock/Watch/Makefile svneol=native#text/plain
packages/libndsfpc/examples/RealTimeClock/Watch/Makefile.fpc svneol=native#text/plain
packages/libndsfpc/examples/RealTimeClock/Watch/watch.pp 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/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/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/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/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/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/input.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/exceptions.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/math.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/ndsmotion.inc svneol=native#text/plain
packages/libndsfpc/src/nds/arm9/pcx.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/dynamicArray.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/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/linkedlist.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/libpng/Makefile svneol=native#text/plain
packages/libpng/Makefile.fpc 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/fpmake.pp svneol=native#text/plain
packages/librsvg/src/rsvg.pas svneol=native#text/plain
packages/libxml/Makefile svneol=native#text/plain
packages/libxml/Makefile.fpc 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/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/parser.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/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/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/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/fpmake.pp 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/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/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/ncurses/Makefile svneol=native#text/plain
packages/ncurses/Makefile.fpc 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/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/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/objcrtl/Makefile svneol=native#text/plain
packages/objcrtl/Makefile.fpc svneol=native#text/plain
packages/objcrtl/Package.fpc 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/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/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/examples/Makefile svneol=native#text/plain
packages/openal/examples/Makefile.fpc svneol=native#text/plain
packages/openal/examples/madopenal.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/opengl/Makefile svneol=native#text/plain
packages/opengl/Makefile.fpc 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/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/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/examples/Makefile svneol=native#text/plain
packages/opengles/examples/Makefile.fpc svneol=native#text/plain
packages/opengles/examples/glutdemoes.pp svneol=native#text/plain
packages/opengles/src/gles11.pp svneol=native#text/plain
packages/openssl/Makefile svneol=native#text/plain
packages/openssl/Makefile.fpc 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/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/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/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/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/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/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/pcap/Makefile svneol=native#text/plain
packages/pcap/Makefile.fpc 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/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/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/docs/AUTHORS -text
packages/ptc/docs/CHANGES -text
packages/ptc/docs/INSTALL -text
packages/ptc/docs/INTRO -text
packages/ptc/docs/README.txt svneol=native#text/plain
packages/ptc/docs/TODO.txt svneol=native#text/plain
packages/ptc/docs/lgpl.txt -text
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/keybrd2.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/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/aread.inc svneol=native#text/x-pascal
packages/ptc/src/areai.inc svneol=native#text/x-pascal
packages/ptc/src/baseconsoled.inc svneol=native#text/x-pascal
packages/ptc/src/baseconsolei.inc svneol=native#text/x-pascal
packages/ptc/src/basesurfaced.inc svneol=native#text/x-pascal
packages/ptc/src/basesurfacei.inc svneol=native#text/x-pascal
packages/ptc/src/c_api/area.inc -text
packages/ptc/src/c_api/aread.inc -text
packages/ptc/src/c_api/clear.inc -text
packages/ptc/src/c_api/cleard.inc -text
packages/ptc/src/c_api/clipper.inc -text
packages/ptc/src/c_api/clipperd.inc -text
packages/ptc/src/c_api/color.inc -text
packages/ptc/src/c_api/colord.inc -text
packages/ptc/src/c_api/console.inc -text
packages/ptc/src/c_api/consoled.inc -text
packages/ptc/src/c_api/copy.inc -text
packages/ptc/src/c_api/copyd.inc -text
packages/ptc/src/c_api/error.inc -text
packages/ptc/src/c_api/errord.inc -text
packages/ptc/src/c_api/except.inc -text
packages/ptc/src/c_api/exceptd.inc -text
packages/ptc/src/c_api/format.inc -text
packages/ptc/src/c_api/formatd.inc -text
packages/ptc/src/c_api/index.inc -text
packages/ptc/src/c_api/key.inc -text
packages/ptc/src/c_api/keyd.inc -text
packages/ptc/src/c_api/mode.inc -text
packages/ptc/src/c_api/moded.inc -text
packages/ptc/src/c_api/palette.inc -text
packages/ptc/src/c_api/paletted.inc -text
packages/ptc/src/c_api/surface.inc -text
packages/ptc/src/c_api/surfaced.inc -text
packages/ptc/src/c_api/timer.inc -text
packages/ptc/src/c_api/timerd.inc -text
packages/ptc/src/cleard.inc svneol=native#text/x-pascal
packages/ptc/src/cleari.inc svneol=native#text/x-pascal
packages/ptc/src/clipperd.inc svneol=native#text/x-pascal
packages/ptc/src/clipperi.inc svneol=native#text/x-pascal
packages/ptc/src/colord.inc svneol=native#text/x-pascal
packages/ptc/src/colori.inc svneol=native#text/x-pascal
packages/ptc/src/consoled.inc svneol=native#text/x-pascal
packages/ptc/src/consolei.inc svneol=native#text/x-pascal
packages/ptc/src/copyd.inc svneol=native#text/x-pascal
packages/ptc/src/copyi.inc svneol=native#text/x-pascal
packages/ptc/src/coreimplementation.inc svneol=native#text/x-pascal
packages/ptc/src/coreinterface.inc svneol=native#text/x-pascal
packages/ptc/src/dos/base/kbd.inc -text
packages/ptc/src/dos/base/kbdd.inc -text
packages/ptc/src/dos/cga/cga.pp -text
packages/ptc/src/dos/cga/console.inc -text
packages/ptc/src/dos/cga/consoled.inc -text
packages/ptc/src/dos/fakemode/console.inc -text
packages/ptc/src/dos/fakemode/consoled.inc -text
packages/ptc/src/dos/fakemode/vga.pp -text
packages/ptc/src/dos/textfx2/console.inc -text
packages/ptc/src/dos/textfx2/consoled.inc -text
packages/ptc/src/dos/textfx2/textfx2.pp -text
packages/ptc/src/dos/timeunit/timeunit.pp -text
packages/ptc/src/dos/vesa/console.inc -text
packages/ptc/src/dos/vesa/consoled.inc -text
packages/ptc/src/dos/vesa/vesa.pp -text
packages/ptc/src/errord.inc svneol=native#text/x-pascal
packages/ptc/src/errori.inc svneol=native#text/x-pascal
packages/ptc/src/eventd.inc svneol=native#text/x-pascal
packages/ptc/src/eventi.inc svneol=native#text/x-pascal
packages/ptc/src/formatd.inc svneol=native#text/x-pascal
packages/ptc/src/formati.inc svneol=native#text/x-pascal
packages/ptc/src/keyd.inc svneol=native#text/x-pascal
packages/ptc/src/keyeventd.inc svneol=native#text/x-pascal
packages/ptc/src/keyeventi.inc svneol=native#text/x-pascal
packages/ptc/src/keyi.inc svneol=native#text/x-pascal
packages/ptc/src/log.inc svneol=native#text/x-pascal
packages/ptc/src/moded.inc svneol=native#text/x-pascal
packages/ptc/src/modei.inc svneol=native#text/x-pascal
packages/ptc/src/mouseeventd.inc svneol=native#text/x-pascal
packages/ptc/src/mouseeventi.inc svneol=native#text/x-pascal
packages/ptc/src/paletted.inc svneol=native#text/x-pascal
packages/ptc/src/palettei.inc svneol=native#text/x-pascal
packages/ptc/src/ptc.pp svneol=native#text/plain
packages/ptc/src/ptcpas.cfg svneol=native#text/plain
packages/ptc/src/surfaced.inc svneol=native#text/x-pascal
packages/ptc/src/surfacei.inc svneol=native#text/x-pascal
packages/ptc/src/timerd.inc svneol=native#text/x-pascal
packages/ptc/src/timeri.inc svneol=native#text/x-pascal
packages/ptc/src/tinyptc/tinyptc.pp -text
packages/ptc/src/win32/base/cursor.inc svneol=native#text/x-pascal
packages/ptc/src/win32/base/event.inc svneol=native#text/x-pascal
packages/ptc/src/win32/base/eventd.inc svneol=native#text/x-pascal
packages/ptc/src/win32/base/hook.inc svneol=native#text/x-pascal
packages/ptc/src/win32/base/hookd.inc svneol=native#text/x-pascal
packages/ptc/src/win32/base/kbd.inc svneol=native#text/x-pascal
packages/ptc/src/win32/base/kbdd.inc svneol=native#text/x-pascal
packages/ptc/src/win32/base/monitor.inc svneol=native#text/x-pascal
packages/ptc/src/win32/base/monitord.inc svneol=native#text/x-pascal
packages/ptc/src/win32/base/moused.inc svneol=native#text/x-pascal
packages/ptc/src/win32/base/mousei.inc svneol=native#text/x-pascal
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/x-pascal
packages/ptc/src/win32/base/windowd.inc svneol=native#text/x-pascal
packages/ptc/src/win32/base/windows.ico -text
packages/ptc/src/win32/directx/check.inc svneol=native#text/x-pascal
packages/ptc/src/win32/directx/directdr.pp -text
packages/ptc/src/win32/directx/directxconsole.inc svneol=native#text/x-pascal
packages/ptc/src/win32/directx/directxconsoled.inc svneol=native#text/x-pascal
packages/ptc/src/win32/directx/display.inc svneol=native#text/x-pascal
packages/ptc/src/win32/directx/displayd.inc svneol=native#text/x-pascal
packages/ptc/src/win32/directx/hook.inc svneol=native#text/x-pascal
packages/ptc/src/win32/directx/hookd.inc svneol=native#text/x-pascal
packages/ptc/src/win32/directx/library.inc svneol=native#text/x-pascal
packages/ptc/src/win32/directx/libraryd.inc svneol=native#text/x-pascal
packages/ptc/src/win32/directx/primary.inc svneol=native#text/x-pascal
packages/ptc/src/win32/directx/primaryd.inc svneol=native#text/x-pascal
packages/ptc/src/win32/directx/translate.inc svneol=native#text/x-pascal
packages/ptc/src/win32/gdi/gdiconsoled.inc svneol=native#text/x-pascal
packages/ptc/src/win32/gdi/gdiconsolei.inc svneol=native#text/x-pascal
packages/ptc/src/win32/gdi/win32dibd.inc svneol=native#text/x-pascal
packages/ptc/src/win32/gdi/win32dibi.inc svneol=native#text/x-pascal
packages/ptc/src/wince/base/wincekeyboardd.inc svneol=native#text/x-pascal
packages/ptc/src/wince/base/wincekeyboardi.inc svneol=native#text/x-pascal
packages/ptc/src/wince/base/wincemoused.inc svneol=native#text/x-pascal
packages/ptc/src/wince/base/wincemousei.inc svneol=native#text/x-pascal
packages/ptc/src/wince/base/wincewindowd.inc svneol=native#text/x-pascal
packages/ptc/src/wince/base/wincewindowi.inc svneol=native#text/x-pascal
packages/ptc/src/wince/gapi/p_gx.pp svneol=native#text/x-pascal
packages/ptc/src/wince/gapi/wincegapiconsoled.inc svneol=native#text/x-pascal
packages/ptc/src/wince/gapi/wincegapiconsolei.inc svneol=native#text/x-pascal
packages/ptc/src/wince/gdi/wincebitmapinfod.inc svneol=native#text/x-pascal
packages/ptc/src/wince/gdi/wincebitmapinfoi.inc svneol=native#text/x-pascal
packages/ptc/src/wince/gdi/wincegdiconsoled.inc svneol=native#text/x-pascal
packages/ptc/src/wince/gdi/wincegdiconsolei.inc svneol=native#text/x-pascal
packages/ptc/src/wince/includes.inc svneol=native#text/x-pascal
packages/ptc/src/x11/check.inc svneol=native#text/x-pascal
packages/ptc/src/x11/extensions.inc svneol=native#text/x-pascal
packages/ptc/src/x11/includes.inc svneol=native#text/x-pascal
packages/ptc/src/x11/x11consoled.inc svneol=native#text/x-pascal
packages/ptc/src/x11/x11consolei.inc svneol=native#text/x-pascal
packages/ptc/src/x11/x11dga1displayd.inc svneol=native#text/x-pascal
packages/ptc/src/x11/x11dga1displayi.inc svneol=native#text/x-pascal
packages/ptc/src/x11/x11dga2displayd.inc svneol=native#text/x-pascal
packages/ptc/src/x11/x11dga2displayi.inc svneol=native#text/x-pascal
packages/ptc/src/x11/x11dgadisplayd.inc svneol=native#text/x-pascal
packages/ptc/src/x11/x11dgadisplayi.inc svneol=native#text/x-pascal
packages/ptc/src/x11/x11displayd.inc svneol=native#text/x-pascal
packages/ptc/src/x11/x11displayi.inc svneol=native#text/x-pascal
packages/ptc/src/x11/x11imaged.inc svneol=native#text/x-pascal
packages/ptc/src/x11/x11imagei.inc svneol=native#text/x-pascal
packages/ptc/src/x11/x11modesd.inc svneol=native#text/x-pascal
packages/ptc/src/x11/x11modesi.inc svneol=native#text/x-pascal
packages/ptc/src/x11/x11windowdisplayd.inc svneol=native#text/x-pascal
packages/ptc/src/x11/x11windowdisplayi.inc svneol=native#text/x-pascal
packages/ptc/src/x11/xunikey.inc svneol=native#text/x-pascal
packages/ptc/tests/convtest.pas svneol=native#text/plain
packages/ptc/tests/endian.pas 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/fpmake.pp 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/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/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/regex.pp svneol=native#text/plain
packages/regexpr/src/regexpr.pp svneol=native#text/plain
packages/rexx/Makefile svneol=native#text/plain
packages/rexx/Makefile.fpc 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/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/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/README.txt svneol=native#text/plain
packages/sndfile/examples/sfplay.pp svneol=native#text/plain
packages/sndfile/fpmake.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/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/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/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/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/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/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/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/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/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/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/AudioHardware.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/AuthorizationTags.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/CFFTPStream.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/CFNetServices.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/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/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/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/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/CGWindowLevels.pas svneol=native#text/plain
packages/univint/src/CMApplication.pas svneol=native#text/plain
packages/univint/src/CMCalibrator.pas svneol=native#text/plain
packages/univint/src/CMDeviceIntegration.pas svneol=native#text/plain
packages/univint/src/CMICCProfile.pas svneol=native#text/plain
packages/univint/src/CMMComponent.pas svneol=native#text/plain
packages/univint/src/CMPRComponent.pas svneol=native#text/plain
packages/univint/src/CMScriptingPlugin.pas svneol=native#text/plain
packages/univint/src/CMTypes.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/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/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/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/Devices.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/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/DriverFamilyMatching.pas svneol=native#text/plain
packages/univint/src/DriverGestalt.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/FileTypesAndCreators.pas svneol=native#text/plain
packages/univint/src/Files.pas svneol=native#text/plain
packages/univint/src/FindByContent.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/GXTypes.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/HIArchive.pas svneol=native#text/plain
packages/univint/src/HIGeometry.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/HIObjectCore.pas svneol=native#text/plain
packages/univint/src/HIShape.pas svneol=native#text/plain
packages/univint/src/HITextUtils.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/HIView.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/Icons.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/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/LanguageAnalysis.pas svneol=native#text/plain
packages/univint/src/LaunchServices.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/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/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/Multiprocessing.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/NameRegistry.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/PMCore.pas svneol=native#text/plain
packages/univint/src/PMDefinitions.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/Printing.pas svneol=native#text/plain
packages/univint/src/Processes.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/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/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/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/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/Scrap.pas svneol=native#text/plain
packages/univint/src/Script.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/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/USB.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/WorldScript.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/vBLAS.pas svneol=native#text/plain
packages/univint/src/vDSP.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/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/fpmake.pp svneol=native#text/plain
packages/unzip/src/unzip.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/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/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/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/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/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/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/tapi.pp svneol=native#text/plain
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/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/flatsb.pp svneol=native#text/plain
packages/winunits-base/src/imagehlp.pp svneol=native#text/plain
packages/winunits-base/src/mmsystem.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/tmschema.inc svneol=native#text/plain
packages/winunits-base/src/uxtheme.pp svneol=native#text/plain
packages/winunits-base/src/wininet.pp svneol=native#text/plain
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/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/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/x11/Makefile svneol=native#text/plain
packages/x11/Makefile.fpc svneol=native#text/plain
packages/x11/fpmake.pp svneol=native#text/plain
packages/x11/src/cursorfont.pp svneol=native#text/plain
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/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/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/fpmake.pp svneol=native#text/plain
packages/zlib/src/zlib.pp 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/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/arm/arm.inc svneol=native#text/plain
rtl/arm/divide.inc svneol=native#text/x-pascal
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/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
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 -text
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/lpc21x4.pp svneol=native#text/plain
rtl/embedded/check.inc svneol=native#text/plain
rtl/embedded/empty.cfg -text
rtl/embedded/rtl.cfg -text
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 -text
rtl/freebsd/freebsd.pas -text
rtl/freebsd/i386/bsyscall.inc svneol=native#text/plain
rtl/freebsd/i386/cprt0.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 -text svneol=unset#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/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/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/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/objc1.pp svneol=native#text/plain
rtl/inc/objcbase.pp 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/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/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/wstring22h.inc svneol=native#text/plain
rtl/inc/wstringh.inc svneol=native#text/plain
rtl/inc/wstrings.inc svneol=native#text/plain
rtl/inc/wustring22.inc svneol=native#text/plain
rtl/inc/wustrings.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.inc svneol=native#text/plain
rtl/linux/errnostr.inc -text
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 -text
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/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 -text
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/morphos/Makefile svneol=native#text/plain
rtl/morphos/Makefile.fpc svneol=native#text/plain
rtl/morphos/aboxlib.pas -text
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
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
rtl/morphos/muihelper.pas -text
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 -text
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/nds/Makefile svneol=native#text/plain
rtl/nds/Makefile.fpc -text
rtl/nds/classes.pp -text
rtl/nds/cprt07.as svneol=native#text/plain
rtl/nds/cprt09.as svneol=native#text/plain
rtl/nds/dos.pp -text
rtl/nds/nds.inc svneol=native#text/plain
rtl/nds/ndsbios.inc -text
rtl/nds/ndsbiosh.inc -text
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 -text
rtl/nds/sysfile.inc -text
rtl/nds/sysheap.inc svneol=native#text/x-pascal
rtl/nds/sysos.inc -text
rtl/nds/sysosh.inc -text
rtl/nds/systhrd.inc svneol=native#text/plain
rtl/nds/sysutils.pp -text
rtl/nds/tthread.inc -text
rtl/nds/varutils.pp -text
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 -text
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/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/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/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.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/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/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/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/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/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/pmutext.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/unxsockh.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/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/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/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 -text
rtl/symbian/symbian.pas -text
rtl/symbian/symbianinc/e32def.inc -text
rtl/symbian/symbianinc/e32err.inc -text
rtl/symbian/symbianinc/e32std.inc -text
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 -text
rtl/symbian/uiqclasses.pas -text
rtl/symbian/uiqinc/qikapplication.inc -text
rtl/symbian/uiqinc/qikapplicationoo.inc -text
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/cp1250.txt svneol=native#text/plain
rtl/ucmaps/cp1251.txt svneol=native#text/plain
rtl/ucmaps/cp1252.txt svneol=native#text/plain
rtl/ucmaps/cp1253.txt svneol=native#text/plain
rtl/ucmaps/cp1254.txt svneol=native#text/plain
rtl/ucmaps/cp1255.txt svneol=native#text/plain
rtl/ucmaps/cp1256.txt svneol=native#text/plain
rtl/ucmaps/cp1257.txt svneol=native#text/plain
rtl/ucmaps/cp1258.txt svneol=native#text/plain
rtl/ucmaps/cp437.txt svneol=native#text/plain
rtl/ucmaps/cp737.txt svneol=native#text/plain
rtl/ucmaps/cp775.txt svneol=native#text/plain
rtl/ucmaps/cp850.txt svneol=native#text/plain
rtl/ucmaps/cp852.txt svneol=native#text/plain
rtl/ucmaps/cp855.txt svneol=native#text/plain
rtl/ucmaps/cp856.txt svneol=native#text/plain
rtl/ucmaps/cp857.txt svneol=native#text/plain
rtl/ucmaps/cp860.txt svneol=native#text/plain
rtl/ucmaps/cp861.txt svneol=native#text/plain
rtl/ucmaps/cp862.txt svneol=native#text/plain
rtl/ucmaps/cp863.txt svneol=native#text/plain
rtl/ucmaps/cp864.txt svneol=native#text/plain
rtl/ucmaps/cp865.txt svneol=native#text/plain
rtl/ucmaps/cp866.txt svneol=native#text/plain
rtl/ucmaps/cp869.txt svneol=native#text/plain
rtl/ucmaps/cp874.txt svneol=native#text/plain
rtl/ucmaps/cp932.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 -text
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/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/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/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/sysdir.inc svneol=native#text/plain
rtl/unix/sysfile.inc svneol=native#text/plain
rtl/unix/sysheap.inc svneol=native#text/plain
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/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 -text
rtl/watcom/sysfile.inc -text
rtl/watcom/sysheap.inc -text
rtl/watcom/sysos.inc -text
rtl/watcom/sysosh.inc -text
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/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/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/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/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/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 -text
rtl/wince/winsock.pp svneol=native#text/plain
rtl/wince/winsock2.pp svneol=native#text/plain
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/strlen.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 -text
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/x-pascal
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/pascal
tests/bench/shortbench.pp svneol=native#text/plain
tests/bench/stream.pp svneol=native#text/x-pascal
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/tb0070.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/tb0113.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/tb0188.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 -text
tests/tbf/tb0199a.pp -text
tests/tbf/tb0200.pp svneol=native#text/x-pascal
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/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/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/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/tb0114.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/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/x-pascal
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/x-pascal
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/x-pascal
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/x-pascal
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/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/test/README.txt 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/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/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/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/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/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/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/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/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/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/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/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/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/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/m68k/ctest.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/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/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/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/macos/powerpc/ctest.o -text
tests/test/cg/obj/netbsd/m68k/ctest.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/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/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/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/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/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/x-pascal
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/tcalcst9.pp svneol=native#text/plain
tests/test/cg/tcalext.pp svneol=native#text/plain
tests/test/cg/tcalext2.pp svneol=native#text/plain
tests/test/cg/tcalext3.pp -text
tests/test/cg/tcalext4.pp -text
tests/test/cg/tcalext5.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/tcalfun9.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/tcalobj8.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/tcalpvr8.pp svneol=native#text/plain
tests/test/cg/tcalval1.pp svneol=native#text/plain
tests/test/cg/tcalval10.pp -text
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/tcalval9.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/tcalvar9.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/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 -text
tests/test/cg/tfuncret.pp svneol=native#text/plain
tests/test/cg/tin.pp svneol=native#text/plain
tests/test/cg/tincdec.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/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/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/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/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/uwpo2.pp svneol=native#text/plain
tests/test/packages/fcl-base/tascii85.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/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/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/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/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 -text
tests/test/targ1b.pp -text
tests/test/tarray1.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/x-pascal
tests/test/tasmread.pp svneol=native#text/plain
tests/test/tasout.pp svneol=native#text/plain
tests/test/tbopr.pp svneol=native#text/plain
tests/test/tbrtlevt.pp svneol=native#text/plain
tests/test/tcase1.pp svneol=native#text/plain
tests/test/tcase2.pp svneol=native#text/plain
tests/test/tcg1.pp svneol=native#text/plain
tests/test/tcint64.pp svneol=native#text/plain
tests/test/tclass1.pp svneol=native#text/plain
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/tclrprop.pp svneol=native#text/plain
tests/test/tcmp.pp svneol=native#text/plain
tests/test/tcmp0.pp svneol=native#text/plain
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/testcmem.pp svneol=native#text/plain
tests/test/testda1.pp svneol=native#text/plain
tests/test/testfpuc.pp svneol=native#text/plain
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/tfillchr.pp svneol=native#text/plain
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/tgeneric2.pp svneol=native#text/plain
tests/test/tgeneric3.pp svneol=native#text/plain
tests/test/tgeneric4.pp svneol=native#text/plain
tests/test/tgeneric5.pp svneol=native#text/plain
tests/test/tgeneric6.pp svneol=native#text/plain
tests/test/tgeneric7.pp svneol=native#text/plain
tests/test/tgeneric8.pp svneol=native#text/plain
tests/test/tgeneric9.pp svneol=native#text/plain
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/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 -text
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/tintfdef.pp svneol=native#text/plain
tests/test/tintuint.pp svneol=native#text/plain
tests/test/tlib1a.pp svneol=native#text/plain
tests/test/tlib1b.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/tmaclocalprocparam.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/tobjc1.pp svneol=native#text/plain
tests/test/tobjc2.pp svneol=native#text/plain
tests/test/tobjc3.pp svneol=native#text/plain
tests/test/tobjc4.pp svneol=native#text/plain
tests/test/tobjc4a.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/toperator1.pp svneol=native#text/plain
tests/test/toperator2.pp svneol=native#text/plain
tests/test/toperator3.pp svneol=native#text/plain
tests/test/toperator4.pp svneol=native#text/plain
tests/test/toperator5.pp svneol=native#text/plain
tests/test/toperator6.pp svneol=native#text/plain
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/tpara1.pp svneol=native#text/plain
tests/test/tpara2.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/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/tpoll.pp svneol=native#text/plain
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 -text
tests/test/trecreg2.pp svneol=native#text/plain
tests/test/trecreg3.pp -text
tests/test/trecreg4.pp svneol=native#text/plain
tests/test/tresstr.pp svneol=native#text/plain
tests/test/trox1.pp svneol=native#text/plain
tests/test/trox2.pp svneol=native#text/plain
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/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/tstack.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 -text
tests/test/tsubdecl.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/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%3Bcharset%3Dutf-8
tests/test/tutf82.pp svneol=native#text/plain%3Bcharset%3Dutf-8
tests/test/tvarset1.pp svneol=native#text/plain
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/uenum2a.pp svneol=native#text/plain
tests/test/uenum2b.pp svneol=native#text/plain
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/ugeneric7.pp svneol=native#text/plain
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/umacpas1.pp svneol=native#text/plain
tests/test/umainnam.pp svneol=native#text/plain
tests/test/units/classes/tmakeobjinst.pp svneol=native#text/plain
tests/test/units/classes/tsetstream.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/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/resref.inc svneol=native#text/plain
tests/test/units/fpcunit/searchbuf.inc svneol=native#text/plain
tests/test/units/fpcunit/sllist.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/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/ttrig1.pp svneol=native#text/plain
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/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/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 -text
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/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/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 -text
tests/test/units/system/tval1.pp -text
tests/test/units/system/tval2.pp -text
tests/test/units/system/tval3.pp -text
tests/test/units/system/tval4.pp -text
tests/test/units/system/tval5.pp svneol=native#text/plain
tests/test/units/system/tvalc.pp -text
tests/test/units/sysutils/tastrcmp.pp svneol=native#text/plain
tests/test/units/sysutils/tastrcmp1.pp svneol=native#text/plain
tests/test/units/sysutils/texec1.pp svneol=native#text/plain
tests/test/units/sysutils/texec2.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 -text
tests/test/units/sysutils/tlocale.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/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/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/units/MPWMake -text
tests/units/Makefile svneol=native#text/plain
tests/units/Makefile.fpc svneol=native#text/plain
tests/units/erroru.pp svneol=native#text/plain
tests/units/popuperr.pp svneol=native#text/plain
tests/units/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/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/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/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/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/tw1407.pp svneol=native#text/plain
tests/webtbf/tw1432.pp svneol=native#text/plain
tests/webtbf/tw1467.pp svneol=native#text/plain
tests/webtbf/tw1483.pp svneol=native#text/plain
tests/webtbf/tw1599.pp svneol=native#text/plain
tests/webtbf/tw1599b.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/tw1754.pp svneol=native#text/plain
tests/webtbf/tw1754b.pp svneol=native#text/plain
tests/webtbf/tw1782.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/tw1905.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/tw1949.pp svneol=native#text/plain
tests/webtbf/tw1969.pp svneol=native#text/plain
tests/webtbf/tw1995.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/tw2070.pp svneol=native#text/plain
tests/webtbf/tw2128.pp svneol=native#text/plain
tests/webtbf/tw2129.pp svneol=native#text/plain
tests/webtbf/tw2154.pp svneol=native#text/plain
tests/webtbf/tw2174.pp svneol=native#text/plain
tests/webtbf/tw2209.pp svneol=native#text/plain
tests/webtbf/tw2242.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/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 -text svneol=unset#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 -text
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 -text
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 -text
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/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/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/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/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/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/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/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/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/tw13820.pp svneol=native#text/plain
tests/webtbs/tw1398.pp svneol=native#text/plain
tests/webtbs/tw1401.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/tw1412.pp svneol=native#text/plain
tests/webtbs/tw1414.pp svneol=native#text/plain
tests/webtbs/tw1416.pp svneol=native#text/plain
tests/webtbs/tw1430.pp svneol=native#text/plain
tests/webtbs/tw1433.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/tw1470.pp svneol=native#text/plain
tests/webtbs/tw1472.pp svneol=native#text/plain
tests/webtbs/tw1477.pp svneol=native#text/plain
tests/webtbs/tw1479.pp svneol=native#text/plain
tests/webtbs/tw1485.pp svneol=native#text/plain
tests/webtbs/tw1489.pp svneol=native#text/plain
tests/webtbs/tw1501.pp svneol=native#text/plain
tests/webtbs/tw1532.pp svneol=native#text/plain
tests/webtbs/tw1539.pp svneol=native#text/plain
tests/webtbs/tw1567.pp svneol=native#text/plain
tests/webtbs/tw1573.pp svneol=native#text/plain
tests/webtbs/tw1592.pp svneol=native#text/plain
tests/webtbs/tw1617.pp svneol=native#text/plain
tests/webtbs/tw1622.pp svneol=native#text/plain
tests/webtbs/tw1623.pp svneol=native#text/plain
tests/webtbs/tw1634.pp svneol=native#text/plain
tests/webtbs/tw1658.pp svneol=native#text/plain
tests/webtbs/tw1677.pp svneol=native#text/plain
tests/webtbs/tw1681.pp svneol=native#text/plain
tests/webtbs/tw1696.pp svneol=native#text/plain
tests/webtbs/tw1699.pp svneol=native#text/plain
tests/webtbs/tw1709.pp svneol=native#text/plain
tests/webtbs/tw1720.pp svneol=native#text/plain
tests/webtbs/tw1735.pp svneol=native#text/plain
tests/webtbs/tw1737.pp svneol=native#text/plain
tests/webtbs/tw1744.pp svneol=native#text/plain
tests/webtbs/tw1754c.pp svneol=native#text/plain
tests/webtbs/tw1755.pp svneol=native#text/plain
tests/webtbs/tw1758.pp svneol=native#text/plain
tests/webtbs/tw1765.pp svneol=native#text/plain
tests/webtbs/tw1779.pp svneol=native#text/plain
tests/webtbs/tw1780.pp svneol=native#text/plain
tests/webtbs/tw1792.pp svneol=native#text/plain
tests/webtbs/tw1792a.pp svneol=native#text/plain
tests/webtbs/tw1798.pp svneol=native#text/plain
tests/webtbs/tw1820.pp svneol=native#text/plain
tests/webtbs/tw1825.pp svneol=native#text/plain
tests/webtbs/tw1850.pp svneol=native#text/plain
tests/webtbs/tw1851.pp svneol=native#text/plain
tests/webtbs/tw1856.pp svneol=native#text/plain
tests/webtbs/tw1862.pp svneol=native#text/plain
tests/webtbs/tw1863.pp svneol=native#text/plain
tests/webtbs/tw1867.pp svneol=native#text/plain
tests/webtbs/tw1873.pp svneol=native#text/plain
tests/webtbs/tw1883.pp svneol=native#text/plain
tests/webtbs/tw1888.pp svneol=native#text/plain
tests/webtbs/tw1889.pp svneol=native#text/plain
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/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/tw1920.pp svneol=native#text/plain
tests/webtbs/tw1923.pp svneol=native#text/plain
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/tw1935.pp svneol=native#text/plain
tests/webtbs/tw1936.pp svneol=native#text/plain
tests/webtbs/tw1938.pp svneol=native#text/plain
tests/webtbs/tw1948.pp svneol=native#text/plain
tests/webtbs/tw1950.pp svneol=native#text/plain
tests/webtbs/tw1964.pp svneol=native#text/plain
tests/webtbs/tw1996.pp svneol=native#text/plain
tests/webtbs/tw2001.pp svneol=native#text/plain
tests/webtbs/tw2002.pp svneol=native#text/plain
tests/webtbs/tw2004.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/tw2040.pp svneol=native#text/plain
tests/webtbs/tw2041.pp svneol=native#text/plain
tests/webtbs/tw2045.pp svneol=native#text/plain
tests/webtbs/tw2046a.pp svneol=native#text/plain
tests/webtbs/tw2059.pp svneol=native#text/plain
tests/webtbs/tw2065.pp svneol=native#text/plain
tests/webtbs/tw2069.pp svneol=native#text/plain
tests/webtbs/tw2072.pp svneol=native#text/plain
tests/webtbs/tw2109.pp svneol=native#text/plain
tests/webtbs/tw2110.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/tw2145.pp svneol=native#text/plain
tests/webtbs/tw2158.pp svneol=native#text/plain
tests/webtbs/tw2159.pp svneol=native#text/plain
tests/webtbs/tw2163.pp svneol=native#text/plain
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/tw2185.pp svneol=native#text/plain
tests/webtbs/tw2186.pp svneol=native#text/plain
tests/webtbs/tw2187.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/tw2214.pp svneol=native#text/plain
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/tw2233.pp svneol=native#text/plain
tests/webtbs/tw2242.pp svneol=native#text/plain
tests/webtbs/tw2250.pp svneol=native#text/plain
tests/webtbs/tw2259.pp svneol=native#text/plain
tests/webtbs/tw2260.pp svneol=native#text/plain
tests/webtbs/tw2266.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/tw2274.pp svneol=native#text/plain
tests/webtbs/tw2277.pp svneol=native#text/plain
tests/webtbs/tw2280.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 -text svneol=unset#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 -text
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 -text
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/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/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/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 -text
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/x-pascal
tests/webtbs/tw9278.pp svneol=native#text/plain
tests/webtbs/tw9299.pp -text
tests/webtbs/tw9306a.pp -text
tests/webtbs/tw9306b.pp -text
tests/webtbs/tw9309.pp -text
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/tw9509.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 -text
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 -text
tests/webtbs/tw9985.pp svneol=native#text/plain
tests/webtbs/tw9985a.pp svneol=native#text/plain
tests/webtbs/ub1873.pp svneol=native#text/plain
tests/webtbs/ub1883.pp svneol=native#text/plain
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/uw2004.inc svneol=native#text/plain
tests/webtbs/uw2040.pp svneol=native#text/plain
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/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/checkcvs.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/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/makefile.exm -text
utils/fpcm/printmakefilefpcrequirements.sh svneol=native#text/plain
utils/fpcm/readme.txt svneol=native#text/plain
utils/fpcres/Makefile svneol=native#text/plain
utils/fpcres/Makefile.fpc svneol=native#text/plain
utils/fpcres/fpcres.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/dglobals.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_ipf.pp 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/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/sh_pas.pp svneol=native#text/plain
utils/fpdoc/unitdiff.pp 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/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/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/fpmkunitsrc.inc svneol=native#text/plain
utils/fppkg/fppkg.lpi svneol=native#text/plain
utils/fppkg/fppkg.pp svneol=native#text/plain
utils/fppkg/fprepos.pp svneol=native#text/plain
utils/fppkg/fpxmlrep.pp svneol=native#text/plain
utils/fppkg/lnet/LICENSE -text
utils/fppkg/lnet/LICENSE.ADDON -text
utils/fppkg/lnet/fastcgi.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/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/pkgcommands.pp svneol=native#text/plain
utils/fppkg/pkgdownload.pp svneol=native#text/plain
utils/fppkg/pkgfpmake.pp svneol=native#text/plain
utils/fppkg/pkgglobals.pp svneol=native#text/plain
utils/fppkg/pkghandler.pp svneol=native#text/plain
utils/fppkg/pkglnet.pp svneol=native#text/plain
utils/fppkg/pkgmessages.pp svneol=native#text/plain
utils/fppkg/pkgmkconv.pp svneol=native#text/plain
utils/fppkg/pkgoptions.pp svneol=native#text/plain
utils/fppkg/pkgrepos.pp svneol=native#text/plain
utils/fppkg/pkgwget.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/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/h2pas.pas svneol=native#text/plain
utils/h2pas/h2pas.y -text
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 -text
utils/h2pas/scan.pas svneol=native#text/plain
utils/h2pas/testit.h -text
utils/h2pas/yylex.cod -text
utils/h2pas/yyparse.cod -text
utils/kalyptus/kalyptus -text
utils/kalyptus/kalyptusCxxToPas.pm -text
utils/kalyptus/kalyptusDataDict.pm -text
utils/mksymbian/Makefile svneol=native#text/plain
utils/mksymbian/Makefile.fpc -text
utils/mksymbian/cfgfile.pas -text
utils/mksymbian/cmdline.pas -text
utils/mksymbian/compiler.pas -text
utils/mksymbian/constants.pas -text
utils/mksymbian/mksymbian.lpi -text
utils/mksymbian/mksymbian.pas -text
utils/mksymbian/projectparser.pas -text
utils/mksymbian/sdkutil.pas -text
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/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/simulator/Makefile svneol=native#text/plain
utils/simulator/Makefile.fpc svneol=native#text/plain
utils/simulator/alphasim.pas svneol=native#text/plain
utils/simulator/fastmm64.pas svneol=native#text/plain
utils/simulator/mm64.pas svneol=native#text/plain
utils/simulator/simbase.pas svneol=native#text/plain
utils/simulator/simlib.pas 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/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