]> git.saurik.com Git - bison.git/commitdiff
tests: fix 250: parse.error=verbose overflow.
authorAkim Demaille <demaille@gostai.com>
Thu, 25 Mar 2010 16:02:38 +0000 (17:02 +0100)
committerAkim Demaille <demaille@gostai.com>
Thu, 25 Mar 2010 16:06:16 +0000 (17:06 +0100)
* tests/regression.at (parse.error=verbose overflow): Avoid the
double inclusion of stdlib.h as it triggers hard errors.

ChangeLog
tests/regression.at

index bf67e120f23de8897d813135f081236a2fb5e985..e8091e3fb96d8f837638142ba8a29427218cdb4f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-03-25  Akim Demaille  <demaille@gostai.com>
+
+       tests: fix 250: parse.error=verbose overflow.
+       * tests/regression.at (parse.error=verbose overflow): Avoid the
+       double inclusion of stdlib.h as it triggers hard errors.
+
 2010-03-23  Joel E. Denny  <jdenny@ces.clemson.edu>
 
        portability: fix for BSD make.
index 3ef85419fb0f4b54a0624232f358dc1efb53adfa..153344713882e9055f7f1c6171f7d3520456a5f9 100644 (file)
@@ -1366,9 +1366,12 @@ AT_DATA_GRAMMAR([input.y],
      large enough to overflow size_t.  */
   #define YYSIZE_T unsigned char
 
-  /* Bring in malloc so yacc.c doesn't try to provide a malloc prototype
-     using our YYSIZE_T.  */
+  /* Bring in malloc and set _STDLIB_H so yacc.c doesn't try to
+     provide a malloc prototype using our YYSIZE_T.  */
   #include <stdlib.h>
+  #ifndef _STDLIB_H
+  # define _STDLIB_H 1
+  #endif
 
   /* Max depth is usually much smaller than YYSTACK_ALLOC_MAXIMUM, and
      we don't want gcc to warn everywhere this constant would be too big