summaryrefslogtreecommitdiffstats
path: root/libc/misc/regex/regexec.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2009-08-17 13:44:25 +0200
committerAustin Foxley <austinf@cetoncorp.com>2009-08-19 12:58:36 -0700
commite929ab1fc309d16820e181a539cf30f0732d3a03 (patch)
tree24fabe7072a40202b7ebf7f98057c37d07849a71 /libc/misc/regex/regexec.c
parent76430fe65d636c59a77103a40f1b159dae8c3719 (diff)
downloaduClibc-alpine-e929ab1fc309d16820e181a539cf30f0732d3a03.tar.bz2
uClibc-alpine-e929ab1fc309d16820e181a539cf30f0732d3a03.tar.xz
add hidden aliases for newer regex search functions
Fixes 3575b741754b391a27e33bb1866bdb29131b7fea which only changed the old impl but not the new one. Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc/misc/regex/regexec.c')
-rw-r--r--libc/misc/regex/regexec.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/misc/regex/regexec.c b/libc/misc/regex/regexec.c
index bdc7a29f3..92cbd821a 100644
--- a/libc/misc/regex/regexec.c
+++ b/libc/misc/regex/regexec.c
@@ -300,6 +300,7 @@ re_search (bufp, string, length, start, range, regs)
{
return re_search_stub (bufp, string, length, start, range, length, regs, 0);
}
+libc_hidden_def(re_search)
int
re_match_2 (bufp, string1, length1, string2, length2, start, regs, stop)
@@ -322,6 +323,7 @@ re_search_2 (bufp, string1, length1, string2, length2, start, range, regs, stop)
return re_search_2_stub (bufp, string1, length1, string2, length2,
start, range, regs, stop, 0);
}
+libc_hidden_def(re_search_2)
static int
re_search_2_stub (bufp, string1, length1, string2, length2, start, range, regs,