diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-06-14 19:06:21 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-06-14 19:06:21 +0300 |
commit | 367417c47be947ed7d0af7b430af5ff1626bf7c1 (patch) | |
tree | 24ca3bd3e6be1b60079069693d7115daf5e0c322 /regexec.c | |
parent | 98904e6eee37f5f5373a9597ed134adc34a77519 (diff) | |
download | egawk-367417c47be947ed7d0af7b430af5ff1626bf7c1.tar.gz egawk-367417c47be947ed7d0af7b430af5ff1626bf7c1.tar.bz2 egawk-367417c47be947ed7d0af7b430af5ff1626bf7c1.zip |
Sync regex routines wit GLIBC.
Diffstat (limited to 'regexec.c')
-rw-r--r-- | regexec.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -17,6 +17,10 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ +#ifdef HAVE_STDINT_H +#include <stdint.h> +#endif /* HAVE_STDINT_H */ + static reg_errcode_t match_ctx_init (re_match_context_t *cache, int eflags, int n) internal_function; static void match_ctx_clean (re_match_context_t *mctx) internal_function; |