* part of r18781 (forgot to commit)

git-svn-id: branches/jvmbackend@18808 -
This commit is contained in:
Jonas Maebe 2011-08-23 15:25:23 +00:00
parent 3a5b3a0cce
commit 2ddc8d6a3c
2 changed files with 27 additions and 0 deletions

1
.gitattributes vendored
View File

@ -7343,6 +7343,7 @@ rtl/inc/ucomplex.pp svneol=native#text/plain
rtl/inc/ufloat128.pp svneol=native#text/plain
rtl/inc/ustringh.inc svneol=native#text/plain
rtl/inc/ustrings.inc svneol=native#text/plain
rtl/inc/uuchar.pp svneol=native#text/plain
rtl/inc/varerror.inc svneol=native#text/plain
rtl/inc/variant.inc svneol=native#text/plain
rtl/inc/varianth.inc svneol=native#text/plain

26
rtl/inc/uuchar.pp Normal file
View File

@ -0,0 +1,26 @@
{
This file is part of the Free Pascal Run time library.
Copyright (c) 2011 by the Free Pascal development team
This unit redefines the Char type from ansichar into widechar
See the file COPYING.FPC, included in this distribution,
For details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
unit uuchar;
interface
type
char = widechar;
implementation
end.