X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/c49a8e71cec845d32366432b824a9317e4a80160..f95997e708b6847fc62b93a705eaf80124ebac2e:/src/alloc.h diff --git a/src/alloc.h b/src/alloc.h index afded9b1..9685122e 100644 --- a/src/alloc.h +++ b/src/alloc.h @@ -19,6 +19,10 @@ the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #define NEW(t) ((t *) xmalloc((unsigned) sizeof(t))) #define NEW2(n, t) ((t *) xmalloc((unsigned) ((n) * sizeof(t))))