aboutsummaryrefslogtreecommitdiffstats
path: root/regcomp.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-01-20 22:11:44 +0200
committerArnold D. Robbins <arnold@skeeve.com>2016-01-20 22:11:44 +0200
commit6b8e2a6a3308ec23fdaf305a5f1b80747a9be2db (patch)
treeebf7f22cf21ff0ce898621054cce4bf6085fdc3c /regcomp.c
parent9b61d5e1beddea15ead5b5bf42aa4f3510176907 (diff)
parentffe5d1731eca9dd68fd657d5f21a221a200fd37e (diff)
downloadegawk-6b8e2a6a3308ec23fdaf305a5f1b80747a9be2db.tar.gz
egawk-6b8e2a6a3308ec23fdaf305a5f1b80747a9be2db.tar.bz2
egawk-6b8e2a6a3308ec23fdaf305a5f1b80747a9be2db.zip
Merge branch 'master' into feature/cmake
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/regcomp.c b/regcomp.c
index a3c4fb62..54753e12 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -137,7 +137,7 @@ static reg_errcode_t mark_opt_subexp (void *extra, bin_tree_t *node);
POSIX doesn't require that we do anything for REG_NOERROR,
but why not be nice? */
-static const char __re_error_msgid[] attribute_hidden =
+static const char __re_error_msgid[] =
{
#define REG_NOERROR_IDX 0
gettext_noop ("Success") /* REG_NOERROR */
@@ -191,7 +191,7 @@ static const char __re_error_msgid[] attribute_hidden =
gettext_noop ("Unmatched ) or \\)") /* REG_ERPAREN */
};
-static const size_t __re_error_msgid_idx[] attribute_hidden =
+static const size_t __re_error_msgid_idx[] =
{
REG_NOERROR_IDX,
REG_NOMATCH_IDX,