diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-02-24 08:34:04 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-02-24 08:34:04 +0000 |
commit | d417e0ffc4d2707b0d684106f17554395e8be220 (patch) | |
tree | bc82f92f536ab65b8e6f1dde3ab17169640ae12d /sysdeps/unix/sysv/linux/init-first.c | |
parent | 69f0c4d8b99dd0aaf82fa213a518ebe1f813791e (diff) | |
download | glibc-d417e0ffc4d2707b0d684106f17554395e8be220.tar.gz glibc-d417e0ffc4d2707b0d684106f17554395e8be220.tar.xz glibc-d417e0ffc4d2707b0d684106f17554395e8be220.zip |
Update.
2002-02-24 Ulrich Drepper <drepper@redhat.com> * elf/dl-support.c (_dl_non_dynamic_init): Renamed from non_dynamic_init and exported now. * sysdeps/unix/sysv/linux/ldsodefs.h: Declare _dl_non_dynamic_init. * sysdeps/unix/sysv/linux/init-first.c: Call _dl_non_dynamic_init for !SHARED. * sysdeps/mach/hurd/i386/init-first.c: Likewise. * sysdeps/mach/hurd/powerpc/init-first.c: Likewise. * sysdeps/mach/hurd/mips/init-first.c: Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/init-first.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/init-first.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/init-first.c b/sysdeps/unix/sysv/linux/init-first.c index 1fb04bbda1..7568a32ad1 100644 --- a/sysdeps/unix/sysv/linux/init-first.c +++ b/sysdeps/unix/sysv/linux/init-first.c @@ -87,6 +87,10 @@ init (int argc, char **argv, char **envp) #ifndef SHARED __libc_init_secure (); + + /* First the initialization which normally would be done by the + dynamic linker. */ + _dl_non_dynamic_init (); #endif __init_misc (argc, argv, envp); |