diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-03-24 00:39:45 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-03-24 00:39:45 +0000 |
commit | a853022cc32c8286018294e08cd4990ffcaf1d2b (patch) | |
tree | a81d55830b93a8c1cc58eaf0da8c7779984e1fa3 /elf/dladdr.c | |
parent | b3a86ae1a749caf2d885a8faba45b9977762ca9e (diff) | |
download | glibc-a853022cc32c8286018294e08cd4990ffcaf1d2b.tar.gz glibc-a853022cc32c8286018294e08cd4990ffcaf1d2b.tar.xz glibc-a853022cc32c8286018294e08cd4990ffcaf1d2b.zip |
Update.
1998-03-24 Ulrich Drepper <drepper@cygnus.com> * elf/ldsodesf.h: New file. * elf/Makefile (distribute): Add ldsodefs.h. * elf/link.h: Separate internal information in exter header. * elf/rtld.c: Include elf/ldsodefs.h not link.h. * elf/dl-minimal.c: Likewise. * sysdeps/generic/dl-sysdep.c: Likewise. * elf/sprof.c: Likewise. * elf/dlsym.c: Likewise. * elf/dlvsym.c: Likewise. * elf/dlerror.c: Likewise. * elf/dladdr.c: Likewise. * elf/dlclose.c: Likewise. * elf/dlopen.c: Likewise. * elf/dl-addr.c: Likewise. * elf/dl-close.c: Likewise. * elf/dl-debug.c: Likewise. * elf/dl-deps.c: Likewise. * elf/dl-error.c: Likewise. * elf/dl-fini.c: Likewise. * elf/dl-init.c: Likewise. * elf/dl-load.c: Likewise. * elf/dl-lookup.c: Likewise. * elf/dl-object.c: Likewise. * elf/dl-open.c: Likewise. * elf/dl-profile.c: Likewise. * elf/dl-reloc.c: Likewise. * elf/dl-runtime.c: Likewise. * elf/dl-support.c: Likewise. * elf/dl-symbol.c: Likewise. * elf/dl-version.c: Likewise. * sysdeps/generic/dl-cache.c: Likewise. * sysdeps/generic/libc-start.c: Likewise. * iconv/gconv_dl.c: Likewise. * nss/nsswitch.c: Likewise.
Diffstat (limited to 'elf/dladdr.c')
-rw-r--r-- | elf/dladdr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/elf/dladdr.c b/elf/dladdr.c index d82a9e78cb..3456aae9ad 100644 --- a/elf/dladdr.c +++ b/elf/dladdr.c @@ -1,5 +1,5 @@ /* Locate the shared object symbol nearest a given address. - Copyright (C) 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -17,9 +17,9 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include <stddef.h> -#include <link.h> #include <dlfcn.h> +#include <stddef.h> +#include <elf/ldsodefs.h> int |