diff options
author | Roland McGrath <roland@gnu.org> | 1996-06-04 09:29:39 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-06-04 09:29:39 +0000 |
commit | a2b934be254cad6c725baf738f0d97df985522c6 (patch) | |
tree | 11c9280fa0c9480cb4bf74a0a2d5432493bfafa1 /elf/Makefile | |
parent | 55f3aaff8c2a31288f9dde795b63b95d04fca341 (diff) | |
download | glibc-a2b934be254cad6c725baf738f0d97df985522c6.tar.gz glibc-a2b934be254cad6c725baf738f0d97df985522c6.tar.xz glibc-a2b934be254cad6c725baf738f0d97df985522c6.zip |
* stdio-common/vfprintf.c [USE_IN_LIBIO] (size_t): Don't define as cvs/libc-960604
macro. _IO_size_t is just an alias for the real size_t anyway. * elf/Makefile (libdl-routines): Add dladdr. * elf/dladdr.c: New file. * elf/dlfcn.h (Dl_info): New typedef. (dladdr): Declare it.
Diffstat (limited to 'elf/Makefile')
-rw-r--r-- | elf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/Makefile b/elf/Makefile index 8f34a9cfd2..354fbbcc70 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -25,7 +25,7 @@ routines := init-first extra-libs = libelf libdl libelf-routines := elf_hash -libdl-routines := dlopen dlclose dlsym dlerror +libdl-routines := dlopen dlclose dlsym dlerror dladdr libdl-inhibit-o = $(filter-out .so,$(object-suffixes)) # Build only shared. rtld-routines := rtld $(addprefix dl-,minimal load lookup object reloc \ |