reactos/sdk/include/wine/alloca.h

9 lines
99 B
C
Raw Normal View History

#ifdef _MSC_VER
#include <malloc.h>
#define alloca _alloca
#else
#include_next <alloca.h>
#endif