aboutsummaryrefslogtreecommitdiffstats
path: root/regex_internal.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-06-17 08:02:51 +0300
committerArnold D. Robbins <arnold@skeeve.com>2015-06-17 08:02:51 +0300
commit76e1f5bfee032dbcb5c19b3e4e92f96aa05731c3 (patch)
tree30fc36317c233851cb339d3d985b075eddace130 /regex_internal.c
parentb415aad108eefea24d5195c29daa2eb54d025b00 (diff)
parent3d47e0edfe9dbac583f54cb265063efb9d37fa38 (diff)
downloadegawk-76e1f5bfee032dbcb5c19b3e4e92f96aa05731c3.tar.gz
egawk-76e1f5bfee032dbcb5c19b3e4e92f96aa05731c3.tar.bz2
egawk-76e1f5bfee032dbcb5c19b3e4e92f96aa05731c3.zip
Merge branch 'master' into feature/cmake
Diffstat (limited to 'regex_internal.c')
-rw-r--r--regex_internal.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/regex_internal.c b/regex_internal.c
index 5a5b9363..fcfa4ada 100644
--- a/regex_internal.c
+++ b/regex_internal.c
@@ -838,7 +838,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;
@@ -1370,7 +1370,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;
@@ -1385,7 +1385,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;