use a constant for the mod dir buffer size

This commit is contained in:
2025-11-02 12:44:10 +01:00
parent a66d9f9357
commit 7d7f02d1be
3 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ void *platform_get_symbol(void *handle, const char *symbol);
typedef void (*stk_module_func)(void);
char *stk_mod_dir = NULL;
char stk_mod_dir[MOD_DIR_BUFFER_SIZE];
static void **stk_handles = NULL;
static stk_module_func *stk_inits = NULL;
static stk_module_func *stk_shutdowns = NULL;