2002-04-07  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/mach/hurd/Versions: Add _dl_init_first to libc and ld export
	list.
	* elf/Versions: Remove it here.
This commit is contained in:
Ulrich Drepper 2002-04-07 17:30:05 +00:00
parent 8b76d7726f
commit af5fac2f3b
3 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2002-04-07 Ulrich Drepper <drepper@redhat.com>
* sysdeps/mach/hurd/Versions: Add _dl_init_first to libc and ld export
list.
* elf/Versions: Remove it here.
2002-04-06 Ulrich Drepper <drepper@redhat.com> 2002-04-06 Ulrich Drepper <drepper@redhat.com>
* iconvdata/tcvn5712-1.c (MAX_NEEDED_INPUT): Define for from * iconvdata/tcvn5712-1.c (MAX_NEEDED_INPUT): Define for from

View File

@ -20,7 +20,7 @@ libc {
GLIBC_PRIVATE { GLIBC_PRIVATE {
# functions used in other libraries # functions used in other libraries
_dl_open; _dl_close; _dl_addr; _dl_open; _dl_close; _dl_addr;
_dl_sym; _dl_vsym; _dl_init_first; _dl_sym; _dl_vsym;
} }
} }

View File

@ -3,6 +3,9 @@ libc {
# functions with a weak definition in the dynamic linker # functions with a weak definition in the dynamic linker
__getcwd; __mmap; __getcwd; __mmap;
} }
GLIBC_PRIVATE {
_dl_init_first;
}
} }
ld { ld {
@ -18,4 +21,7 @@ ld {
_exit; _hurd_intr_rpc_mach_msg; _exit; _hurd_intr_rpc_mach_msg;
abort; abort;
} }
GLIBC_PRIVATE {
_dl_init_first;
}
} }