diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-07-28 15:39:52 +0200 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-08-19 12:44:51 -0700 |
commit | 22223cdcb17367567932389511a506e989aa96da (patch) | |
tree | b88a99c933346811d866d279a15bc0888cfbc6c8 /libc/misc/regex/regex_old.c | |
parent | 6f7b5f7d6bb18b40326c2d1484795d0481599d37 (diff) | |
download | uClibc-alpine-22223cdcb17367567932389511a506e989aa96da.tar.bz2 uClibc-alpine-22223cdcb17367567932389511a506e989aa96da.tar.xz |
remove erroneous ';'
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/regex_old.c')
-rw-r--r-- | libc/misc/regex/regex_old.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/misc/regex/regex_old.c b/libc/misc/regex/regex_old.c index 1d00ad1a0..fc51610c8 100644 --- a/libc/misc/regex/regex_old.c +++ b/libc/misc/regex/regex_old.c @@ -4964,7 +4964,7 @@ re_search ( return re_search_2 (bufp, NULL, 0, string, size, startpos, range, regs, size); } -libc_hidden_def(re_search); +libc_hidden_def(re_search) /* Using the compiled pattern in BUFP->buffer, first tries to match the @@ -5006,7 +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); +libc_hidden_def(re_search_2) #endif /* not INSIDE_RECURSION */ |