summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/dlfcn.cpp
blob: 41c13a5f92598af6eed3d1bb060f259447c8ec24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (c) 2021, Gunnar Beutner <gunnar@beutner.name>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibDl/dlfcn_integration.h>

// These are used by libdl and are filled in by the dynamic loader.
DlCloseFunction __dlclose;
DlOpenFunction __dlopen;
DlSymFunction __dlsym;
DlAddrFunction __dladdr;