Ver código fonte

* part of r18781 (forgot to commit)

git-svn-id: branches/jvmbackend@18808 -
Jonas Maebe 14 anos atrás
pai
commit
2ddc8d6a3c
2 arquivos alterados com 27 adições e 0 exclusões
  1. 1 0
      .gitattributes
  2. 26 0
      rtl/inc/uuchar.pp

+ 1 - 0
.gitattributes

@@ -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 - 0
rtl/inc/uuchar.pp

@@ -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.