From 7f779e7937cca133ea5f2d18c154c6564516fd9f Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Mon, 17 Aug 2009 13:44:25 +0200 Subject: 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 --- libc/misc/regex/regexec.c | 2 ++ 1 file changed, 2 insertions(+) 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, -- cgit v1.2.3