Преглед на файлове

* 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