summaryrefslogtreecommitdiffstats
path: root/libc/misc/regex/regex_old.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-07-20 05:42:31 -0400
committerAustin Foxley <austinf@cetoncorp.com>2009-08-19 12:10:39 -0700
commit9b44207a9364f1c2be8e77ab95e4efddd73b8a96 (patch)
treec46a50bd891b50d7f440462e37138c95c9262e94 /libc/misc/regex/regex_old.c
parentcd18097ebb7cdd5820ad98d2f2e8742d9aea1e7f (diff)
downloaduClibc-alpine-9b44207a9364f1c2be8e77ab95e4efddd73b8a96.tar.bz2
uClibc-alpine-9b44207a9364f1c2be8e77ab95e4efddd73b8a96.tar.xz
add hidden aliases for older regex search functions
Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc/misc/regex/regex_old.c')
-rw-r--r--libc/misc/regex/regex_old.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/misc/regex/regex_old.c b/libc/misc/regex/regex_old.c
index bdc298a3e..1d00ad1a0 100644
--- a/libc/misc/regex/regex_old.c
+++ b/libc/misc/regex/regex_old.c
@@ -4964,6 +4964,7 @@ re_search (
return re_search_2 (bufp, NULL, 0, string, size, startpos, range,
regs, size);
}
+libc_hidden_def(re_search);
/* Using the compiled pattern in BUFP->buffer, first tries to match the
@@ -5005,6 +5006,7 @@ re_search_2 (
return byte_re_search_2 (bufp, string1, size1, string2, size2, startpos,
range, regs, stop);
}
+libc_hidden_def(re_search_2);
#endif /* not INSIDE_RECURSION */