diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-05-03 08:46:13 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-05-03 08:46:13 +0000 |
commit | e57931a8261389d27817543952232eab48469475 (patch) | |
tree | 1391e5c0d9f500805cf90098f84da5d04732766a /elf | |
parent | 2d8e6e74c10426510b38a4406b79657f5376ba40 (diff) | |
download | glibc-e57931a8261389d27817543952232eab48469475.zip glibc-e57931a8261389d27817543952232eab48469475.tar.gz glibc-e57931a8261389d27817543952232eab48469475.tar.bz2 |
Update.
1999-05-02 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sunrpc/Makefile: Generate dependencies for all flavors of
librpcsvc objects.
(rpcgen-cmd): Pass -Y flag here and remove it from the macro
invocations.
1999-05-02 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* elf/dlopenold.c: Move #if down after includes to get
dependencies right.
1999-05-01 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/generic/bzero.c: Undefine __bzero.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dlopenold.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/elf/dlopenold.c b/elf/dlopenold.c index 49fce7a..7e7b462 100644 --- a/elf/dlopenold.c +++ b/elf/dlopenold.c @@ -1,5 +1,5 @@ /* Load a shared object at run time. - Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 1998, 1999 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,14 +17,14 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* This file is for compatibility with glibc 2.0. Compile it only if - versioning is used. */ -#if defined PIC && DO_VERSIONING - #include <dlfcn.h> #include <stddef.h> #include <elf/ldsodefs.h> +/* This file is for compatibility with glibc 2.0. Compile it only if + versioning is used. */ +#if defined PIC && DO_VERSIONING + struct dlopen_args { /* The arguments for dlopen_doit. */ |