aboutsummaryrefslogtreecommitdiffstats
path: root/support/regex_internal.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-06-23 12:45:16 +0300
committerArnold D. Robbins <arnold@skeeve.com>2017-06-23 12:45:16 +0300
commit5ea4224acd6effc77359d42436de4804b86f1112 (patch)
tree9d4936e21342b71fd43de7cac311822677caad98 /support/regex_internal.c
parent231cb5df34699fd98001e2e124d73da5d2f795f9 (diff)
parent44e29458a6355ad64e8d89676a441b224ce76cbc (diff)
downloadegawk-5ea4224acd6effc77359d42436de4804b86f1112.tar.gz
egawk-5ea4224acd6effc77359d42436de4804b86f1112.tar.bz2
egawk-5ea4224acd6effc77359d42436de4804b86f1112.zip
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'support/regex_internal.c')
-rw-r--r--support/regex_internal.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/support/regex_internal.c b/support/regex_internal.c
index 18641ef1..2b3120c2 100644
--- a/support/regex_internal.c
+++ b/support/regex_internal.c
@@ -840,7 +840,7 @@ re_string_reconstruct (re_string_t *pstr, int idx, int eflags)
}
static unsigned char
-internal_function __attribute__ ((__pure__))
+internal_function __attribute ((pure))
re_string_peek_byte_case (const re_string_t *pstr, int idx)
{
int ch, off;
@@ -1372,7 +1372,7 @@ re_node_set_insert_last (re_node_set *set, int elem)
return 1 if SET1 and SET2 are equivalent, return 0 otherwise. */
static int
-internal_function __attribute__ ((__pure__))
+internal_function __attribute ((pure))
re_node_set_compare (const re_node_set *set1, const re_node_set *set2)
{
int i;
@@ -1387,7 +1387,7 @@ re_node_set_compare (const re_node_set *set1, const re_node_set *set2)
/* Return (idx + 1) if SET contains the element ELEM, return 0 otherwise. */
static int
-internal_function __attribute__ ((__pure__))
+internal_function __attribute ((pure))
re_node_set_contains (const re_node_set *set, int elem)
{
unsigned int idx, right, mid;