mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 19:49:31 +02:00
16 lines
271 B
ObjectPascal
16 lines
271 B
ObjectPascal
{ Source provided for Free Pascal Bug Report 4599 }
|
|
{ Submitted by "Sam" on 2005-12-14 }
|
|
{ e-mail: sam_herzog@yahoo.com }
|
|
|
|
{$mode objfpc}
|
|
|
|
procedure Trace(_level:byte;_msg:String;_params:array of const);
|
|
var
|
|
i : integer;
|
|
begin
|
|
i:=SizeOf(_params);
|
|
end;
|
|
|
|
begin
|
|
end.
|