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 /dfa.c | |
parent | ac1f9a6de76def07e6966f7701d5af2cfdb661f0 (diff) | |
download | egawk-a17d64b1c25dec5a94a3e4407ba431ed3ddeb473.tar.gz egawk-a17d64b1c25dec5a94a3e4407ba431ed3ddeb473.tar.bz2 egawk-a17d64b1c25dec5a94a3e4407ba431ed3ddeb473.zip |
Irix fix for dfa.c.
Diffstat (limited to 'dfa.c')
-rw-r--r-- | dfa.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |