fpc/tests/webtbs/tw35862.pp
2019-07-19 15:55:21 +00:00

23 lines
309 B
ObjectPascal

{ %OPT=-gh }
program tw35862;
{$modeswitch result}
uses sysutils;
function do_term:boolean;
begin
writeln('In terminate proc');
Result:=true;
end;
begin
HaltOnNotReleased:=True;
writeln('Adding terminate proc');
AddTerminateproc(@do_term);
writeln('terminating');
CallterminateProcs;
end.