1 #pragma once
2 
3 #ifndef __MT_MEMORY__
4 #define __MT_MEMORY__
5 
6 #define MT_ALLOCATE_ON_STACK(BYTES_COUNT) _alloca(BYTES_COUNT)
7 
8 
9 #endif
10