diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-01-18 12:13:31 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-01-18 12:13:31 +0200 |
commit | 2d1a7927d6d83e406597e12bca21311eb99343e4 (patch) | |
tree | e3bfbe83a120e5c92db30ffb3815d60d2309e866 /dfa.h | |
parent | 555c01ad237512c6b2f328cb7788eb95490358e8 (diff) | |
download | egawk-2d1a7927d6d83e406597e12bca21311eb99343e4.tar.gz egawk-2d1a7927d6d83e406597e12bca21311eb99343e4.tar.bz2 egawk-2d1a7927d6d83e406597e12bca21311eb99343e4.zip |
Fix order of include problem in dfa.c/dfa.h.
Diffstat (limited to 'dfa.h')
-rw-r--r-- | dfa.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -18,6 +18,9 @@ /* Written June, 1988 by Mike Haertel */ +#include <regex.h> +#include <stddef.h> + /* Element of a list of strings, at least one of which is known to appear in any R.E. matching the DFA. */ struct dfamust |