diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-03-12 02:18:31 -0600 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-03-12 02:18:31 -0600 |
commit | cc77e041a1470ae6c7671ae99c71d771f4720318 (patch) | |
tree | e70b649ee7fd82ea751534dc991a736a68ae2cdd /support/dfa.c | |
parent | cbb4732ca5d0bf958288189b7786f34c24c28d26 (diff) | |
download | egawk-cc77e041a1470ae6c7671ae99c71d771f4720318.tar.gz egawk-cc77e041a1470ae6c7671ae99c71d771f4720318.tar.bz2 egawk-cc77e041a1470ae6c7671ae99c71d771f4720318.zip |
z/OS fix to dfa.c.
Diffstat (limited to 'support/dfa.c')
-rw-r--r-- | support/dfa.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/support/dfa.c b/support/dfa.c index 9939d228..c088a92b 100644 --- a/support/dfa.c +++ b/support/dfa.c @@ -22,10 +22,6 @@ #include <config.h> -#include "dfa.h" - -#include "flexmember.h" - #include <assert.h> #include <ctype.h> #include <stdint.h> @@ -34,6 +30,9 @@ #include <limits.h> #include <string.h> +#include "dfa.h" +#include "flexmember.h" + /* Another name for ptrdiff_t, for sizes of objects and nonnegative indexes into objects. It is signed to help catch integer overflow. It has its own name because it is for nonnegative values only. */ |