|
@@ -1390,7 +1390,7 @@ re_set_syntax (syntax)
|
|
|
return ret;
|
|
|
}
|
|
|
# if defined _LIBC || defined __UCLIBC__
|
|
|
-weak_alias (__re_set_syntax, re_set_syntax)
|
|
|
+strong_alias(__re_set_syntax, re_set_syntax)
|
|
|
# endif
|
|
|
|
|
|
|
|
@@ -5010,7 +5010,7 @@ re_compile_fastmap (bufp)
|
|
|
return byte_re_compile_fastmap(bufp);
|
|
|
}
|
|
|
#if defined _LIBC || defined __UCLIBC__
|
|
|
-weak_alias (__re_compile_fastmap, re_compile_fastmap)
|
|
|
+strong_alias(__re_compile_fastmap, re_compile_fastmap)
|
|
|
#endif
|
|
|
|
|
|
|
|
@@ -5049,7 +5049,7 @@ re_set_registers (bufp, regs, num_regs, starts, ends)
|
|
|
}
|
|
|
}
|
|
|
#if defined _LIBC || defined __UCLIBC__
|
|
|
-weak_alias (__re_set_registers, re_set_registers)
|
|
|
+strong_alias(__re_set_registers, re_set_registers)
|
|
|
#endif
|
|
|
|
|
|
|
|
@@ -5068,7 +5068,7 @@ re_search (bufp, string, size, startpos, range, regs)
|
|
|
regs, size);
|
|
|
}
|
|
|
#if defined _LIBC || defined __UCLIBC__
|
|
|
-weak_alias (__re_search, re_search)
|
|
|
+strong_alias(__re_search, re_search)
|
|
|
#endif
|
|
|
|
|
|
|
|
@@ -5113,7 +5113,7 @@ re_search_2 (bufp, string1, size1, string2, size2, startpos, range, regs, stop)
|
|
|
range, regs, stop);
|
|
|
}
|
|
|
#if defined _LIBC || defined __UCLIBC__
|
|
|
-weak_alias (__re_search_2, re_search_2)
|
|
|
+strong_alias(__re_search_2, re_search_2)
|
|
|
#endif
|
|
|
|
|
|
#endif
|
|
@@ -5572,7 +5572,7 @@ re_match (bufp, string, size, pos, regs)
|
|
|
return result;
|
|
|
}
|
|
|
# if defined _LIBC || defined __UCLIBC__
|
|
|
-weak_alias (__re_match, re_match)
|
|
|
+strong_alias(__re_match, re_match)
|
|
|
# endif
|
|
|
#endif
|
|
|
|
|
@@ -5633,7 +5633,7 @@ re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
|
|
|
return result;
|
|
|
}
|
|
|
#if defined _LIBC || defined __UCLIBC__
|
|
|
-weak_alias (__re_match_2, re_match_2)
|
|
|
+strong_alias(__re_match_2, re_match_2)
|
|
|
#endif
|
|
|
|
|
|
#endif
|
|
@@ -7972,7 +7972,7 @@ re_compile_pattern (pattern, length, bufp)
|
|
|
return gettext (re_error_msgid + re_error_msgid_idx[(int) ret]);
|
|
|
}
|
|
|
#if defined _LIBC || defined __UCLIBC__
|
|
|
-weak_alias (__re_compile_pattern, re_compile_pattern)
|
|
|
+strong_alias(__re_compile_pattern, re_compile_pattern)
|
|
|
#endif
|
|
|
|
|
|
|
|
@@ -8168,7 +8168,7 @@ regcomp (preg, pattern, cflags)
|
|
|
return (int) ret;
|
|
|
}
|
|
|
#if defined _LIBC || defined __UCLIBC__
|
|
|
-weak_alias (__regcomp, regcomp)
|
|
|
+strong_alias(__regcomp, regcomp)
|
|
|
#endif
|
|
|
|
|
|
|
|
@@ -8246,7 +8246,7 @@ regexec (preg, string, nmatch, pmatch, eflags)
|
|
|
return ret >= 0 ? (int) REG_NOERROR : (int) REG_NOMATCH;
|
|
|
}
|
|
|
#if defined _LIBC || defined __UCLIBC__
|
|
|
-weak_alias (__regexec, regexec)
|
|
|
+strong_alias(__regexec, regexec)
|
|
|
#endif
|
|
|
|
|
|
|
|
@@ -8294,7 +8294,7 @@ regerror (errcode, preg, errbuf, errbuf_size)
|
|
|
return msg_size;
|
|
|
}
|
|
|
#if defined _LIBC || defined __UCLIBC__
|
|
|
-weak_alias (__regerror, regerror)
|
|
|
+strong_alias(__regerror, regerror)
|
|
|
#endif
|
|
|
|
|
|
|
|
@@ -8321,7 +8321,7 @@ regfree (preg)
|
|
|
preg->translate = NULL;
|
|
|
}
|
|
|
#if defined _LIBC || defined __UCLIBC__
|
|
|
-weak_alias (__regfree, regfree)
|
|
|
+strong_alias(__regfree, regfree)
|
|
|
#endif
|
|
|
|
|
|
#endif
|