diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-03 08:26:04 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-03 08:26:04 +0200 |
commit | d8cce17d2a8f572f26ed483246a505f45579ea0e (patch) | |
tree | b47794d2d5ddd5e9fc0cd8cbec2c005ea0a19381 /dlfcn/Makefile | |
parent | c9ff9cf66a7ae0617a2f39e752ca19c88c58f5b6 (diff) | |
download | glibc-d8cce17d2a8f572f26ed483246a505f45579ea0e.zip glibc-d8cce17d2a8f572f26ed483246a505f45579ea0e.tar.gz glibc-d8cce17d2a8f572f26ed483246a505f45579ea0e.tar.bz2 |
dlfcn: Move dlclose into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'dlfcn/Makefile')
-rw-r--r-- | dlfcn/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dlfcn/Makefile b/dlfcn/Makefile index b194762..4bdf524 100644 --- a/dlfcn/Makefile +++ b/dlfcn/Makefile @@ -21,11 +21,12 @@ include ../Makeconfig headers := bits/dlfcn.h dlfcn.h extra-libs := libdl -libdl-routines := dlopen dlclose dlsym dlvsym dladdr dladdr1 dlinfo \ +libdl-routines := dlopen dlsym dlvsym dladdr dladdr1 dlinfo \ dlmopen dlfcn routines := $(patsubst %,s%,$(filter-out dlfcn,$(libdl-routines))) elide-routines.os := $(routines) routines += \ + dlclose \ dlerror \ libc_dlerror_result \ |