From 0769a94d5b85292863750d979b4298dccc300dda Mon Sep 17 00:00:00 2001 From: Jacob Hageman Date: Fri, 3 Nov 2023 17:12:50 +0000 Subject: [PATCH] Fix #416, Removes static on module function declaration macro --- fsw/shared/inc/cfe_psp_module.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fsw/shared/inc/cfe_psp_module.h b/fsw/shared/inc/cfe_psp_module.h index 55968354..ed410fdf 100644 --- a/fsw/shared/inc/cfe_psp_module.h +++ b/fsw/shared/inc/cfe_psp_module.h @@ -63,7 +63,7 @@ typedef const struct * The "name" argument should match the name of the module object file */ #define CFE_PSP_MODULE_DECLARE_SIMPLE(name) \ - static void name##_Init(uint32 PspModuleId); \ + void name##_Init(uint32 PspModuleId); \ CFE_PSP_ModuleApi_t CFE_PSP_##name##_API = { \ .ModuleType = CFE_PSP_MODULE_TYPE_SIMPLE, \ .OperationFlags = 0, \