ReactOS 0.4.15-dev-7842-g558ab78
alloca.h
Go to the documentation of this file.
1
2#ifdef _MSC_VER
3#include <malloc.h>
4#define alloca _alloca
5#else
6#include_next <alloca.h>
7#endif
8