summaryrefslogtreecommitdiff
path: root/dln.c
diff options
context:
space:
mode:
authorMatt Valentine-House <[email protected]>2024-04-02 13:52:50 +0100
committerMatt Valentine-House <[email protected]>2024-04-15 19:50:47 +0100
commit065710c0f5c1e81f0fa7ab6ddd3ccbc41e9cc2cc (patch)
treeb3cf24415dad95defcb3dcaa9088b36946dfd3c4 /dln.c
parenta2ea4ec30c409ebe8ae7952f092e0bd8c1912a17 (diff)
Initialize external GC Library
Co-Authored-By: Peter Zhu <[email protected]>
Diffstat (limited to 'dln.c')
-rw-r--r--dln.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dln.c b/dln.c
index db6ea5aa0f..3e08728a6b 100644
--- a/dln.c
+++ b/dln.c
@@ -339,7 +339,7 @@ dln_disable_dlclose(void)
#endif
#if defined(_WIN32) || defined(USE_DLN_DLOPEN)
-static void *
+void *
dln_open(const char *file)
{
static const char incompatible[] = "incompatible library version";
@@ -427,7 +427,7 @@ dln_open(const char *file)
dln_loaderror("%s - %s", error, file);
}
-static void *
+void *
dln_sym(void *handle, const char *symbol)
{
#if defined(_WIN32)