diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-02-06 06:21:57 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-02-06 06:21:57 +0200 |
commit | 422a9f84f8bc91f267a176e737dfc2d7670d540b (patch) | |
tree | b3d99c5e9f079128d9d9a3b650676e63baec02a9 /dfa.c | |
parent | b4997014ca38482c242d84148787ab4211ed6897 (diff) | |
download | egawk-422a9f84f8bc91f267a176e737dfc2d7670d540b.tar.gz egawk-422a9f84f8bc91f267a176e737dfc2d7670d540b.tar.bz2 egawk-422a9f84f8bc91f267a176e737dfc2d7670d540b.zip |
Fix include order, mainly for VMS.
(cherry picked from commit 20cf1ff2b10b7b43d30a9213c63b8e92a12b9a90)
Diffstat (limited to 'dfa.c')
-rw-r--r-- | dfa.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |