From 7e7500bd935a77abc89304a841ae95befd328d61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gardou?= Date: Tue, 2 Apr 2013 20:27:39 +0000 Subject: [PATCH] [CRT] * Don't use the builtin version of _alloca svn path=/trunk/; revision=58654 --- reactos/include/crt/malloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/include/crt/malloc.h b/reactos/include/crt/malloc.h index c0ebb2ec25b..1c23fbb9e00 100644 --- a/reactos/include/crt/malloc.h +++ b/reactos/include/crt/malloc.h @@ -228,7 +228,7 @@ extern "C" { _msize( _In_ void *_Memory); -#ifdef __GNUC__ +#if __GNUC__ && 0 #undef _alloca #define _alloca(x) __builtin_alloca((x)) #else