summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/dlfcn.cpp
blob: 73e54df798ea4fab0a29973a8745ee95e2d8170c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * 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;