Browse Source

* win32 only

peter 26 years ago
parent
commit
60829b8cce
1 changed files with 4 additions and 2 deletions
  1. 4 2
      tests/tbs0241.pp

+ 4 - 2
tests/tbs0241.pp

@@ -1,5 +1,4 @@
-{ $OPT= -Twin32}
-
+{$ifdef win32}
 program test_win32_drv;
 
 procedure printer;external 'winspool.drv' name 'AbortPrinter';
@@ -11,4 +10,7 @@ procedure test;
 
 begin
   test;
+{$else}
+begin
+{$endif}
 end.