-- Dawson, June 6, 1979 1:49 AM
--Maureen Stone December 16, 1982 10:27 am

GriffinMemoryDefs: DEFINITIONS =
BEGIN
--try to get everything using CZone and ROPEs. Punt to Allocate and Free.
CZone: ZONE;
UCZone: UNCOUNTED ZONE;

Allocate: PROCEDURE [nwords: CARDINAL] RETURNS [LONG POINTER];
Free: PROCEDURE [LONG POINTER];
Initialize: PROC;
END.