aboutsummaryrefslogtreecommitdiffstats
path: root/dfa.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2013-01-31 20:19:18 +0200
committerArnold D. Robbins <arnold@skeeve.com>2013-01-31 20:19:18 +0200
commit20cf1ff2b10b7b43d30a9213c63b8e92a12b9a90 (patch)
tree0b809a07dd8b3d73e2c5bcb7355a1dab8f25050a /dfa.c
parentb658698ef6f11202e915d6d7d76c0ac7b20a8bed (diff)
downloadegawk-20cf1ff2b10b7b43d30a9213c63b8e92a12b9a90.tar.gz
egawk-20cf1ff2b10b7b43d30a9213c63b8e92a12b9a90.tar.bz2
egawk-20cf1ff2b10b7b43d30a9213c63b8e92a12b9a90.zip
Fix include order, mainly for VMS.
Diffstat (limited to 'dfa.c')
-rw-r--r--dfa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dfa.c b/dfa.c
index 8782e468..88d34d55 100644
--- a/dfa.c
+++ b/dfa.c
@@ -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)