aboutsummaryrefslogtreecommitdiffstats
path: root/regexec.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-06-15 22:42:15 +0300
committerArnold D. Robbins <arnold@skeeve.com>2015-06-15 22:42:15 +0300
commit3d47e0edfe9dbac583f54cb265063efb9d37fa38 (patch)
treee9f3e90fa01262d116bad5a7f962f27d76207322 /regexec.c
parentcafcfc7d7f2341951b82e4511efc19b84afa4031 (diff)
parentac0ef52fe407b89c7968b927c7b2b513cc13963a (diff)
downloadegawk-3d47e0edfe9dbac583f54cb265063efb9d37fa38.tar.gz
egawk-3d47e0edfe9dbac583f54cb265063efb9d37fa38.tar.bz2
egawk-3d47e0edfe9dbac583f54cb265063efb9d37fa38.zip
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/regexec.c b/regexec.c
index 46a4d0ae..cff69bfc 100644
--- a/regexec.c
+++ b/regexec.c
@@ -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;
@@ -1055,7 +1059,7 @@ prune_impossible_nodes (mctx)
since initial states may have constraints like "\<", "^", etc.. */
static inline re_dfastate_t *
-__attribute ((always_inline)) internal_function
+__attribute__ ((always_inline)) internal_function
acquire_init_state_context (reg_errcode_t *err, const re_match_context_t *mctx,
int idx)
{