summaryrefslogtreecommitdiff
path: root/libc/misc/regex/regex_old.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-01-16 18:29:52 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-01-16 18:29:52 +0000
commit15868f9c3d22fb51b38d7aafd88d95fb2193e734 (patch)
treefd940f5c633ec4a2d917b91654927c86d28c5f37 /libc/misc/regex/regex_old.c
parent4a15cc847eef004276ddaaae4dbb70dd6fb692e1 (diff)
s/weak_alias/strong_alias/, only what I knew as needed are kept. We will now see what libpthread will do ...
Diffstat (limited to 'libc/misc/regex/regex_old.c')
-rw-r--r--libc/misc/regex/regex_old.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/libc/misc/regex/regex_old.c b/libc/misc/regex/regex_old.c
index b64014e98..85a1b8e6f 100644
--- a/libc/misc/regex/regex_old.c
+++ b/libc/misc/regex/regex_old.c
@@ -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
/* This table gives an error message for each of the error codes listed
@@ -5010,7 +5010,7 @@ re_compile_fastmap (bufp)
return byte_re_compile_fastmap(bufp);
} /* re_compile_fastmap */
#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
/* Searching routines. */
@@ -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);
} /* re_search_2 */
#if defined _LIBC || defined __UCLIBC__
-weak_alias (__re_search_2, re_search_2)
+strong_alias(__re_search_2, re_search_2)
#endif
#endif /* not INSIDE_RECURSION */
@@ -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 /* not emacs */
@@ -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 /* not INSIDE_RECURSION */
@@ -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
/* Entry points compatible with 4.2 BSD regex library. We don't define
@@ -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 /* not emacs */