]> git.ipfire.org Git - thirdparty/glibc.git/blame - dlfcn/dlclose.c
time: Allow later version licensing.
[thirdparty/glibc.git] / dlfcn / dlclose.c
CommitLineData
26b4d766 1/* Close a handle opened by `dlopen'.
dff8da6b 2 Copyright (C) 1995-2024 Free Software Foundation, Inc.
afd4eb37 3 This file is part of the GNU C Library.
d66e34cd 4
afd4eb37 5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
d66e34cd 9
afd4eb37
UD
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
d66e34cd 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6 16 License along with the GNU C Library; if not, see
5a82c748 17 <https://www.gnu.org/licenses/>. */
d66e34cd 18
d66e34cd 19#include <dlfcn.h>
9dcafc55 20#include <ldsodefs.h>
d8cce17d 21#include <shlib-compat.h>
993b3242 22
d66e34cd 23int
5f21997b 24__dlclose (void *handle)
d66e34cd 25{
d8cce17d 26#ifdef SHARED
8dcb6d0a 27 if (GLRO (dl_dlfcn_hook) != NULL)
466c1ea1 28 return GLRO (dl_dlfcn_hook)->dlclose (handle);
d8cce17d 29#endif
5f21997b 30
d8cce17d 31 return _dlerror_run (GLRO (dl_close), handle) ? -1 : 0;
d66e34cd 32}
d8cce17d
FW
33versioned_symbol (libc, __dlclose, dlclose, GLIBC_2_34);
34
35#if OTHER_SHLIB_COMPAT (libdl, GLIBC_2_0, GLIBC_2_34)
36compat_symbol (libdl, __dlclose, dlclose, GLIBC_2_0);
5f21997b 37#endif