SSeg

Declaration:
Function SSeg : Longint;
Description:
SSeg returns the Stack Segment. This function is only supported for compatibility reasons, as Sptr returns the correct contents of the stackpointer.
Errors:
None.
See also:
Sptr (576)

Listing: refex/ex67.pp


Program Example67;

{ Program to demonstrate the SSeg function. }
Var W : Longint;

begin
  W:=SSeg;
end.