diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-03-17 17:09:13 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-03-17 17:09:13 +0000 |
commit | 965cba048c978a2841c537383ed3408259c918f3 (patch) | |
tree | e06867399d7e0026645f2a9f69d836629dcc283e /include | |
parent | b037a293a48718af30d706c2e18c929d0e69a621 (diff) | |
download | glibc-965cba048c978a2841c537383ed3408259c918f3.tar glibc-965cba048c978a2841c537383ed3408259c918f3.tar.gz glibc-965cba048c978a2841c537383ed3408259c918f3.tar.bz2 glibc-965cba048c978a2841c537383ed3408259c918f3.zip |
* elf/dl-open.c (dl_open_worker): Declare l in 2 differentcvs/fedora-glibc-20070317T2130
smaller scopes.
* elf/dl-dst.h (DL_DST_REQ_STATIC): Add l as macro argument.
(DL_DST_REQUIRED): Adjust user.
* include/dlfcn.h (struct link_map): New forward decl.
* inet/getnameinfo.c: Include stddef.h.
(getnameinfo): Use offsetof.
* time/tst-mktime2.c (do_test): Don't rely on signed wrap.
* stdio-common/vfprintf.c (_itoa): Undef before redefining.
* string/strerror_l.c: Include stdlib.h.
Diffstat (limited to 'include')
-rw-r--r-- | include/dlfcn.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h index 79c8f7d31b..a67426df3a 100644 --- a/include/dlfcn.h +++ b/include/dlfcn.h @@ -45,6 +45,8 @@ extern int _dl_addr (const void *address, Dl_info *info, libc_hidden_proto (_dl_addr) #endif +struct link_map; + /* Close an object previously opened by _dl_open. */ extern void _dl_close (void *map) attribute_hidden; /* Same as above, but without locking and safety checks for user |