1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

Mon Jul 8 00:11:15 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>

* libc-symbols.h (symbol_set_declare): Use weak_extern instead of
	weak_symbol.
	* csu/initfini.c (_init): Likewise.
	* locale/setlocale.c (DEFINE_CATEGORY): Likewise.
	* misc/efgcvt_r.c: Likewise.
	* sysdeps/alpha/dl-machine.h (elf_machine_rela): Likewise.
	* sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
This commit is contained in:
Roland McGrath
1996-07-08 06:17:09 +00:00
parent 467ab24791
commit 0676b5fdca
4 changed files with 5 additions and 6 deletions

View File

@ -60,7 +60,7 @@ fcvt_r (value, ndigit, decpt, sign, buf, len)
return 0;
}
weak_symbol (floor) weak_symbol (log10) weak_symbol (fabs)
weak_extern (floor) weak_extern (log10) weak_extern (fabs)
int
ecvt_r (value, ndigit, decpt, sign, buf, len)
@ -70,7 +70,7 @@ ecvt_r (value, ndigit, decpt, sign, buf, len)
size_t len;
{
double (*log10_function) (double) = &log10;
if (log10_function)
{
/* Use the reasonable code if -lm is included. */