aboutsummaryrefslogtreecommitdiffstats
path: root/support/regex_internal.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-06-23 12:42:57 +0300
committerArnold D. Robbins <arnold@skeeve.com>2017-06-23 12:42:57 +0300
commitec2e54b2c075f30e9499adea22681499e3f6582d (patch)
treeeead84bdf1f41b78f90f00c13e02dd59eae92133 /support/regex_internal.c
parent9ccddb999bb2d79c261702f789deb9371090a4ec (diff)
parent44e29458a6355ad64e8d89676a441b224ce76cbc (diff)
downloadegawk-ec2e54b2c075f30e9499adea22681499e3f6582d.tar.gz
egawk-ec2e54b2c075f30e9499adea22681499e3f6582d.tar.bz2
egawk-ec2e54b2c075f30e9499adea22681499e3f6582d.zip
Merge branch 'master' into feature/api-mpfr
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;