@@ -0,0 +1,13 @@
+procedure IncLimit(var B: Byte; const Limit: Byte; const Incr: Byte);
+begin
+end;
+procedure IncLimit(var B: Longint; const Limit: Longint; const Incr: Longint);
+
+var
+ b : byte;
+ inclimit(b,128,3);
+end.