package Loc_Data_Declarations is

    --===================================================================
    -- This package contains definition of LOC data declarations       ==
    -- count and an operation used to change an object of type Count.  ==
    --===================================================================

    type Count is new Natural;
    procedure Change (Number_Of_Data_Declarations : in out Count;
                      With_Delta : in Positive := 1);

end Loc_Data_Declarations;