Use `#if , not `#ifndef'.
Reported by Airy Andre.
Version 1.29d.
* src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
- Use `#if YYSTACK_USE_ALLOCA', not `#ifdef'.
- Reported by Airy ANDRE.
+ Use `#if !YYSTACK_USE_ALLOCA', not `#ifndef'.
+ Reported by Airy Andre.
2001-10-10 Akim Demaille <akim@epita.fr>
yystacksize *= 2;
if (yystacksize > YYMAXDEPTH)
yystacksize = YYMAXDEPTH;
-# if YYSTACK_USE_ALLOCA
+# if !YYSTACK_USE_ALLOCA
yyfree_stacks = 1;
# endif
yyss = (short *) YYSTACK_ALLOC (yystacksize * sizeof (*yyssp));