From 8d4a506a919d597d89e9dcece425eb4b284d25f3 Mon Sep 17 00:00:00 2001 From: anth64 Date: Thu, 6 Nov 2025 21:25:47 +0100 Subject: [PATCH] extract_module_id(const char* path) static -> not static --- src/module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module.c b/src/module.c index b9b5911..dcd4a4b 100644 --- a/src/module.c +++ b/src/module.c @@ -17,7 +17,7 @@ size_t module_count = 0; size_t stk_module_count(void) { return module_count; } -static char *extract_module_id(const char *path) +char *extract_module_id(const char *path) { char *id, *dot; const char *basename = strrchr(path, '/');