-- AlpineZonesStubImpl.mesa -- Last edited by -- December 3, 1982 12:13 pm DIRECTORY AlpineZones USING[], SafeStorage USING[NewZone]; AlpineZonesStubImpl: PROGRAM IMPORTS SafeStorage EXPORTS AlpineZones = BEGIN static: PUBLIC ZONE _ SafeStorage.NewZone[]; -- A prefixed zone to be used in allocating static objects such as hash arrays. END.