* src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.

This commit is contained in:
Akim Demaille
2001-10-10 14:58:26 +00:00
parent ee006e3a4c
commit 631aa1d3dc
5 changed files with 19 additions and 0 deletions

View File

@@ -98,6 +98,10 @@
# endif /* alloca not defined */
#endif /* YYSTACK_USE_ALLOCA not defined */
#ifndef YYSTACK_USE_ALLOCA
# define YYSTACK_USE_ALLOCA 0
#endif
#if YYSTACK_USE_ALLOCA
# define YYSTACK_ALLOC alloca
#else