diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | dfa.c | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,5 +1,11 @@ 2013-01-31 Arnold D. Robbins <arnold@skeeve.com> + * dfa.c: Include "dfa.h" which includes regex.h after limits.h + so that RE_DUP_MAX gets the correct value. Especially needed on + OpenVMS. Thanks to Anders Wallin. + +2013-01-31 Arnold D. Robbins <arnold@skeeve.com> + * PROBLEMS: Removed. It is no longer needed. * Makefile.am (EXTRA_DIST): Remove PROBLEMS from list. @@ -22,8 +22,6 @@ #include <config.h> -#include "dfa.h" - #include <assert.h> #include <ctype.h> #include <stdio.h> @@ -45,6 +43,8 @@ #include "missing_d/gawkbool.h" #endif /* HAVE_STDBOOL_H */ +#include "dfa.h" + #define STREQ(a, b) (strcmp (a, b) == 0) |