* data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
__BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
- (defined alloca || defined _ALLOCA_H)]: Don't include <stdlib.h>;
- not needed in this case.
+ defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
* tests/torture.at (Exploding the Stack Size with Alloca): Adjust
to match yacc.c, to test more hosts.
# define alloca _alloca
# else
# define YYSTACK_ALLOC alloca
-# if (! defined (alloca) && ! defined (_ALLOCA_H) && ! defined (_STDLIB_H) \
+# if (! defined (_ALLOCA_H) && ! defined (_STDLIB_H) \
&& (defined (__STDC__) || defined (__cplusplus)))
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef _STDLIB_H
AT_DATA_STACK_TORTURE([[
#if (defined __GNUC__ || defined __BUILTIN_VA_ARG_INCR \
- || defined _AIX || defined _MSC_VER || defined alloca || defined _ALLOCA_H)
+ || defined _AIX || defined _MSC_VER || defined _ALLOCA_H)
# define YYSTACK_USE_ALLOCA 1
#endif
]])