bernhardf reports with Bug 210:

For certain non-gcc compilers, alloca_h is defined (included) but there, 
no alloca() is declared.  Fallback to malloc if _ALLOCA_H is defined but 
still, there is no alloca() in the included _ALLOCA_H.
1_00_stable_10817
Mike Frysinger 2005-04-16 04:06:14 +00:00
parent afe023d136
commit a9ae74d25b
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ typedef union YYSTYPE {
# define YYSTACK_ALLOC alloca
# else
# ifndef YYSTACK_USE_ALLOCA
# if defined (alloca) || defined (_ALLOCA_H)
# if defined (alloca) || (defined (_ALLOCA_H) && defined (__GNUC__))
# define YYSTACK_ALLOC alloca
# else
# ifdef __GNUC__