summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-07-08 06:17:09 +0000
committerRoland McGrath <roland@gnu.org>1996-07-08 06:17:09 +0000
commit0676b5fdca8d4f2a8dd442db4d50dc2c1ee8729f (patch)
tree2d06a28e869fac310c4cedef27e9b12255350bb6 /misc
parent467ab2479117aa161042aad4b29435b36c9e17dd (diff)
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.
Diffstat (limited to 'misc')
-rw-r--r--misc/efgcvt_r.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/efgcvt_r.c b/misc/efgcvt_r.c
index 1f99c64e48..6a65583a6a 100644
--- a/misc/efgcvt_r.c
+++ b/misc/efgcvt_r.c
@@ -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. */