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