Problem: 1657515

Title: [Memory] Make GrowZoneProc non-static.

Received: May 21 1997 3:20PM


Currently in UMemory.cp, the GrowZoneProc is defined as:

static pascal long GrowZoneProc(Size needed);

If you could please remove the "static" keyword it would be great. Since we have our own sort of memory manager, we need to override the GrowZoneProc then call MacApp's GrowZoneProc.


Fix:

Removed static keyword as requested.