From 89008e8584898b918647b47491cecf2f775906aa Mon Sep 17 00:00:00 2001 From: John Viega Date: Tue, 2 Jul 2024 08:44:09 -0400 Subject: [PATCH] Now fix the actual problem-- that the thing was static linking but I hadn't registered the function through the FFI. --- src/tests/test.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tests/test.c b/src/tests/test.c index 9a0ce847..5d4fd9eb 100644 --- a/src/tests/test.c +++ b/src/tests/test.c @@ -472,6 +472,7 @@ void add_static_symbols() { c4m_add_static_function(c4m_new_utf8("strndup"), strndup); + c4m_add_static_function(c4m_new_utf8("c4m_list_append"), c4m_list_append); } static int