소스 검색

* 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