1 #pragma once 2 3 #ifndef __MT_MEMORY__ 4 #define __MT_MEMORY__ 5 6 7 #include <alloca.h> 8 9 #define MT_ALLOCATE_ON_STACK(BYTES_COUNT) alloca(BYTES_COUNT) 10 11 #endif 12
1 #pragma once 2 3 #ifndef __MT_MEMORY__ 4 #define __MT_MEMORY__ 5 6 7 #include <alloca.h> 8 9 #define MT_ALLOCATE_ON_STACK(BYTES_COUNT) alloca(BYTES_COUNT) 10 11 #endif 12