mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-30 18:15:45 +02:00
12 lines
107 B
ObjectPascal
12 lines
107 B
ObjectPascal
{%opt=-gh}
|
|
{$mode macpas}
|
|
|
|
var
|
|
p: pointer;
|
|
|
|
begin
|
|
new(p,8);
|
|
fillchar(p^,8,$56);
|
|
dispose(p,8);
|
|
end.
|