diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-07-23 13:23:49 +0200 |
|---|---|---|
| committer | Austin Foxley <austinf@cetoncorp.com> | 2009-08-19 12:40:51 -0700 |
| commit | 54863d996f3d58988d4727fd937639b19e1968ea (patch) | |
| tree | 249f3a187f755763dc5684baeb712a923155b693 | |
| parent | b68623def920cccbf942f6ac2c8d2d60c8826970 (diff) | |
| download | uClibc-alpine-54863d996f3d58988d4727fd937639b19e1968ea.tar.bz2 uClibc-alpine-54863d996f3d58988d4727fd937639b19e1968ea.tar.xz | |
fix lib_hidden_proto's which have extra ;
This was making them appear in sanitized headers.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
| -rw-r--r-- | include/regex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/regex.h b/include/regex.h index ab2e0a3d6..1d4ddd27d 100644 --- a/include/regex.h +++ b/include/regex.h @@ -474,7 +474,7 @@ libc_hidden_proto(re_compile_fastmap) extern int re_search (struct re_pattern_buffer *__buffer, const char *__string, int __length, int __start, int __range, struct re_registers *__regs); -libc_hidden_proto(re_search); +libc_hidden_proto(re_search) /* Like `re_search', but search in the concatenation of STRING1 and @@ -483,7 +483,7 @@ extern int re_search_2 (struct re_pattern_buffer *__buffer, const char *__string1, int __length1, const char *__string2, int __length2, int __start, int __range, struct re_registers *__regs, int __stop); -libc_hidden_proto(re_search_2); +libc_hidden_proto(re_search_2) /* Like `re_search', but return how many characters in STRING the regexp |
