mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 17:48:53 +02:00
9 lines
100 B
ObjectPascal
9 lines
100 B
ObjectPascal
var
|
|
p : pointer;
|
|
begin
|
|
p:=getmem(0);
|
|
if not(assigned(p)) then
|
|
halt(1);
|
|
freemem(p);
|
|
end.
|