tb0289.pp 252 B

12345678910111213141516
  1. { Old file: tbs0341.pp }
  2. { }
  3. procedure IncLimit(var B: Byte; const Limit: Byte; const Incr: Byte);
  4. begin
  5. end;
  6. procedure IncLimit(var B: Longint; const Limit: Longint; const Incr: Longint);
  7. begin
  8. end;
  9. var
  10. b : byte;
  11. begin
  12. inclimit(b,128,3);
  13. end.