diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-03-23 22:44:37 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-03-23 22:44:37 +0200 |
commit | a17d64b1c25dec5a94a3e4407ba431ed3ddeb473 (patch) | |
tree | 05be19a92cff7a87e6b1edc08a5f14080052f81f | |
parent | ac1f9a6de76def07e6966f7701d5af2cfdb661f0 (diff) | |
download | egawk-a17d64b1c25dec5a94a3e4407ba431ed3ddeb473.tar.gz egawk-a17d64b1c25dec5a94a3e4407ba431ed3ddeb473.tar.bz2 egawk-a17d64b1c25dec5a94a3e4407ba431ed3ddeb473.zip |
Irix fix for dfa.c.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | dfa.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2014-03-23 Arnold D. Robbins <arnold@skeeve.com> + + * dfa.c: Move include of dfa.h around for correct building + on Irix. Thanks to Nelson H.F. Beebe for the report. + 2014-03-21 Arnold D. Robbins <arnold@skeeve.com> * dfa.c (using_simple_locale): Add ifdefs in case there is no @@ -43,8 +43,6 @@ #include "missing_d/gawkbool.h" #endif /* HAVE_STDBOOL_H */ -#include "dfa.h" - /* Gawk doesn't use Gnulib, so don't assume static_assert is present. */ #ifndef static_assert # define static_assert(cond, diagnostic) \ @@ -89,6 +87,8 @@ #include "xalloc.h" +#include "dfa.h" + #ifdef GAWK static int is_blank (int c) |