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/dlclose.c | |
parent | b3a86ae1a749caf2d885a8faba45b9977762ca9e (diff) | |
download | glibc-a853022cc32c8286018294e08cd4990ffcaf1d2b.zip glibc-a853022cc32c8286018294e08cd4990ffcaf1d2b.tar.gz glibc-a853022cc32c8286018294e08cd4990ffcaf1d2b.tar.bz2 |
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/dlclose.c')
-rw-r--r-- | elf/dlclose.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dlclose.c b/elf/dlclose.c index a2ec750..b25ca48 100644 --- a/elf/dlclose.c +++ b/elf/dlclose.c @@ -1,5 +1,5 @@ /* Close a handle opened by `dlopen'. - Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1995, 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,8 +17,8 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include <link.h> #include <dlfcn.h> +#include <elf/ldsodefs.h> static void dlclose_doit (void *handle) |