@@ -0,0 +1,6 @@
+{ %version=1.1 }
+type
+ __u64 = 0..High(Int64); // Create unsigned Int64 (with 63 bits)
+
+begin
+end.
@@ -0,0 +1,15 @@
+{$ifdef unix}
+{$linklib c}
+procedure printf(t:pchar);varargs;cdecl;external;
+ printf("Test %d",1);
+{$else}
+ writeln('Unix only test');
+{$endif}