From 110a4edc154f6fb73ef3d312630455f68641123f Mon Sep 17 00:00:00 2001 From: grischka Date: Sat, 16 May 2009 22:30:13 +0200 Subject: drop alloca #define (Because GNU's alloca.h unconditionally #undef's alloca) Also, remove gcc specific sections in headers. and instead change tests such that gcc does not use them. --- win32/include/stddef.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'win32/include/stddef.h') diff --git a/win32/include/stddef.h b/win32/include/stddef.h index 9965f89..6e4e2c8 100644 --- a/win32/include/stddef.h +++ b/win32/include/stddef.h @@ -18,9 +18,6 @@ typedef int int32_t; typedef long long int int64_t; #endif -#ifdef __i386__ -void *_alloca(size_t); -#define alloca _alloca -#endif +void *alloca(size_t); #endif -- cgit v1.3.1