aboutsummaryrefslogtreecommitdiffstats
path: root/support/regex_internal.c
diff options
context:
space:
mode:
authorAndrew J. Schorr <aschorr@telemetry-investments.com>2017-06-22 15:22:46 -0400
committerAndrew J. Schorr <aschorr@telemetry-investments.com>2017-06-22 15:22:46 -0400
commit3f061027b6f0e2fe75b59d17efe93c0b84535b1a (patch)
tree83e18e38987cf849b8cf0bd74754856072d51118 /support/regex_internal.c
parentf4df3ba54ba5c2a4aec34d643424834c03645dd9 (diff)
parenta702a6b6d6009068f4608a865bdd06a07259cf67 (diff)
downloadegawk-3f061027b6f0e2fe75b59d17efe93c0b84535b1a.tar.gz
egawk-3f061027b6f0e2fe75b59d17efe93c0b84535b1a.tar.bz2
egawk-3f061027b6f0e2fe75b59d17efe93c0b84535b1a.zip
Merge branch 'master' of ssh://git.sv.gnu.org/srv/git/gawk
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;