diff options
Diffstat (limited to 'support')
-rw-r--r-- | support/ChangeLog | 2 | ||||
-rw-r--r-- | support/dfa.h | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/support/ChangeLog b/support/ChangeLog index a941f28c..9e0ffe71 100644 --- a/support/ChangeLog +++ b/support/ChangeLog @@ -118,6 +118,8 @@ * intprops.h: Sync with GNULIB. * regcomp.c (init_word): Move general_case label inside ifdef. * regex.h: Don't define __USE_GNU. Brings closer to GLIBC regex. + * regex.c: Don't include gawkbool.h, we don't use it anymore. + * dfa.h: Ditto. 2017-11-26 Arnold D. Robbins <arnold@skeeve.com> diff --git a/support/dfa.h b/support/dfa.h index 86902ebf..e419e9a0 100644 --- a/support/dfa.h +++ b/support/dfa.h @@ -19,11 +19,7 @@ /* Written June, 1988 by Mike Haertel */ #include <regex.h> -#ifdef HAVE_STDBOOL_H #include <stdbool.h> -#else -#include "missing_d/gawkbool.h" -#endif /* HAVE_STDBOOL_H */ #include <stddef.h> #if 3 <= __GNUC__ |