mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00
22 lines
278 B
ObjectPascal
22 lines
278 B
ObjectPascal
unit uw0701d;
|
|
|
|
interface
|
|
|
|
implementation
|
|
|
|
uses erroru;
|
|
|
|
var
|
|
startmem : sizeuint;
|
|
|
|
initialization
|
|
startmem:=0;
|
|
DoMem(startmem);
|
|
finalization
|
|
if DoMem(startmem)<>0 then
|
|
begin
|
|
writeln('Problem with ansistrings in units');
|
|
halt(1);
|
|
end;
|
|
end.
|