mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-13 14:19:31 +02:00
* destroystack added
This commit is contained in:
parent
30f1eb4705
commit
25530692e9
@ -9,7 +9,7 @@ type
|
|||||||
|
|
||||||
function GetGroupInfo: TestRec;
|
function GetGroupInfo: TestRec;
|
||||||
begin
|
begin
|
||||||
// fillchar(Result, Sizeof(Result), 0);
|
Result.fString := 'Test';
|
||||||
Result.fRetAddr := 0;
|
Result.fRetAddr := 0;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -23,6 +23,16 @@ begin
|
|||||||
SelectGroup;
|
SelectGroup;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure destroystack;
|
||||||
|
var
|
||||||
|
s : string;
|
||||||
|
i : longint;
|
||||||
begin
|
begin
|
||||||
|
for i:=0 to 255 do
|
||||||
|
s[i]:=#$90;
|
||||||
|
end;
|
||||||
|
|
||||||
|
begin
|
||||||
|
// destroystack;
|
||||||
p;
|
p;
|
||||||
end.
|
end.
|
||||||
|
Loading…
Reference in New Issue
Block a user