fpc/tests/tbs/tb0289.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

16 lines
251 B
ObjectPascal

{ Old file: tbs0341.pp }
{ }
procedure IncLimit(var B: Byte; const Limit: Byte; const Incr: Byte);
begin
end;
procedure IncLimit(var B: Longint; const Limit: Longint; const Incr: Longint);
begin
end;
var
b : byte;
begin
inclimit(b,128,3);
end.