aboutsummaryrefslogtreecommitdiffstats
path: root/regcomp.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-01-20 22:10:38 +0200
committerArnold D. Robbins <arnold@skeeve.com>2016-01-20 22:10:38 +0200
commit30d665adea53e84ee232e04450c91e59a0b3d90c (patch)
tree47e1a22f7d2a90a604ce0c9a7640afe88369fe2d /regcomp.c
parent07795bbecb05b4d2d52bd8808c713b0c5ece7b3b (diff)
downloadegawk-30d665adea53e84ee232e04450c91e59a0b3d90c.tar.gz
egawk-30d665adea53e84ee232e04450c91e59a0b3d90c.tar.bz2
egawk-30d665adea53e84ee232e04450c91e59a0b3d90c.zip
Minor regex code cleanup.
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 35a6c218..4ddbade0 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,