elementary: alloca is already declared in eina_alloca.h

This commit is contained in:
Vincent Torri 2018-01-03 06:09:33 +01:00 committed by Cedric BAIL
parent 6afcd9b2a1
commit 9b2c0d0988
1 changed files with 0 additions and 17 deletions

View File

@ -2,23 +2,6 @@
# include "elementary_config.h"
#endif
#ifdef HAVE_ALLOCA_H
# include <alloca.h>
#elif defined __GNUC__
# define alloca __builtin_alloca
#elif defined _AIX
# define alloca __alloca
#elif defined _MSC_VER
# include <malloc.h>
# define alloca _alloca
#else
# include <stddef.h>
# ifdef __cplusplus
extern "C"
# endif
void *alloca(size_t);
#endif
#include <string.h>
#include <ctype.h>
#include <limits.h>