Eina: remove warning when compiling with mingw-w64

SVN revision: 67447
This commit is contained in:
Vincent Torri 2012-01-22 12:08:06 +00:00
parent f4baf62a91
commit 7bc418f30f
1 changed files with 3 additions and 1 deletions

View File

@ -31,7 +31,9 @@
#ifdef HAVE_ALLOCA_H
# include <alloca.h>
#elif defined __GNUC__
# define alloca __builtin_alloca
# ifndef alloca
# define alloca __builtin_alloca
# endif
#elif defined _AIX
# define alloca __alloca
#elif defined _MSC_VER