Files
Work/common/STATIC.CPP
2024-08-07 09:09:36 -04:00

11 lines
165 B
C++

//#define _FASTHEAP_
#if defined(_FASTHEAP_)
#include <common/heapnew.hpp>
Heap &globalHeap(void)
{
static Heap sGlobalHeap(16384);
return sGlobalHeap;
}
#endif