+ initial version of stack checking routines

This commit is contained in:
carl 2001-12-10 02:41:41 +00:00
parent 92ea5a291d
commit 2d4afe0bf8

View File

@ -0,0 +1,23 @@
{$S+}
{ This tests the stack checking routine on those }
{ targets which support it. }
procedure recursive;
var s: string;
begin
s := 'blahblah';
recursive;
end;
Begin
Recursive;
end.
{
$Log$
Revision 1.1 2001-12-10 02:41:41 carl
+ initial version of stack checking routines
}