* Don't use the builtin version of _alloca

svn path=/trunk/; revision=58654
This commit is contained in:
Jérôme Gardou 2013-04-02 20:27:39 +00:00
parent a3c3a4df99
commit 7e7500bd93

View file

@ -228,7 +228,7 @@ extern "C" {
_msize(
_In_ void *_Memory);
#ifdef __GNUC__
#if __GNUC__ && 0
#undef _alloca
#define _alloca(x) __builtin_alloca((x))
#else