فهرست منبع

* use Sysutils for not fpc compilers

peter 23 سال پیش
والد
کامیت
809a79fdab
3فایلهای تغییر یافته به همراه21 افزوده شده و 3 حذف شده
  1. 7 1
      tests/test/units/system/trdtxt01.pp
  2. 7 1
      tests/test/units/system/trdtxt02.pp
  3. 7 1
      tests/test/units/system/trdtxt03.pp

+ 7 - 1
tests/test/units/system/trdtxt01.pp

@@ -1,6 +1,12 @@
 Program trdtxt01;
 
-uses strings;
+{$ifdef fpc}
+uses
+  strings;
+{$else}
+uses
+  SysUtils;
+{$endif}
 
 procedure test(b: boolean);
 begin

+ 7 - 1
tests/test/units/system/trdtxt02.pp

@@ -1,6 +1,12 @@
 Program trdtxt02;
 
-uses strings;
+{$ifdef fpc}
+uses
+  strings;
+{$else}
+uses
+  SysUtils;
+{$endif}
 
 procedure test(b: boolean);
 begin

+ 7 - 1
tests/test/units/system/trdtxt03.pp

@@ -1,6 +1,12 @@
 Program trdtxt03;
 
-uses strings;
+{$ifdef fpc}
+uses
+  strings;
+{$else}
+uses
+  SysUtils;
+{$endif}
 
 procedure test(b: boolean);
 begin