dlfcn.cpp 318 B

12345678910111213
  1. /*
  2. * Copyright (c) 2021, Gunnar Beutner <gunnar@beutner.name>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibDl/dlfcn_integration.h>
  7. // These are used by libdl and are filled in by the dynamic loader.
  8. DlCloseFunction __dlclose;
  9. DlOpenFunction __dlopen;
  10. DlSymFunction __dlsym;
  11. DlAddrFunction __dladdr;