* cwstring is unix only

git-svn-id: trunk@19143 -
This commit is contained in:
florian 2011-09-18 20:41:37 +00:00
parent 85ed1b87d9
commit 030bcd083b
2 changed files with 11 additions and 3 deletions

View File

@ -6,7 +6,11 @@ program tstrutils1;
{$h+} {$h+}
uses uses
{SysUtils, }cwstring,StrUtils; {SysUtils, }
{$ifdef unix}
cwstring,
{$endif unix}
StrUtils;
var var
ResultCounter: Integer = 0; ResultCounter: Integer = 0;

View File

@ -7,7 +7,11 @@ program tstrutils2;
{$h+} {$h+}
uses uses
StrUtils,cwstring; StrUtils,
{$ifdef unix}
cwstring
{$endif unix}
;
var var
ResultCounter: Integer = 0; ResultCounter: Integer = 0;