diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-04-11 06:05:57 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-04-11 06:05:57 +0300 |
commit | 8ba34e95809188fb1c11fe8e581661caf7b8546f (patch) | |
tree | a1a4f67c07e585f5bcfe11bd5f8e619b4817264c | |
parent | e8fcc3fbc7e9c51e90233fecb2584b851260b565 (diff) | |
download | egawk-8ba34e95809188fb1c11fe8e581661caf7b8546f.tar.gz egawk-8ba34e95809188fb1c11fe8e581661caf7b8546f.tar.bz2 egawk-8ba34e95809188fb1c11fe8e581661caf7b8546f.zip |
Stamp out __attribute.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | regexec.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2016-04-11 Arnold D. Robbins <arnold@skeeve.com> + + * regexec.c: Stamp out last remaining use of __attribute. + 2016-04-10 John E. Malmberg <wb8tyw@qsl.net> * regex_internal.c: Use _GL_ATTRIBUTE_PURE macro @@ -1032,7 +1032,7 @@ prune_impossible_nodes (re_match_context_t *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) { |